{ "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/plugin-paginate-rest": "^13.0.1", "@octokit/request": "^10.0.3", "@octokit/request-error": "^6.1.7" }, "engines": { "node": ">=20.0.0", "npm": ">= 8.0.0" }, "devDependencies": { "@github/prettier-config": "^0.0.6", "@types/jest": "^29.5.14", "@types/node": "24.0.12", "@typescript-eslint/eslint-plugin": "^7.14.1", "@typescript-eslint/parser": "^7.14.1", "@vercel/ncc": "^0.38.3", "concurrently": "^9.2.1", "eslint": "^8.57.0", "eslint-plugin-github": "^5.0.1", "eslint-plugin-jest": "^28.11.0", "eslint-plugin-prettier": "^5.2.5", "jest": "^29.7.0", "prettier": "3.6.2", "ts-jest": "^29.4.0", "typescript": "^5.5.2" }, "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" } }