-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "setup-vlt",
"version": "1.0.0",
"description": "Download, install, and setup vlt to your path.",
"main": "dist/setup/index.js",
"scripts": {
"build": "npm run build:setup && npm run build:cache-save",
"build:setup": "esbuild src/index.ts --bundle --outfile=dist/setup/index.js --platform=node --target=node20 --format=cjs --minify",
"build:cache-save": "esbuild src/cache-save.ts --bundle --outfile=dist/cache-save/index.js --platform=node --target=node20 --format=cjs --minify",
"dev": "npm run build:setup && npm run build:cache-save",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write .",
"package": "ncc build src/index.ts -o dist/setup && ncc build src/cache-save.ts -o dist/cache-save",
"all": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vltpkg/setup-vlt.git"
},
"keywords": [
"vlt",
"setup",
"action",
"github-actions",
"package-manager",
"javascript"
],
"author": "vltpkg",
"license": "MIT",
"bugs": {
"url": "https://github.com/vltpkg/setup-vlt/issues"
},
"homepage": "https://github.com/vltpkg/setup-vlt#readme",
"dependencies": {
"@actions/cache": "^3.3.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"esbuild": "^0.20.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20"
}
}