-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "vessel",
"version": "1.0.0",
"description": "Discord HTTP Interactions Template",
"main": "dist/server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.js",
"dev": "wrangler dev dist/server.js",
"publish": "wrangler deploy",
"ngrok": "ngrok http 8787",
"register": "node dist/register.js",
"lint": "eslint . & prettier --check .",
"lintfix": "eslint --fix . && prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpecialAgency-Chat/Vessel.git"
},
"keywords": [
"discord"
],
"author": "waki285 <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SpecialAgency-Chat/Vessel/issues"
},
"homepage": "https://github.com/SpecialAgency-Chat/Vessel#readme",
"dependencies": {
"browser-util-inspect": "^0.2.0",
"discord-api-types": "^0.37.47",
"discord-interactions": "^3.4.0",
"dotenv": "^16.3.1",
"hono": "^3.2.7"
},
"devDependencies": {
"@types/browser-util-inspect": "^0.2.0",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"ngrok": "^5.0.0-beta.2",
"prettier": "^3.0.0",
"tsconfig.json": "^1.0.11",
"wrangler": "^3.1.2"
}
}