mise-action/package.json

54 lines
1.4 KiB
JSON
Raw Normal View History

2023-01-14 08:11:40 -06:00
{
"name": "rtx-action",
"description": "rtx tool setup action",
2023-03-06 09:38:55 -06:00
"version": "1.1.1",
"author": "jdx",
2023-01-14 08:11:40 -06:00
"private": true,
"repository": {
"type": "git",
2023-08-27 12:12:44 -05:00
"url": "git+https://github.com/jdx/rtx-action.git"
2023-01-14 08:11:40 -06:00
},
"keywords": [
"actions",
"rtx",
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",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"prepare": "husky install"
},
2023-01-14 08:11:40 -06:00
"license": "MIT",
"dependencies": {
2023-08-09 18:20:58 -05:00
"@actions/cache": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0"
2023-01-14 08:11:40 -06:00
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.54.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-prettier": "^5.0.1",
2023-03-25 15:19:50 -05:00
"husky": "^8.0.3",
"jest": "^29.7.0",
2023-01-14 08:11:40 -06:00
"js-yaml": "^4.1.0",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"typescript": "^5.3.2"
2023-01-14 08:11:40 -06:00
}
}