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-04-27 09:38:36 +00:00
|
|
|
"@actions/core": "^3.0.1",
|
2026-03-24 13:46:19 -04:00
|
|
|
"@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",
|
2026-04-27 09:38:36 +00:00
|
|
|
"semver": "^7.7.4"
|
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-04-27 09:38:36 +00:00
|
|
|
"@types/node": "^25.6.0",
|
|
|
|
|
"esbuild": "^0.28",
|
2025-07-02 14:53:58 -07:00
|
|
|
"husky": "^9.1.7",
|
2026-04-27 09:38:36 +00:00
|
|
|
"prettier": "^3.8.3",
|
|
|
|
|
"typescript": "^6.0.3",
|
2026-03-24 13:46:19 -04:00
|
|
|
"vitest": "^4"
|
2022-06-27 15:27:44 -07:00
|
|
|
}
|
2022-06-27 14:00:33 -04:00
|
|
|
}
|