-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 881 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
{
"name": "dsbot",
"version": "1.0.2",
"description": "Discord bot made in JavaScript",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "npx nodemon --inspect",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/xVemu/dsbot.git"
},
"type": "module",
"author": "Vemu (Kamil Kras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xVemu/dsbot/issues"
},
"homepage": "https://github.com/xVemu/dsbot#readme",
"dependencies": {
"axios": "1.6.7",
"discord.js": "^14.14.1",
"r6api.js": "^4.4.1"
},
"devDependencies": {
"eslint": "^8.57.0",
"nodemon": "^3.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1"
}
}