-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1023 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
{
"name": "skeleton-bot",
"version": "1.0.6",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=production bun run src/bot.ts",
"start:shard": "cross-env NODE_ENV=production bun .",
"start:dev": "cross-env NODE_ENV=development bun run src/bot.ts",
"start:dev:shard": "cross-env NODE_ENV=development bun .",
"typeCheck": "tsc --noEmit",
"register": "bun run scripts/register-commands.ts",
"register:guild": "bun run scripts/register-commands.ts --guild",
"register:clear": "bun run scripts/register-commands.ts --clear",
"register:clear:guild": "bun run scripts/register-commands.ts --clear --guild"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.6.0",
"cross-env": "^10.1.0"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"dependencies": {
"discord-hybrid-sharding": "^3.0.1",
"discord.js": "^14.26.3",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3"
}
}