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-06-01 17:32:54 -05:00
|
|
|
"version": "2.0.6",
|
2023-10-16 19:18:57 -05:00
|
|
|
"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"
|
|
|
|
],
|
2023-10-16 19:18:57 -05:00
|
|
|
"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 . -c ./.github/linters/.eslintrc.yml",
|
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/",
|
2023-10-16 19:18:57 -05:00
|
|
|
"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-10-16 19:18:57 -05:00
|
|
|
},
|
2023-01-14 08:11:40 -06:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2023-08-09 18:20:58 -05:00
|
|
|
"@actions/cache": "^3.2.2",
|
2023-10-16 19:18:57 -05:00
|
|
|
"@actions/core": "^1.10.1",
|
2023-04-10 20:36:00 -04:00
|
|
|
"@actions/exec": "^1.1.1",
|
|
|
|
"@actions/glob": "^0.4.0"
|
2023-01-14 08:11:40 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-07-29 12:40:52 -05:00
|
|
|
"@eslint/js": "^9.8.0",
|
|
|
|
"@types/eslint__js": "^8.42.3",
|
2024-01-01 17:07:01 +00:00
|
|
|
"@types/node": "^20.10.6",
|
2023-10-23 06:32:23 -05:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2023-10-09 17:40:37 +00:00
|
|
|
"eslint-plugin-github": "^4.10.1",
|
2024-04-06 15:42:48 +00:00
|
|
|
"eslint-plugin-jest": "^28.0.0",
|
2023-12-25 16:17:05 +00:00
|
|
|
"eslint-plugin-jsonc": "^2.11.2",
|
2023-12-25 10:06:43 -06:00
|
|
|
"eslint-plugin-prettier": "^5.1.2",
|
2024-01-27 12:22:00 +00:00
|
|
|
"husky": "^9.0.0",
|
2023-09-25 11:00:27 +00:00
|
|
|
"jest": "^29.7.0",
|
2023-01-14 08:11:40 -06:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-12-11 15:39:36 +00:00
|
|
|
"prettier": "^3.1.1",
|
2024-07-29 12:40:52 -05:00
|
|
|
"typescript": "^5.5.4"
|
2023-01-14 08:11:40 -06:00
|
|
|
}
|
|
|
|
}
|