32 lines
668 B
JSON
32 lines
668 B
JSON
{
|
|
"name": "helm-anything",
|
|
"version": "1.0.0",
|
|
"packageManager": "pnpm@10.25.0",
|
|
"description": "Helm command templates for quick service deployment",
|
|
"author": "",
|
|
"license": "ISC",
|
|
"keywords": [
|
|
"helm",
|
|
"kubernetes",
|
|
"deployment"
|
|
],
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"prepare": "simple-git-hooks"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^7.4.3",
|
|
"eslint": "^10.0.1",
|
|
"lint-staged": "^16.2.7",
|
|
"simple-git-hooks": "^2.13.1"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*": "pnpm lint:fix"
|
|
}
|
|
}
|