mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-09-13 10:49:21 +00:00
34 lines
904 B
JSON
34 lines
904 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": "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",
|
|
"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.23.0",
|
|
"pino": "^10.3.1",
|
|
"pino-pretty": "^13.1.3",
|
|
"undici": "^8.10.0",
|
|
"yaml": "^2.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^26.2.0",
|
|
"tsx": "^4.23.12",
|
|
"typescript": "^7.0.2"
|
|
}
|
|
}
|