Files
proxy-bun/package.json
T

20 lines
502 B
JSON
Raw Normal View History

2026-05-07 18:42:09 +07:00
{
"name": "proxy-bun",
"module": "api/index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bun build src/index.ts --target=bun --outdir=api && mkdir -p dist && cp public/index.html dist/index.html",
"start": "bun run src/index.ts",
"dev": "bun --hot run src/index.ts",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "bunx tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/bun": "latest"
}
2026-05-07 18:42:09 +07:00
}