-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.38 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
{
"name": "soni-bot",
"version": "7.0.0",
"description": "A lightweight toolkit bot for small Discord communities.",
"scripts": {
"dev": "cross-env-shell NODE_ENV=development bun run src/main.ts",
"dev:watch": "cross-env-shell NODE_ENV=development bun run --hot src/main.ts",
"build": "bun run build:clean && bun run build:src",
"build:src": "cross-env-shell NODE_ENV=production bun run tsc",
"build:watch": "cross-env-shell NODE_ENV=production bun run tsc --watch",
"build:clean": "rm -rf dist",
"start": "cross-env-shell NODE_ENV=production bun run dist/src/main.js",
"typeorm": "bun run node_modules/typeorm/cli.js"
},
"keywords": [
"discord",
"bot"
],
"author": "Soni",
"license": "GPL-3.0-or-later",
"dependencies": {
"axios": "^1.7.7",
"bufferutil": "^4.0.8",
"cross-env": "^7.0.3",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"erlpack": "^0.1.4",
"pg": "^8.13.0",
"typeorm": "^0.3.20",
"typeorm-naming-strategies": "^4.1.0",
"utf-8-validate": "^6.0.4",
"winston": "^3.15.0"
},
"devDependencies": {
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"peerDependencies": {
"prettier": "^2.7.1"
}
}