actions-setup/package.json

49 lines
1.4 KiB
JSON
Raw Normal View History

{
"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",
"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
},
"type": "module",
"repository": {
"type": "git",
2022-03-27 19:48:50 -07:00
"url": "git+https://github.com/earthly/actions-setup.git"
},
2022-03-27 19:48:50 -07:00
"author": "earthly technologies",
"keywords": [
"actions",
"earthly",
"setup"
],
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
2024-03-26 20:35:41 +00:00
"@octokit/core": "^6.0.0",
"@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",
"@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"
}
}