-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 849 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 849 Bytes
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
{
"name": "a-bot",
"version": "1.0.0",
"description": "Discord Bot",
"type": "module",
"main": "index.js",
"dependencies": {
"better-sqlite3": "^12.8.0",
"discord.js": "^14.19.3"
},
"scripts": {
"dev": "tsx watch --env-file=.env src/index.ts",
"build": "rm -rf dist && tsc",
"start": "node --env-file=.env dist/index.js",
"prod": "yarn build && yarn start",
"db:reset": "rm -f db/casino.db && echo 'Database reset.'",
"test": "tsx --test test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rramboer/A-Bot.git"
},
"engines": {
"node": ">=22"
},
"license": "MIT",
"packageManager": "yarn@4.13.0",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}