Files
proxy-bun/package.json
T

19 lines
382 B
JSON

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