-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "rtbyte",
"description": "An open-source modular multipurpose Discord bot built on the incredible Sapphire framework for discord.js",
"version": "2.1.0",
"main": "./dist/RTByte.js",
"type": "module",
"author": "The RTByte Team <[email protected]> (https://rtbyte.xyz)",
"contributors": [
"Rasmus Gerdin <[email protected]> (https://rasmusgerdin.com)",
"Michael Cumbers <[email protected]> (https://michaelcumbers.ca)"
],
"license": "MIT",
"homepage": "https://github.com/RTByte/rtbyte/",
"repository": {
"type": "git",
"url": "https://github.com/RTByte/rtbyte.git"
},
"scripts": {
"build": "tsc -b src",
"dev": "npm run build && npm run start",
"start": "node --enable-source-maps dist/RTByte.js",
"prisma-build": "npx prisma generate",
"prisma-migrate": "npx prisma migrate dev --name init"
},
"imports": {
"#root/*": "./dist/*.js",
"#lib/*": "./dist/lib/*.js",
"#utils/*": "./dist/lib/util/*.js"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"@sapphire/decorators": "^6.0.2",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "^4.5.2",
"@sapphire/plugin-api": "^5.1.1",
"@sapphire/plugin-logger": "^3.0.6",
"@sapphire/plugin-subcommands": "^4.1.1",
"@sapphire/time-utilities": "^1.7.10",
"@sapphire/utilities": "^3.13.0",
"colorette": "^2.0.20",
"discord-api-types": "^0.37.54",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.1",
"@sapphire/ts-config": "^4.0.1",
"@types/node": "^20.5.3",
"eslint": "^8.47.0",
"prisma": "^5.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}