-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.53 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@jspaste/backend",
"private": true,
"license": "EUPL-1.2",
"type": "module",
"scripts": {
"build": "bun run build:bundle",
"build:bundle": "bun build --target=bun --minify --outfile=./dist/backend.js ./src/index.ts",
"build:standalone": "bun run build:bundle -- --compile --outfile=./dist/backend",
"build:standalone:darwin-arm64": "bun run build:standalone -- --target=bun-darwin-arm64",
"build:standalone:linux-amd64": "bun run build:standalone -- --target=bun-linux-x64-modern",
"build:standalone:linux-arm64": "bun run build:standalone -- --target=bun-linux-arm64",
"build:standalone:windows-amd64": "bun run build:standalone -- --target=bun-windows-x64-modern",
"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 build -- --sourcemap && bun ./dist/backend.js",
"start:dev": "bun ./src/index.ts"
},
"dependencies": {
"@hono/zod-openapi": "~0.14.2",
"@scalar/hono-api-reference": "~0.5.62",
"@types/bun": "~1.1.3",
"cbor-x": "~1.5.9",
"chalk": "~5.3.0",
"env-var": "~7.5.0",
"hono": "~4.4.5",
"loglevel": "~1.9.1",
"typescript": "~5.4.5"
},
"devDependencies": {
"@biomejs/biome": "~1.8.1",
"lefthook": "~1.6.15",
"sort-package-json": "~2.10.0"
},
"trustedDependencies": [
"@biomejs/biome",
"lefthook"
]
}