-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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": "onigiribot",
"version": "1.0.0",
"description": "An open source, lightweight, do-it-all Discord bot with a web UI!",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"deploy-commands": "ts-node src/utils/deploy-commands.ts",
"prisma:migrate": "prisma migrate dev",
"prisma:generate": "prisma generate",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeke-code/OnigiriBot.git"
},
"author": "zeke-code",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zeke-code/OnigiriBot/issues"
},
"homepage": "https://github.com/zeke-code/OnigiriBot#readme",
"dependencies": {
"@discordjs/voice": "^0.19.0",
"@prisma/adapter-pg": "^7.1.0",
"axios": "^1.13.2",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3",
"pg": "^8.16.3",
"shoukaku": "^4.3.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@prisma/client": "^7.1.0",
"@types/node": "^25.0.2",
"@types/pg": "^8.16.0",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"prisma": "^7.1.0",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.50.0"
}
}