-
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) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 924 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": "wm31bot",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/server.ts",
"deploy": "bun scripts/deploy.mjs",
"build": "tsc --noEmit",
"start": "bun src/server.ts",
"test": "bun test",
"lint": "tsc --noEmit",
"format": "prettier . --write",
"format:check": "prettier . --check",
"fetch:vocab": "bun scripts/fetch-wiktionary-vocab.mjs",
"publish:panel": "bun --env-file=.env.local scripts/publish-channel-panel.mjs",
"register:commands": "bun --env-file=.env.local scripts/register-commands.mjs",
"sync:install": "bun --env-file=.env.local scripts/sync-install-settings.mjs"
},
"dependencies": {
"tweetnacl": "1.0.3"
},
"devDependencies": {
"@types/node": "22.15.30",
"bun-types": "1.3.4",
"prettier": "^3.8.4",
"typescript": "5.8.3"
},
"trustedDependencies": [
"tweetnacl"
]
}