-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "ddev",
"version": "0.0.1",
"description": "Simple, and fast template for DiscordJS using TypeScript, Bun, and BiomeJS.",
"module": "src/index.ts",
"type": "module",
"scripts": {
"check": "npx biome check --write",
"build": "bun run bundles && bun run check && bun run ./scripts/prestart.ts && bun run scripts/build.ts",
"build:windows": "bun run build -- --windows",
"build:linux": "bun run build -- --linux",
"build:macos": "bun run build -- --macos",
"build:all": "bun run build -- --all",
"bundles": "bun run scripts/bundles.ts",
"start": "bun run check && bun run bundles && bun run scripts/prestart.ts && NODE_ENV=development bun run src/index.ts"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "^1.1.13",
"@types/semver": "^7.5.8",
"semver": "^7.6.3"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"discord.js": "^14.16.3",
"glob": "^11.0.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0"
},
"trustedDependencies": ["@biomejs/biome"]
}