mise-action/package.json
renovate[bot] 5e49f778bb
Some checks failed
build-test / test (ubuntu-latest) (push) Waiting to run
build-test / test (windows-latest) (push) Waiting to run
build-test / specific_version (push) Waiting to run
build-test / build (push) Waiting to run
Continuous Integration / TypeScript Tests (push) Has been cancelled
Check dist/ / Check dist/ (push) Has been cancelled
build-test / test (macos-latest) (push) Waiting to run
CodeQL / Analyze (push) Has been cancelled
chore(deps): update dependency globals to v16 (#6)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [globals](https://github.com/sindresorhus/globals) | devDependencies | major | [`^15.14.0` -> `^16.0.0`](https://renovatebot.com/diffs/npm/globals/15.14.0/16.0.0) |

---

### Release Notes

<details>
<summary>sindresorhus/globals (globals)</summary>

### [`v16.0.0`](https://github.com/sindresorhus/globals/releases/tag/v16.0.0)

[Compare Source](https://github.com/sindresorhus/globals/compare/v15.15.0...v16.0.0)

##### Breaking

-   The `serviceworker` globals are now generated from browsers ([#&#8203;281](https://github.com/sindresorhus/globals/issues/281))  [`039ed51`](https://github.com/sindresorhus/globals/commit/039ed51)
    -   It's a breaking change as a few globals have been removed.

***

### [`v15.15.0`](https://github.com/sindresorhus/globals/releases/tag/v15.15.0)

[Compare Source](https://github.com/sindresorhus/globals/compare/v15.14.0...v15.15.0)

-   Regenerate vitest globals ([#&#8203;279](https://github.com/sindresorhus/globals/issues/279))  [`445df81`](https://github.com/sindresorhus/globals/commit/445df81)

***

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Friday" in timezone America/Chicago, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODIuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE4Mi40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Reviewed-on: #6
Co-authored-by: renovate[bot] <renovate@rgst.io>
Co-committed-by: renovate[bot] <renovate@rgst.io>
2025-02-28 21:14:10 +00:00

53 lines
1.4 KiB
JSON

{
"name": "mise-action",
"description": "mise tool setup action",
"version": "2.1.11",
"author": "jdx",
"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": "ncc build -s src/index.ts --license licenses.txt && ncc -s build src/cache-save.ts -o dist/cache-save/",
"package:watch": "npm run package -- --watch",
"version": "./scripts/version.sh",
"postversion": "./scripts/postversion.sh",
"prepare": "husky"
},
"license": "MIT",
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.10",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.19.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}