2019-10-04 12:16:40 +05:30
|
|
|
{
|
2022-06-27 15:27:44 -07:00
|
|
|
"name": "setuphelm",
|
2026-03-23 16:35:40 -04:00
|
|
|
"version": "5.0.0",
|
2022-06-27 15:27:44 -07:00
|
|
|
"private": true,
|
|
|
|
|
"description": "Setup helm",
|
|
|
|
|
"author": "Anumita Shenoy",
|
|
|
|
|
"license": "MIT",
|
2026-03-24 13:46:19 -04:00
|
|
|
"type": "module",
|
2022-06-27 15:27:44 -07:00
|
|
|
"dependencies": {
|
2026-03-24 13:46:19 -04:00
|
|
|
"@actions/core": "^3.0.0",
|
|
|
|
|
"@actions/exec": "^3.0.0",
|
|
|
|
|
"@actions/io": "^3.0.2",
|
|
|
|
|
"@actions/tool-cache": "4.0.0",
|
2025-11-18 20:55:50 -05:00
|
|
|
"@octokit/action": "^8.0.4",
|
2025-10-15 15:10:54 -04:00
|
|
|
"semver": "^7.7.3"
|
2022-06-27 15:27:44 -07:00
|
|
|
},
|
|
|
|
|
"main": "lib/index.js",
|
|
|
|
|
"scripts": {
|
2026-03-24 13:46:19 -04:00
|
|
|
"build": "tsc --noEmit && esbuild src/index.ts --bundle --platform=node --target=node20 --format=esm --outfile=lib/index.js --banner:js=\"import { createRequire } from 'module';const require = createRequire(import.meta.url);\"",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test-coverage": "vitest run --coverage",
|
2022-06-27 15:27:44 -07:00
|
|
|
"format": "prettier --write .",
|
2025-07-02 14:53:58 -07:00
|
|
|
"format-check": "prettier --check .",
|
|
|
|
|
"prepare": "husky"
|
2022-06-27 15:27:44 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-20 10:37:57 -05:00
|
|
|
"@types/node": "^25.0.9",
|
2026-03-24 13:46:19 -04:00
|
|
|
"esbuild": "^0.27",
|
2025-07-02 14:53:58 -07:00
|
|
|
"husky": "^9.1.7",
|
2026-01-20 10:37:57 -05:00
|
|
|
"prettier": "^3.8.0",
|
2026-03-24 13:46:19 -04:00
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"vitest": "^4"
|
2022-06-27 15:27:44 -07:00
|
|
|
}
|
2022-06-27 14:00:33 -04:00
|
|
|
}
|