This commit is contained in:
Morten Olsen
2025-10-23 13:47:07 +02:00
commit b851dc3006
91 changed files with 7578 additions and 0 deletions

34
packages/k8s/package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"type": "module",
"main": "dist/exports.js",
"scripts": {
"build": "tsc --build",
"test:unit": "vitest --run --passWithNoTests",
"test": "pnpm run \"/^test:/\""
},
"packageManager": "pnpm@10.6.0",
"files": [
"dist"
],
"exports": {
".": "./dist/exports.js"
},
"devDependencies": {
"@morten-olsen/box-configs": "workspace:*",
"@morten-olsen/box-tests": "workspace:*",
"@types/deep-equal": "^1.0.4",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"@morten-olsen/box-utils": "workspace:*",
"cron": "^4.3.3",
"deep-equal": "^2.2.3",
"zod": "^4.1.12"
},
"name": "@morten-olsen/box-k8s",
"version": "1.0.0"
}