2026-05-07 18:42:09 +07:00
|
|
|
{
|
2026-05-07 19:13:00 +07:00
|
|
|
"name": "proxy-bun",
|
2026-05-07 19:55:39 +07:00
|
|
|
"module": "api/index.ts",
|
2026-05-07 19:13:00 +07:00
|
|
|
"type": "module",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
2026-05-07 20:13:41 +07:00
|
|
|
"build": "bun build src/index.ts --target=bun --outdir=api",
|
2026-05-07 19:13:00 +07:00
|
|
|
"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
|
|
|
}
|