-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 994 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 994 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
{
"name": "hoshi",
"version": "1.0.0",
"description": "Provides help for a specific topic or lists all topics if none is given.",
"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": [],
"author": "K2VR Team",
"license": "MIT",
"dependencies": {
"discord-interactions": "^4.0.0",
"itty-router": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"c8": "^10.1.2",
"chai": "^5.0.0",
"dotenv": "^17.2.1",
"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": "^21.0.0",
"wrangler": "^4.13.2"
}
}