Files
deployer2/package.json
2025-11-29 16:45:01 -05:00

18 lines
408 B
JSON

{
"name": "deployer2",
"scripts": {
"build": "bun run src/buildSelf.ts",
"dev": "NODE_ENV=development PORT=6001 bun run --hot src/index.ts",
"start": "NODE_ENV=production bun run src/index.ts",
"deploy-self": "bun run src/deploySelf.ts"
},
"dependencies": {
"@types/object-hash": "^3.0.6",
"elysia": "1.4.16",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@types/bun": "latest"
}
}