-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 996 Bytes
/
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
{
"name": "gamerbot4.0",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"init": "npm install && node setup.js",
"dev": "nodemon src/index.ts"
},
"author": "",
"license": "AGPL-3.0",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/bcrypt": "^5.0.2",
"@types/ms": "^0.7.34",
"@types/node": "^20.12.13",
"concurrently": "^8.2.2",
"discord-api-types": "^0.37.92",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"nodemon": "^3.1.9",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.5.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"gamerbot-module": "^1.2.3",
"ms": "^2.1.3"
}
}