first pass

This commit is contained in:
2025-11-29 14:50:33 -05:00
parent cf3015638a
commit 0bfab0bdc8
10 changed files with 631 additions and 0 deletions

15
package.json Normal file
View File

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