forked from earthly/actions-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "setup-earthbuild",
"version": "0.0.0",
"private": true,
"description": "Setup the EarthBuild in a GitHub Actions build environment",
"main": "dist/index.js",
"scripts": {
"package": "ncc build -o dist/setup src/setup.ts --source-map --license LICENSE && ncc build -o dist/cache-save src/cache-save.ts --source-map --license LICENSE",
"test": "vitest run --coverage src/**/*",
"lint": "eslint ."
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/EarthBuild/actions-setup.git"
},
"author": "EarthBuild",
"keywords": [
"actions",
"EarthBuild",
"setup"
],
"dependencies": {
"@actions/cache": "6.0.0",
"@actions/core": "3.0.0",
"@actions/tool-cache": "4.0.0",
"@octokit/core": "7.0.6",
"@octokit/plugin-paginate-rest": "14.0.0",
"semver": "7.7.4"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@octokit/types": "16.0.0",
"@types/node": "24.12.0",
"@types/semver": "7.7.1",
"@vercel/ncc": "0.38.1",
"@vitest/coverage-v8": "4.0.18",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"prettier": "3.8.1",
"prettier-eslint": "16.4.2",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vitest": "4.0.18"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "4.60.0"
}
}