mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-02-23 04:00:11 +08:00
85 lines
2.6 KiB
JSON
85 lines
2.6 KiB
JSON
{
|
|
"name": "setup-graalvm",
|
|
"author": "GraalVM Community",
|
|
"description": "GitHub Action for GraalVM",
|
|
"version": "1.2.8",
|
|
"type": "module",
|
|
"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 rollup --config rollup.main.config.ts --configPlugin @rollup/plugin-typescript",
|
|
"package:cleanup": "npx rollup --config rollup.cleanup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
"test": "npx jest",
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run package"
|
|
},
|
|
"license": "UPL",
|
|
"dependencies": {
|
|
"@actions/cache": "^4.0.0",
|
|
"@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": "^12.6.0",
|
|
"@github/dependency-submission-toolkit": "^2.0.4",
|
|
"semver": "^7.6.3",
|
|
"uuid": "^11.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.2.6",
|
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
"@rollup/plugin-typescript": "^12.1.1",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^20.17.12",
|
|
"@types/semver": "^7.5.8",
|
|
"@types/uuid": "^10.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.22.0",
|
|
"@typescript-eslint/parser": "^8.22.0",
|
|
"eslint": "^9.19.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jest": "^28.10.0",
|
|
"eslint-plugin-jsonc": "^2.19.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^5.2.3",
|
|
"jest": "^29.7.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^3.4.2",
|
|
"prettier-eslint": "^16.3.0",
|
|
"rollup": "^4.34.1",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-jest-resolver": "^2.0.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"optionalDependencies": {
|
|
"@rollup/rollup-linux-x64-gnu": "*"
|
|
}
|
|
}
|