mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-04-05 03:50:09 +08:00
Bumps the npm-production group with 2 updates: [@actions/cache](https://github.com/actions/toolkit/tree/HEAD/packages/cache) and [@github/dependency-submission-toolkit](https://github.com/github/dependency-submission-toolkit). Updates `@actions/cache` from 4.0.2 to 4.0.3 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/cache/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/cache) Updates `@github/dependency-submission-toolkit` from 2.0.4 to 2.0.5 - [Release notes](https://github.com/github/dependency-submission-toolkit/releases) - [Commits](https://github.com/github/dependency-submission-toolkit/compare/v2.0.4...v2.0.5) --- updated-dependencies: - dependency-name: "@actions/cache" dependency-version: 4.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm-production - dependency-name: "@github/dependency-submission-toolkit" dependency-version: 2.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm-production ... Signed-off-by: dependabot[bot] <support@github.com>
76 lines
2.2 KiB
JSON
76 lines
2.2 KiB
JSON
{
|
|
"name": "setup-graalvm",
|
|
"author": "GraalVM Community",
|
|
"description": "GitHub Action for GraalVM",
|
|
"version": "1.3.3",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/graalvm/setup-graalvm.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/graalvm/setup-graalvm/issues"
|
|
},
|
|
"keywords": [
|
|
"graalvm",
|
|
"native image",
|
|
"actions",
|
|
"setup"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"bundle": "npm run format:write && npm run package",
|
|
"format:write": "npx prettier --write .",
|
|
"format:check": "npx prettier --check .",
|
|
"lint": "npx eslint .",
|
|
"package": "npm run package:main && npm run package:cleanup",
|
|
"package:main": "npx ncc build src/main.ts -o dist/main",
|
|
"package:cleanup": "npx ncc build src/cleanup.ts -o dist/cleanup",
|
|
"test": "npx jest",
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run package"
|
|
},
|
|
"license": "UPL",
|
|
"dependencies": {
|
|
"@actions/cache": "^4.0.3",
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0",
|
|
"@actions/glob": "^0.5.0",
|
|
"@actions/http-client": "^2.2.3",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.2",
|
|
"@octokit/core": "^5.2.0",
|
|
"@octokit/types": "^13.8.0",
|
|
"@github/dependency-submission-toolkit": "^2.0.5",
|
|
"semver": "^7.7.1",
|
|
"uuid": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.2.8",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^20.17.30",
|
|
"@types/semver": "^7.7.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.29.0",
|
|
"@typescript-eslint/parser": "^8.29.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"eslint": "^9.23.0",
|
|
"eslint-config-prettier": "^10.1.1",
|
|
"eslint-import-resolver-typescript": "^3.8.3",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jest": "^28.10.0",
|
|
"eslint-plugin-jsonc": "^2.20.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^5.2.5",
|
|
"jest": "^29.7.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^3.5.3",
|
|
"prettier-eslint": "^16.3.0",
|
|
"ts-jest": "^29.3.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|