forked from leydel/continuity
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "continuity",
"version": "1.0.0",
"description": "A no-fuss Discord bot to handle role persistence",
"main": "src/index.ts",
"scripts": {
"migrate": "bun prisma generate && bunx prisma migrate deploy",
"build": "bun build src/index.ts --sourcemap=external --minify --target bun --outdir dist",
"start": "bun run migrate && bun src/index.ts",
"dev": "bun run migrate && bun src/index.ts --watch",
"migrationCreate": "bunx prisma migrate dev",
"register": "bun src/register.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FinOCE/continuity.git"
},
"keywords": [
"discord",
"persistence"
],
"author": "FinOCE",
"contributors": ["darksaid98"],
"bugs": {
"url": "https://github.com/FinOCE/continuity/issues"
},
"homepage": "https://github.com/FinOCE/continuity#readme",
"license": "ISC",
"devDependencies": {
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@types/node": "^22.10.10",
"typescript": "^5.7.3",
"@discordx/pagination": "^3.5.5",
"@discordx/utilities": "^7.0.3",
"@prisma/client": "^6.2.1",
"@sentry/bun": "^8.51.0",
"@types/bun": "^1.2.0",
"close-with-grace": "^2.2.0",
"discord.js": "^14.17.3",
"prisma": "^6.2.1",
"discordx": "^11.12.2"
}
}