2023-01-14 08:11:40 -06:00
|
|
|
{
|
2023-04-10 20:36:00 -04:00
|
|
|
"name": "rtx-action",
|
2023-03-06 09:38:55 -06:00
|
|
|
"version": "1.1.1",
|
2023-01-14 08:11:40 -06:00
|
|
|
"private": true,
|
2023-04-10 20:36:00 -04:00
|
|
|
"description": "rtx tool setup action",
|
2023-01-14 08:11:40 -06:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2023-04-10 20:36:00 -04:00
|
|
|
"package": "ncc build --source-map --license licenses.txt && ncc build -o dist/cache-save lib/cache-save.js --source-map",
|
2023-01-14 08:11:40 -06:00
|
|
|
"test": "jest",
|
2023-01-14 08:44:01 -06:00
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
|
|
|
|
"prepare": "husky install"
|
2023-01-14 08:11:40 -06:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-04-10 20:36:00 -04:00
|
|
|
"url": "git+https://github.com/jdxcode/rtx-action.git"
|
2023-01-14 08:11:40 -06:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
2023-04-10 20:36:00 -04:00
|
|
|
"rtx",
|
2023-01-14 08:11:40 -06:00
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2023-04-10 20:36:00 -04:00
|
|
|
"@actions/cache": "^3.2.1",
|
2023-01-14 08:36:43 -06:00
|
|
|
"@actions/core": "^1.10.0",
|
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": {
|
2023-07-03 11:19:26 +00:00
|
|
|
"@tsconfig/node16": "^16.1.0",
|
2023-08-07 08:42:00 -05:00
|
|
|
"@types/node": "^20.4.8",
|
2023-07-18 22:52:56 +00:00
|
|
|
"@typescript-eslint/parser": "^5.62.0",
|
2023-02-20 03:57:01 +00:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2023-07-31 12:47:33 +00:00
|
|
|
"eslint": "^8.46.0",
|
2023-07-18 17:50:31 -05:00
|
|
|
"eslint-plugin-github": "^4.9.0",
|
2023-07-17 14:34:22 +00:00
|
|
|
"eslint-plugin-jest": "^27.2.3",
|
2023-03-25 15:19:50 -05:00
|
|
|
"husky": "^8.0.3",
|
2023-07-31 12:44:18 +00:00
|
|
|
"jest": "^29.6.2",
|
2023-01-14 08:11:40 -06:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-04-24 12:38:53 +00:00
|
|
|
"prettier": "2.8.8",
|
2023-07-10 10:18:37 +00:00
|
|
|
"ts-jest": "^29.1.1",
|
2023-07-03 11:23:48 +00:00
|
|
|
"typescript": "^5.1.6"
|
2023-01-14 08:11:40 -06:00
|
|
|
}
|
|
|
|
}
|