-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1002 Bytes
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
{
"name": "valence-bot",
"version": "1.0.0",
"description": "Small bot for RuneScape",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/index.js",
"slash": "cross-env NODE_ENV=DEV node ./src/slashCommands.js",
"dev": "cross-env NODE_ENV=DEV node ./src/index.js"
},
"author": "Luke",
"license": "ISC",
"type": "module",
"engines": {
"node": "22.14.0"
},
"dependencies": {
"@discordjs/rest": "^2.6.3",
"assert": "^2.1.0",
"axios": "^1.18.1",
"camelcase": "^9.0.0",
"discord.js": "^14.27.0",
"dotenv": "^17.4.2",
"googleapis": "^64.0.0",
"mongodb": "7.5",
"node-cron": "^4.6.0",
"pretty-ms": "^9.3.0",
"uuid": "^14.0.1",
"winston": "^3.19.0"
},
"devDependencies": {
"cross-env": "^10.1.0",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.6.0",
"prettier": "3.9.5"
}
}