Files
proxy-bun/package.json
T

20 lines
446 B
JSON

{
"name": "proxy-bun",
"module": "api/index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bun build src/index.ts --target=bun --outdir=dist",
"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"
}
}