-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 908 Bytes
/
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
{
"name": "@biomejs/discord-utils-bot",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "MIT OR Apache-2.0",
"scripts": {
"dev": "wrangler dev",
"start": "wrangler dev",
"deploy-commands": "tsx --env-file=.dev.vars scripts/deploy-commands.ts",
"check": "biome check",
"check:apply": "biome check --fix --unsafe",
"format": "biome format --write",
"lint": "biome lint",
"typecheck": "tsc"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20241205.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"wrangler": "^3.95.0"
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@discordjs/rest": "^2.4.0",
"dedent": "^1.5.3",
"discord-api-types": "^0.37.111",
"discord-verify": "^1.2.0"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "[email protected]"
}