feat: initial prototype

This commit is contained in:
2026-02-13 15:52:13 +07:00
parent 134351b326
commit e8dbefde43
140 changed files with 12390 additions and 1369 deletions

View File

@@ -6,21 +6,24 @@
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "bun run src/index.ts",
"watch": "bun --watch run src/index.ts",
"apply-crds": "bun --elide-lines=0 run src/scripts/apply-crds.ts"
"start": "bun dist/index.js",
"dev": "bun --watch src/index.ts",
"watch": "bun --watch src/index.ts",
"apply-crds": "bun src/scripts/apply-crds.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@kubernetes/client-node": "^0.18.0",
"@kubernetes/client-node": "^1.4.0",
"@minikura/api": "workspace:*",
"@minikura/db": "workspace:*",
"dotenv-mono": "^1.3.11",
"node-fetch": "^3.3.2"
"dotenv-mono": "^1.5.1",
"node-fetch": "^3.3.2",
"pg": "^8.11.3",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0"
"@types/node": "^25.0.9",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}
}