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-13 06:04:00 -06:00
"version": "2.1.8",
"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",
"@eslint/js": "^9.15.0",
2024-07-29 12:40:52 -05:00
"@types/eslint__js": "^8.42.3",
2024-11-27 18:10:51 -06:00
"@types/node": "^22.10.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
2023-01-14 08:11:40 -06:00
"js-yaml": "^4.1.0",
2024-11-27 18:10:51 -06:00
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
2023-01-14 08:11:40 -06:00
}
}