| 1234567891011121314151617 |
- {
- "name": "service",
- "module": "main.ts",
- "devDependencies": {
- "@types/bun": "latest"
- },
- "peerDependencies": {
- "typescript": "^5.0.0"
- },
- "scripts": {
- "build-linux-x64": "bun build --compile --target=bun-linux-x64-baseline ./main.ts --outfile dist/service",
- "build-linux-arm64": "bun build --compile --target=bun-linux-arm64 ./main.ts --outfile dist/service-arm64",
- "build-windows-x64": "bun build --compile --target=bun-windows-x64 ./main.ts --outfile dist/service.exe",
- "build": "npm run build-linux-x64 && npm run build-linux-arm64 && npm run build-windows-x64"
- },
- "type": "module"
- }
|