-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.19 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.19 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
{
"name": "csz-bot",
"private": true,
"version": "0.1.0",
"description": "Offizieller Bot der Coding Shitpost Zentrale",
"module": "src/app.ts",
"type": "module",
"scripts": {
"start": "tsx --require ./src/polyfills.ts src/app.ts",
"test": "tsx --require ./src/polyfills.ts --test && tsgo",
"ci": "biome ci ./src",
"format": "biome format --write ./src",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src && biome check --write ./src",
"lint:fix:unsafe": "biome lint --write --unsafe ./src && biome check --write --unsafe ./src",
"watch": "tsx --require ./src/polyfills.ts --watch src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NullDev/CSZ-Bot.git"
},
"author": "Users of the CSZ",
"license": "MIT",
"bugs": {
"url": "https://github.com/NullDev/CSZ-Bot/issues"
},
"homepage": "https://github.com/NullDev/CSZ-Bot#readme",
"dependencies": {
"@discordjs/voice": "^0.18.0",
"@js-temporal/polyfill": "^0.5.1",
"@napi-rs/canvas": "0.1.70",
"@resvg/resvg-js": "^2.6.2",
"@sentry/node": "^9.25.0",
"@spotify/web-api-ts-sdk": "^1.2.0",
"@std/jsonc": "npm:@jsr/std__jsonc@^1.0.2",
"better-sqlite3": "^11.10.0",
"chrono-node": "^2.8.2",
"croner": "^9.0.0",
"discord.js": "^14.19.3",
"get-audio-duration": "^4.0.1",
"graphviz-wasm": "^3.0.2",
"jsdom": "^26.1.0",
"kysely": "^0.28.2",
"libsodium-wrappers": "^0.7.15",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"splid-js": "^1.5.2",
"tsx": "^4.19.4"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0-beta.5",
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.15.29",
"@types/node-cron": "^3.0.11",
"@typescript/native-preview": "^7.0.0-dev.20250603.1",
"expect": "^30.0.0-beta.3",
"lefthook": "^1.11.13"
},
"trustedDependencies": [
"@biomejs/biome",
"lefthook"
],
"engines": {
"node": ">=24.1.0"
}
}