feat: bootstrap boss control plane prototype

This commit is contained in:
Codex
2026-03-23 12:43:39 +08:00
commit 0ab83990b2
24 changed files with 5534 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "boss",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"check": "tsc --noEmit -p tsconfig.json",
"worker": "tsx src/worker.ts"
},
"dependencies": {
"@fastify/static": "^8.2.0",
"fastify": "^5.6.1"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
}
}