mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-14 13:50:33 +00:00
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "mise-action",
|
|
"description": "mise tool setup action",
|
|
"version": "4.0.1",
|
|
"author": "jdx",
|
|
"type": "module",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jdx/mise-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"mise",
|
|
"setup"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"all": "npm run format:write && npm run lint && npm run package",
|
|
"bundle": "npm run format:write && npm run package",
|
|
"format:check": "prettier --check **/*.ts",
|
|
"format:write": "prettier --write **/*.ts",
|
|
"lint": "eslint . && npm run format:check",
|
|
"package": "rimraf ./dist && rollup --config rollup.config.mjs",
|
|
"package:watch": "npm run package -- --watch",
|
|
"version": "./scripts/version.sh",
|
|
"prepare": "husky"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/cache": "^6.0.0",
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/glob": "^0.7.0",
|
|
"@actions/io": "^3.0.0",
|
|
"@types/handlebars": "^4.0.40",
|
|
"handlebars": "^4.7.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.2.0",
|
|
"@eslint/js": "^10.0.0",
|
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
"@rollup/plugin-typescript": "^12.0.0",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"@types/node": "^24",
|
|
"eslint": "^10.0.0",
|
|
"globals": "^17.0.0",
|
|
"husky": "^9.1.7",
|
|
"jest": "^30",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^3.4.1",
|
|
"rimraf": "^6.0.0",
|
|
"rollup": "^4.0.0",
|
|
"rollup-plugin-license": "^3.7.1",
|
|
"typescript": "^6.0.0",
|
|
"typescript-eslint": "^8.16.0"
|
|
},
|
|
"aube": {
|
|
"allowBuilds": {
|
|
"unrs-resolver": false
|
|
}
|
|
}
|
|
}
|