Files
Minikura/packages/k8s-operator/package.json

30 lines
785 B
JSON
Raw Normal View History

2025-05-12 12:34:09 +07:00
{
"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",
2026-02-13 15:52:13 +07:00
"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"
2025-05-12 12:34:09 +07:00
},
"dependencies": {
2026-02-13 15:52:13 +07:00
"@kubernetes/client-node": "^1.4.0",
"@minikura/api": "workspace:*",
2025-05-12 12:34:09 +07:00
"@minikura/db": "workspace:*",
2026-02-13 15:52:13 +07:00
"dotenv-mono": "^1.5.1",
"node-fetch": "^3.3.2",
"pg": "^8.11.3",
"yaml": "^2.6.1"
2025-05-12 12:34:09 +07:00
},
"devDependencies": {
2026-02-13 15:52:13 +07:00
"@types/node": "^25.0.9",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
2025-05-12 12:34:09 +07:00
}
2026-02-13 15:52:13 +07:00
}