@dmgnr/kuber 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +300 -0
- package/dist/index.js +959 -0
- package/package.json +35 -0
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dmgnr/kuber",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Docker Compose to Kubernetes translation layer",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"kuber": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/index.js"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"bun": ">=1.0.0"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@bomb.sh/tab": "^0.0.22",
|
|
17
|
+
"@cliffy/table": "npm:@jsr/cliffy__table",
|
|
18
|
+
"@kubernetes/client-node": "^1.4.0",
|
|
19
|
+
"@types/bun": "latest",
|
|
20
|
+
"citty": "^0.2.2",
|
|
21
|
+
"json-schema-to-typescript": "^15.0.4",
|
|
22
|
+
"listr2": "^11.0.0",
|
|
23
|
+
"oxfmt": "^0.62.0",
|
|
24
|
+
"oxlint": "^1.77.0",
|
|
25
|
+
"typescript": "^5",
|
|
26
|
+
"zod": "^4.4.3"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "bun build index.ts --target bun --minify --outdir dist",
|
|
30
|
+
"prepack": "bun run build",
|
|
31
|
+
"test": "bun test tests",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"prod": "bun run build && cp dist/kuber ~/.bun/bin/ && scp dist/kuber-arm64 root@astral:/usr/bin/kuber"
|
|
34
|
+
}
|
|
35
|
+
}
|