mise-action/package.json

54 lines
1.4 KiB
JSON
Raw Normal View History

2023-01-14 08:11:40 -06:00
{
2024-01-02 16:16:49 -06:00
"name": "mise-action",
"description": "mise tool setup action",
2024-12-30 10:44:47 -06:00
"version": "2.1.11",
"author": "jdx",
2023-01-14 08:11:40 -06:00
"private": true,
"repository": {
"type": "git",
2024-01-02 16:16:49 -06:00
"url": "git+https://github.com/jdx/mise-action.git"
2023-01-14 08:11:40 -06:00
},
"keywords": [
"actions",
2024-01-02 16:16:49 -06:00
"mise",
2023-01-14 08:11:40 -06:00
"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",
2024-09-25 16:27:52 -05:00
"lint": "npx eslint . && npm run format:check",
2024-01-02 17:23:36 -06:00
"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",
2024-03-29 21:03:52 -05:00
"version": "./scripts/version.sh",
2023-12-14 08:49:28 -06:00
"postversion": "./scripts/postversion.sh",
2024-07-29 12:30:18 -05:00
"prepare": "husky"
},
2023-01-14 08:11:40 -06:00
"license": "MIT",
"dependencies": {
2024-12-13 06:03:07 -06:00
"@actions/cache": "^4.0.0",
2024-11-27 18:10:51 -06:00
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
2024-11-27 18:10:51 -06:00
"@actions/glob": "^0.5.0"
2023-01-14 08:11:40 -06:00
},
"devDependencies": {
2024-11-27 18:10:51 -06:00
"@eslint/eslintrc": "^3.2.0",
2025-01-25 21:54:07 -08:00
"@eslint/js": "^9.19.0",
"@types/eslint__js": "^9.0.0",
2025-01-25 21:54:07 -08:00
"@types/node": "^22.10.10",
2024-11-27 18:10:51 -06:00
"@vercel/ncc": "^0.38.3",
2025-01-25 21:54:07 -08:00
"eslint": "^9.19.0",
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: https://git.rgst.io/rgst-io/mise-action/pulls/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
"globals": "^16.0.0",
2024-11-27 18:10:51 -06:00
"husky": "^9.1.7",
"jest": "^29.7.0",
2023-01-14 08:11:40 -06:00
"js-yaml": "^4.1.0",
2025-01-25 21:54:07 -08:00
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
2023-01-14 08:11:40 -06:00
}
}