-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 863 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 863 Bytes
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
29
30
31
32
33
34
35
36
{
"name": "k8s-create-secret-action",
"version": "6.0.0",
"private": true,
"type": "module",
"main": "lib/index.js",
"scripts": {
"build": "tsc --noEmit && node esbuild.config.mjs",
"check": "tsc --noEmit",
"test": "vitest run",
"format": "prettier --write .",
"format-check": "prettier --check .",
"prepare": "husky"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"@kubernetes/client-node": "^1.4.0",
"husky": "^9.1.7"
},
"devDependencies": {
"@types/node": "^25.5.2",
"esbuild": "^0.28.0",
"prettier": "^3.8.1",
"typescript": "^6.0.3",
"vitest": "^4.1.2"
}
}