helm-viewer 0.16.0 → 0.18.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 +7 -7
- package/bin/helm-template.mjs +4 -4
- package/binary/index.js +18648 -48
- package/eslint.config.mjs +16 -0
- package/package.json +20 -12
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import perfectionist from "eslint-plugin-perfectionist";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
ignores: ["cli/**", "binary/**"],
|
|
5
|
+
plugins: {
|
|
6
|
+
perfectionist,
|
|
7
|
+
},
|
|
8
|
+
rules: {
|
|
9
|
+
"@typescript-eslint/no-invalid-void-type": "off",
|
|
10
|
+
// It's because maybe one day default html component will be called
|
|
11
|
+
// and there are always in one word
|
|
12
|
+
"vue/multi-word-component-names": "off",
|
|
13
|
+
"vue/html-self-closing": "off",
|
|
14
|
+
"perfectionist/sort-imports": "error",
|
|
15
|
+
},
|
|
16
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "helm-viewer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Quick tool to easily view your helm charts.",
|
|
5
5
|
"author": "Tchoupinax <corentinfiloche@hotmail.fr> (https://corentinfiloche.xyz)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"url": "https://github.com/Tchoupinax/helm-viewer/issues"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
|
+
"lint": "yarn lint:eslint && yarn lint:prettier",
|
|
25
|
+
"lint:eslint": "eslint .",
|
|
26
|
+
"lint:fix": "yarn lint:eslint --fix && prettier --write .",
|
|
27
|
+
"lint:inspect": "npx @eslint/config-inspector@latest",
|
|
28
|
+
"lint:prettier": "prettier . --check",
|
|
24
29
|
"=== PUBLICATION ======================================": "",
|
|
25
30
|
"pack": "npm pack --dry-run",
|
|
26
31
|
"publish": "npm publish",
|
|
@@ -34,25 +39,28 @@
|
|
|
34
39
|
"clean": "rm -rf dist binary tmp compiled src/assets"
|
|
35
40
|
},
|
|
36
41
|
"dependencies": {
|
|
37
|
-
"@aws-sdk/client-s3": "3.
|
|
42
|
+
"@aws-sdk/client-s3": "3.632.0",
|
|
38
43
|
"chalk": "5.3.0",
|
|
39
44
|
"chokidar": "3.6.0",
|
|
40
45
|
"crypto-js": "4.2.0",
|
|
41
|
-
"execa": "
|
|
46
|
+
"execa": "9.3.1",
|
|
42
47
|
"nanoid": "5.0.7",
|
|
43
|
-
"open": "
|
|
44
|
-
"ws": "8.
|
|
48
|
+
"open": "10",
|
|
49
|
+
"ws": "8.18.0"
|
|
45
50
|
},
|
|
46
51
|
"devDependencies": {
|
|
47
|
-
"@types/js-yaml": "
|
|
48
|
-
"@types/node": "
|
|
49
|
-
"@types/ws": "8.5.
|
|
52
|
+
"@types/js-yaml": "4.0.9",
|
|
53
|
+
"@types/node": "22.3.0",
|
|
54
|
+
"@types/ws": "8.5.12",
|
|
50
55
|
"@vercel/ncc": "0.38.1",
|
|
56
|
+
"eslint": "9.9.0",
|
|
57
|
+
"eslint-plugin-perfectionist": "3.2.0",
|
|
51
58
|
"js-yaml": "4.1.0",
|
|
52
|
-
"npm-packlist": "
|
|
59
|
+
"npm-packlist": "8.0.2",
|
|
53
60
|
"postject": "1.0.0-alpha.6",
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
61
|
+
"prettier": "3.3.3",
|
|
62
|
+
"typescript": "5.5.4",
|
|
63
|
+
"vite-node": "2.0.5",
|
|
64
|
+
"vitest": "2.0.5"
|
|
57
65
|
}
|
|
58
66
|
}
|