-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.19 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.19 KB
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
37
38
39
{
"name": "setup-vind",
"version": "0.1.0",
"description": "GitHub Action to provision Kubernetes clusters via vCluster Docker driver (vind)",
"main": "dist/main/index.js",
"scripts": {
"build": "npm run build:main && npm run build:post",
"build:main": "esbuild src/main.ts --bundle --platform=node --target=node20 --outfile=dist/main/index.js --minify",
"build:post": "esbuild src/post.ts --bundle --platform=node --target=node20 --outfile=dist/post/index.js --minify",
"lint": "eslint '**/*.ts'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loft-sh/setup-vind.git"
},
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.6.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"esbuild": "^0.27.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.6.0"
}
}