-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "cycle-bot",
"version": "0.1.19",
"description": "Fun Discord idle bot game",
"exports": "./dist/index.js",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node .",
"dev": "tsc -w",
"prod": "tsc",
"deploy": "node ./dist/slashutil/deploy-commands.js",
"eslint": "eslint . --ext ts",
"eslint-fix": "eslint . --ext ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cursorweb/Cycle-Bot-Game.git"
},
"keywords": [
"bot",
"discord",
"idle"
],
"author": "Coder100",
"license": "MIT",
"bugs": {
"url": "https://github.com/cursorweb/Cycle-Bot-Game/issues"
},
"homepage": "https://github.com/cursorweb/Cycle-Bot-Game#readme",
"dependencies": {
"@discordjs/rest": "^1.3.0",
"@top-gg/sdk": "^3.1.3",
"bignumber.js": "^9.0.2",
"discord.js": "^14.6.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^10.0.1",
"node-fetch": "^3.1.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"typescript": "^4.8.3"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}