-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
66 lines (66 loc) · 1.76 KB
/
package.json
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
{
"name": "csz-bot",
"private": true,
"version": "0.1.0",
"description": "Offizieller Bot der Coding Shitpost Zentrale",
"module": "src/app.ts",
"type": "module",
"scripts": {
"start": "bun src/app.ts",
"test": "bun test && tsc",
"ci": "biome ci ./src",
"format": "biome format --write ./src",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src && biome check --write ./src",
"watch": "bun --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.4.4",
"@napi-rs/canvas": "0.1.59",
"@resvg/resvg-js": "^2.6.2",
"@sentry/bun": "^8.47.0",
"@std/jsonc": "npm:@jsr/std__jsonc@^1.0.1",
"chrono-node": "^2.7.7",
"croner": "^9.0.0",
"discord.js": "^14.16.3",
"get-audio-duration": "^4.0.1",
"graphviz-wasm": "^3.0.2",
"jsdom": "^25.0.1",
"kysely": "^0.27.5",
"kysely-bun-sqlite": "^0.3.2",
"libsodium-wrappers": "^0.7.15",
"messageformat": "^4.0.0-8",
"pino": "^9.6.0",
"splid-js": "^1.5.2",
"urlpattern-polyfill": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"@types/jsdom": "^21.1.7",
"@types/minimist": "^1.2.5",
"@types/node-cron": "^3.0.11",
"@types/sqlite3": "^3.1.11",
"lefthook": "^1.10.1",
"pino-pretty": "^13.0.0",
"typescript": "^5.7.2"
},
"trustedDependencies": [
"@biomejs/biome",
"lefthook"
],
"engines": {
"bun": ">=1.1.0"
}
}