-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 776 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 776 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
{
"name": "proxyguard",
"module": "index.js",
"type": "module",
"scripts": {
"start": "bun src/index.ts",
"dev": "NODE_ENV=development bun --watch src/index.ts",
"format": "prettier --write ./src/",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@types/bun": "^1.2.17",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"prettier": "^3.6.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@discordjs/core": "^2.1.1",
"discord.js": "^14.20.0",
"hono": "^4.8.2"
},
"nodemonConfig": {
"execMap": {
"ts": "tsx"
},
"ext": "ts,js,json"
}
}