-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "AikouTicket",
"version": "0.28.10",
"description": "A simple AikouTicket bot for discord",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc --project tsconfig.json",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate dev --name init",
"clean:windows": "rmdir /s /q dist",
"clean:linux": "rm -rf dist",
"lint": "biome lint --write",
"format": "biome format --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucasB25/AikouTicket.git"
},
"bugs": {
"url": "https://github.com/LucasB25/AikouTicket/issues"
},
"homepage": "https://github.com/LucasB25/AikouTicket#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/node": "^22.7.6",
"@types/signale": "^1.4.7",
"prisma": "^5.21.0",
"ts-node": "^10.9.2"
},
"keywords": ["discord", "bot", "support", "tickets", "typescript"],
"author": "LucasB25",
"license": "GPL-3.0",
"signale": {
"displayScope": true,
"displayBadge": true,
"displayDate": true,
"displayFilename": true,
"displayLabel": true,
"displayTimestamp": true,
"underlineLabel": true
},
"dependencies": {
"@prisma/client": "^5.21.0",
"discord-html-transcripts": "^3.2.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"path": "^0.12.7",
"signale": "^1.4.0",
"yaml": "^2.6.0"
}
}