{ "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": "^7.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" } }