-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.05 KB
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
{
"name": "diskingdom",
"version": "1.0.0",
"description": "A Discord bot for managing Kingdoms & Warfare campaigns",
"type": "module",
"private": true,
"main": "src/server.js",
"scripts": {
"start": "wrangler dev",
"ngrok": "ngrok http 8787",
"test": "c8 mocha test",
"fix": "eslint --fix '**/*.js'",
"lint": "eslint '**/*.js'",
"register": "node src/register.js",
"publish": "wrangler deploy"
},
"keywords": [
"discord",
"bot",
"kingdoms",
"warfare",
"dnd",
"rpg"
],
"author": "",
"license": "MIT",
"dependencies": {
"discord-interactions": "^4.0.0",
"itty-router": "^5.0.9",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"c8": "^10.1.2",
"chai": "^5.0.0",
"dotenv": "^16.0.3",
"eslint": "^9.1.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^16.0.0",
"mocha": "^11.0.0",
"ngrok": "^5.0.0-beta.2",
"prettier": "^3.2.5",
"sinon": "^19.0.2",
"wrangler": "^3.0.1"
}
}