-
-
Notifications
You must be signed in to change notification settings - Fork 287
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.64 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
{
"name": "ticket-bot",
"version": "4.0.0",
"license": "AGPL-3.0-only",
"description": "Open-source Discord ticket bot.",
"type": "module",
"main": "./dist/src/index.js",
"engines": {
"node": ">=20.0.0",
"bun": ">=1.0.0"
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json",
"check": "tsc --noEmit -p tsconfig.json && biome check .",
"prepare:config": "test -f ./config/config.ts || cp ./config/config.example.ts ./config/config.ts",
"i18n": "typesafe-i18n --no-watch && biome check --write i18n",
"lint": "biome lint .",
"format": "biome format .",
"format:fix": "biome format --write",
"check:fix": "biome check --write .",
"check:unsafe:fix": "biome check --unsafe --write .",
"lint:fix": "biome lint --write .",
"biome:debug": "biome rage --linter",
"drizzle:push": "drizzle-kit push",
"build": "tsc -p tsconfig.build.json && resolve-tspaths -p tsconfig.build.json",
"start": "bun src/index.ts",
"node:start": "node dist/src/index.js",
"migrate:v3": "bun src/migrate-v3-db.ts",
"migrate:v3:config": "bun src/migrate-v3-config.ts",
"migrate:v3:test": "bun scripts/verify-migrate-v3.mjs"
},
"dependencies": {
"@discordjs/core": "2.6.0",
"@discordjs/rest": "^2.6.3",
"@discordjs/ws": "^2.0.4",
"@libsql/client": "^0.17.4",
"@ticketpm/core": "^0.0.15",
"@ticketpm/discord-api": "^0.0.15",
"discord-api-types": "^0.38.52",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"jsonc-parser": "^3.3.1",
"typesafe-i18n": "^5.27.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@types/node": "^26.1.2",
"resolve-tspaths": "^0.8.23",
"typescript": "^6.0.3"
}
}