-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "melvin",
"version": "2.3.2",
"description": "An advanced RPG dice and initiative trackerr bot for Discord",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "NODE_ENV=development nodemon --watch src -e ts --exec \"pnpm run build && pnpm run start\"",
"build": "tsc",
"migrate-deploy": "prisma migrate deploy",
"prisma-generate": "prisma generate",
"postinstall": "pnpm run prisma-generate"
},
"keywords": [
"dice",
"bot",
"RPG",
"d&d",
"discord",
"discord.js",
"roll"
],
"author": "LordLuceus <lord.luceus@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LordLuceus/melvin.git"
},
"dependencies": {
"@dice-roller/rpg-dice-roller": "^5.5.1",
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.2",
"@prisma/client": "^6.19.3",
"@sapphire/discord.js-utilities": "^7.3.3",
"@sapphire/framework": "^5.5.0",
"@sapphire/pieces": "^4.4.1",
"@sapphire/plugin-logger": "^4.1.0",
"@sapphire/plugin-subcommands": "^6.0.3",
"@sapphire/utilities": "^3.18.2",
"bufferutil": "^4.1.0",
"discord.js": "^14.26.2",
"dotenv": "^16.6.1",
"libsodium-wrappers": "^0.7.16",
"ms": "^2.1.3",
"prisma": "^6.19.3",
"utf-8-validate": "^5.0.10",
"zlib-sync": "^0.1.10"
},
"devDependencies": {
"@types/ms": "^0.7.34",
"@types/node": "^20.19.39",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-import": "^2.32.0",
"nodemon": "^3.1.14",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}