-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "csz-bot",
"version": "0.1.0",
"private": true,
"description": "Offizieller Bot der Coding Shitpost Zentrale",
"homepage": "https://github.com/NullDev/CSZ-Bot#readme",
"bugs": {
"url": "https://github.com/NullDev/CSZ-Bot/issues"
},
"license": "MIT",
"author": "Users of the CSZ",
"repository": {
"type": "git",
"url": "git+https://github.com/NullDev/CSZ-Bot.git"
},
"type": "module",
"module": "src/app.ts",
"imports": {
"#log": "./src/utils/logger.ts",
"#db": "./src/storage/db/db.ts",
"#/*": "./src/*"
},
"scripts": {
"start": "node --require ./src/polyfills.ts src/app.ts",
"test": "node --require ./src/polyfills.ts --test && tsgo",
"ci": "oxlint --deny-warnings --type-aware -f github",
"format": "oxfmt",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --fix",
"watch": "node --require ./src/polyfills.ts --watch src/app.ts"
},
"dependencies": {
"@discordjs/voice": "^0.19.1",
"@js-temporal/polyfill": "^0.5.1",
"@napi-rs/canvas": "0.1.97",
"@resvg/resvg-js": "^2.6.2",
"@sentry/node": "^10.43.0",
"@snazzah/davey": "^0.1.10",
"@spotify/web-api-ts-sdk": "^1.2.0",
"chrono-node": "^2.9.0",
"comment-json": "^4.6.2",
"croner": "^10.0.1",
"discord.js": "^14.25.1",
"get-audio-duration": "^4.0.1",
"graphviz-wasm": "^3.0.2",
"jsdom": "^29.0.0",
"kysely": "^0.28.12",
"libsodium-wrappers": "^0.8.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"splid-js": "^1.5.3",
"youtube-dl-exec": "^3.1.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.5.0",
"@types/node-cron": "^3.0.11",
"@typescript/native-preview": "^7.0.0-dev.20260316.1",
"expect": "^30.3.0",
"lefthook": "^2.1.4",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.0"
},
"engines": {
"node": ">=25.6.1"
},
"trustedDependencies": [
"lefthook"
]
}