Files
add-to-project/package.json
Bryan Zwicker 1f33b7b9ca Add octokit retry plugin
- Added octokit plugin for automatic retries
- Removed un-imported dependency causing version conflicts
- Update dist for action with new retry plugin
- Update license cache
2025-12-09 09:43:04 -05:00

63 lines
1.8 KiB
JSON

{
"name": "@actions/add-to-project",
"description": "Automatically adds issues and PRs to GitHub projects",
"version": "0.0.0",
"author": "GitHub and contributors",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/request": "^10.0.3",
"@octokit/request-error": "^6.1.7",
"@octokit/plugin-retry": "^6.1.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">= 8.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@github/prettier-config": "^0.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vercel/ncc": "^0.38.3",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.1.0",
"eslint-plugin-prettier": "^5.2.5",
"globals": "^15.14.0",
"jest": "^30.2.0",
"prettier": "3.6.2",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"keywords": [
"actions",
"node",
"setup"
],
"license": "MIT",
"main": "lib/main.js",
"prettier": "@github/prettier-config",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/actions/add-to-project.git"
},
"scripts": {
"build": "npm run fix:format && npm run check && npm run build:compile && npm run build:package",
"build:compile": "tsc",
"build:package": "node fix-regex.js && ncc build --source-map --no-source-map-register --license licenses.txt",
"check": "concurrently -n check: -c red,green,blue -g npm:check:*",
"check:build": "tsc --noEmit",
"check:format": "prettier --check .",
"check:lint": "eslint .",
"fix:format": "prettier --write .",
"test": "jest",
"postinstall": "node fix-regex.js"
}
}