mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-30 14:25:37 +00:00
30 lines
785 B
JSON
30 lines
785 B
JSON
{
|
|
"name": "@minikura/k8s-operator",
|
|
"version": "1.0.0",
|
|
"description": "Kubernetes operator for Minikura that syncs database to Kubernetes resources",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"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": "^1.4.0",
|
|
"@minikura/api": "workspace:*",
|
|
"@minikura/db": "workspace:*",
|
|
"dotenv-mono": "^1.5.1",
|
|
"node-fetch": "^3.3.2",
|
|
"pg": "^8.11.3",
|
|
"yaml": "^2.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.9",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|