-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
53
54
55
56
57
58
59
{
"name": "swade-bot",
"version": "0.1.1",
"description": "A quick and dirty discord bot for the Savage Worlds tabletop RPG",
"main": "index.js",
"scripts": {
"start": "npm-watch dev",
"dev": "npm run deploy-commands && npm run bot",
"bot": "node ./index.js",
"deploy-commands": "node deploy-commands.js",
"start-docs": "npm-watch docs",
"docs": "npm run generate-docs && serve ./docs/swade-bot/$npm_package_version/",
"generate-docs": "jsdoc --configure .jsdoc.json --verbose",
"lint": "eslint . --config .eslintrc.js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"@dice-roller/rpg-dice-roller": "^5.1.0",
"@discordjs/rest": "^1.1.0",
"discord-api-types": "^0.37.8",
"discord.js": "^14.3.0"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"eslint": "^8.0.1",
"eslint-config-xo": "^0.42.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jsdoc": "^3.6.11",
"minami": "^1.2.3",
"npm-watch": "^0.11.0",
"serve": "^14.0.1"
},
"watch": {
"dev": {
"patterns": [
"index.js",
"commands/**/*.js",
"embeds/**/*.js",
"lib/**/*.js"
],
"runOnChangeOnly": false,
"delay": 2500
},
"docs": {
"patterns": [
"index.js",
"commands/**/*.js",
"embeds/**/*.js",
"lib/**/*.js"
],
"runOnChangeOnly": false,
"delay": 2500
}
}
}