-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "asano",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"type": "module",
"packageManager": "pnpm@8.6.11",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.js",
"clean": "rimraf dist",
"dev": "wrangler dev",
"release": "wrangler deploy",
"register": "node dist/register.js",
"lint": "eslint . & prettier --check .",
"lintfix": "eslint --fix . && prettier --write ."
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"engines": {
"npm": "Do not use npm, use pnpm instead"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20230801.0",
"browser-util-inspect": "^0.2.0",
"discord-api-types": "^0.37.51",
"discord-interactions": "^3.4.0",
"hono": "^3.3.4",
"realm-web": "^2.0.0"
},
"devDependencies": {
"@types/browser-util-inspect": "^0.2.1",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"dotenv": "^16.3.1",
"esbuild": "^0.18.17",
"eslint": "^8.46.0",
"pnpm": "^8.6.11",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"wrangler": "^3.4.0"
}
}