mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-01-06 04:32:37 +00:00
26 lines
728 B
JSON
26 lines
728 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": "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"
|
|
},
|
|
"dependencies": {
|
|
"@kubernetes/client-node": "^0.18.0",
|
|
"@minikura/db": "workspace:*",
|
|
"dotenv-mono": "^1.3.11",
|
|
"node-fetch": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
} |