mise-action/package.json
jdx 45d1740529
chore: migrate from ncc (CJS) to rollup (ESM)
Switch bundler from @vercel/ncc to rollup to support ESM-only
@actions/toolkit v3 packages. This upgrades all @actions/* dependencies
to their latest major versions and adds "type": "module" to package.json.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 17:35:08 +00:00

61 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": "npx eslint . && npm run format:check",
"package": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"package:watch": "npm run package -- --watch",
"version": "./scripts/version.sh",
"prepare": "husky"
},
"license": "MIT",
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/glob": "^0.6.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",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}