-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 816 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 816 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
{
"name": "annoying-noises",
"version": "1.0.0",
"private": true,
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --env-file=.env --watch src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"@clickhouse/client": "^1.18.2",
"@discordjs/voice": "^0.19.0",
"@snazzah/davey": "^0.1.9",
"discord.js": "^14.25.1",
"hono": "^4.11.4",
"pino": "^10.3.1"
},
"devDependencies": {
"@types/bun": "latest",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"pino-pretty": "^13.1.3",
"typescript": "^5"
}
}