mise-action/package.json
2024-11-04 10:28:59 -06:00

54 lines
1.5 KiB
JSON

{
"name": "mise-action",
"description": "mise tool setup action",
"version": "2.1.5",
"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": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"typescript-eslint": "^8.7.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.0",
"@vercel/ncc": "^0.38.1",
"eslint-plugin-github": "^5.0.0",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-jsonc": "^2.11.2",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^9.0.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.1.1",
"typescript": "^5.5.4"
}
}