2021-04-20 15:28:53 -07:00
|
|
|
{
|
|
|
|
"name": "setup-earthly",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
2022-03-27 19:48:50 -07:00
|
|
|
"description": "Setup the earthly in a GitHub Actions build environment",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"scripts": {
|
2022-04-20 18:32:57 -07:00
|
|
|
"package": "ncc build -o dist/setup src/setup-earthly.ts --source-map --license LICENSE && ncc build -o dist/cache-save src/cache-save.ts --source-map --license LICENSE",
|
2024-03-28 10:22:06 -04:00
|
|
|
"test": "vitest run --coverage src/**/*",
|
2022-04-18 18:30:58 -07:00
|
|
|
"lint": "eslint src/**/*.ts"
|
2022-03-27 19:48:50 -07:00
|
|
|
},
|
2024-03-27 12:17:38 -04:00
|
|
|
"type": "module",
|
2021-04-20 15:28:53 -07:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-03-27 19:48:50 -07:00
|
|
|
"url": "git+https://github.com/earthly/actions-setup.git"
|
2021-04-20 15:28:53 -07:00
|
|
|
},
|
2022-03-27 19:48:50 -07:00
|
|
|
"author": "earthly technologies",
|
2021-04-20 15:28:53 -07:00
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"earthly",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2024-03-18 11:20:12 -05:00
|
|
|
"@actions/cache": "^3.2.4",
|
2022-11-07 10:52:24 -08:00
|
|
|
"@actions/core": "^1.10.0",
|
2024-03-26 19:55:13 +00:00
|
|
|
"@actions/github": "^6.0.0",
|
2022-11-07 10:52:24 -08:00
|
|
|
"@actions/io": "^1.1.2",
|
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2024-03-26 20:35:41 +00:00
|
|
|
"@octokit/core": "^6.0.0",
|
2024-04-08 11:03:53 +00:00
|
|
|
"@octokit/plugin-paginate-rest": "^11.0.0",
|
2024-03-26 19:35:53 +00:00
|
|
|
"make-dir": "^4.0.0",
|
2022-03-27 19:48:50 -07:00
|
|
|
"mkdirp-promise": "^5.0.1",
|
2024-03-27 14:18:22 -04:00
|
|
|
"node-fetch": "^3.3.2",
|
|
|
|
"semver": "^7.6.0"
|
2022-03-27 19:48:50 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-03-27 14:18:22 -04:00
|
|
|
"@types/node": "^20.11.30",
|
|
|
|
"@types/semver": "^7.5.8",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
|
|
"@typescript-eslint/parser": "^7.4.0",
|
2024-03-27 12:17:38 -04:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2024-03-27 14:18:22 -04:00
|
|
|
"@vitest/coverage-v8": "^1.4.0",
|
|
|
|
"eslint": "^8.57.0",
|
|
|
|
"prettier": "^3.2.5",
|
|
|
|
"typescript": "^5.4.3",
|
|
|
|
"vitest": "^1.4.0"
|
2021-04-20 15:28:53 -07:00
|
|
|
}
|
|
|
|
}
|