-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 2.34 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"license": "EUPL-1.2",
"type": "module",
"scripts": {
"build": "bun run build:server",
"build:all": "bun run build:server && bun run build:standalone",
"build:server": "bun build ./src/server.ts --target=bun --minify --sourcemap=inline --outfile=./dist/server.js",
"build:standalone": "bun build ./dist/server.js --compile --minify --sourcemap=inline --outfile=./dist/server",
"build:standalone:darwin-arm64": "bun run build:standalone -- --target=bun-darwin-arm64",
"build:standalone:linux-amd64-glibc": "bun run build:standalone -- --target=bun-linux-x64-modern",
"build:standalone:linux-amd64-musl": "bun run build:standalone -- --target=bun-linux-x64-modern-musl",
"build:standalone:linux-arm64-glibc": "bun run build:standalone -- --target=bun-linux-arm64",
"build:standalone:linux-arm64-musl": "bun run build:standalone -- --target=bun-linux-arm64-musl",
"build:standalone:windows-amd64": "bun run build:standalone -- --target=bun-windows-x64-modern",
"clean:git:all": "bun run clean:git:untracked && bun run clean:git:gc && bun run clean:git:hooks",
"clean:git:all:force": "bun run clean:git:untracked:force && bun run clean:git:gc && bun run clean:git:hooks",
"clean:git:gc": "git gc --aggressive --prune",
"clean:git:hooks": "rm -rf ./.git/hooks/ && bun install -f",
"clean:git:untracked": "git clean -d -x -i",
"clean:git:untracked:force": "git clean -d -x -f",
"dev": "bun run start:dev",
"fix": "bun run fix:biome; bun run fix:package",
"fix:biome": "bun biome check --write",
"fix:package": "bun sort-package-json --quiet",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome lint",
"lint:tsc": "bun tsc --noEmit",
"start": "bun run start:server",
"start:dev": "mkdir -p ./dist/ && LOGLEVEL=4 bun run --cwd=./dist/ ../src/server.ts",
"start:rebuild": "bun run build:server && bun run start:server",
"start:server": "mkdir -p ./dist/ && bun run --cwd=./dist/ ./server.js"
},
"dependencies": {
"@hono/zod-openapi": "~0.19.0",
"env-var": "~7.5.0",
"hono": "~4.7.0"
},
"devDependencies": {
"@biomejs/biome": "~1.9.0",
"@types/bun": "^1.2.0",
"lefthook": "~1.11.0",
"sort-package-json": "^3.0.0"
},
"peerDependencies": {
"typescript": "~5.8.0"
},
"trustedDependencies": [
"@biomejs/biome",
"lefthook"
]
}