-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
28 lines (28 loc) · 959 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "setup-kubectl",
"version": "0.2.0",
"description": "Install kubectl and optionally krew and plugins.",
"main": "index.ts",
"repository": "[email protected]:marcofranssen/setup-kubectl.git",
"author": "Marco Franssen <[email protected]>",
"license": "MIT",
"scripts": {
"build": "pnpm build-main",
"build-main": "ncc build -m -s --license licenses.txt",
"build:watch": "ncc build -m -s --license licenses.txt -w",
"local-exec": "RUNNER_TEMP=.runner-temp RUNNER_TOOL_CACHE=.runner-cache INPUT_KUBECTLVERSION=stable INPUT_ENABLEPLUGINS=true node --enable-source-maps dist/index.js"
},
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2.0.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.9.0",
"@vercel/ncc": "^0.38.2",
"typescript": "^5.6.3"
},
"type": "module"
}