actions-setup/package.json

49 lines
1.4 KiB
JSON

{
"name": "setup-earthly",
"version": "0.0.0",
"private": true,
"description": "Setup the earthly in a GitHub Actions build environment",
"main": "dist/index.js",
"scripts": {
"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/**/*",
"lint": "eslint src/**/*.ts"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/earthly/actions-setup.git"
},
"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",
"@octokit/core": "^6.0.0",
"@octokit/plugin-paginate-rest": "^11.0.0",
"make-dir": "^4.0.0",
"mkdirp-promise": "^5.0.1",
"node-fetch": "^3.3.2",
"semver": "^7.6.0"
},
"devDependencies": {
"@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",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}