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

34 lines
903 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",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"dev:bun": "bun --watch src/index.ts",
"watch": "tsx watch src/index.ts",
"apply-crds": "tsx src/scripts/apply-crds.ts",
2026-02-13 15:52:13 +07:00
"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",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"undici": "^7.18.2",
2026-02-13 15:52:13 +07:00
"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
}