Files
proxy-bun/package.json
T

21 lines
535 B
JSON
Raw Normal View History

2026-05-07 18:42:09 +07:00
{
"name": "edge-proxy-relay",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun src/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"build": "bun build src/index.ts --outdir ./dist --target bun",
"build:worker": "bun build src/index.ts --outdir ./dist --target bun --format esm"
},
"dependencies": {},
"devDependencies": {
"bun-types": "^1.3.13",
"typescript": "^5"
}
2026-05-07 18:42:09 +07:00
}