Spaces:
Paused
Paused
| { | |
| "name": "prix-ai-auditor", | |
| "version": "1.1.0", | |
| "description": "Enterprise-grade AI PR Auditor and Reviewer (Probot Service)", | |
| "main": "lib/index.js", | |
| "bin": { | |
| "prix-cli": "./lib/cli.js" | |
| }, | |
| "scripts": { | |
| "start": "probot run ./lib/index.js", | |
| "build": "tsc", | |
| "dev": "probot run ./index.ts", | |
| "test": "jest", | |
| "format": "prettier --write .", | |
| "lint": "eslint . --ext .ts", | |
| "webhook": "smee -u YOUR_SMEE_URL -t http://localhost:3000", | |
| "cli": "ts-node ./src/cli.ts", | |
| "precommit": "ts-node ./src/cli.ts --staged", | |
| "install-hooks": "bash ./scripts/install-hooks.sh" | |
| }, | |
| "dependencies": { | |
| "@dqbd/tiktoken": "^1.0.12", | |
| "@octokit/rest": "^21.0.0", | |
| "chatgpt": "^5.2.5", | |
| "dompurify": "^3.4.1", | |
| "dotenv": "^16.4.5", | |
| "execa": "^9.6.1", | |
| "jsdom": "^29.1.0", | |
| "lru-cache": "^11.3.5", | |
| "minimatch": "^10.0.0", | |
| "node-fetch": "^3.3.2", | |
| "opossum": "^9.0.0", | |
| "p-limit": "^5.0.0", | |
| "p-retry": "^6.2.1", | |
| "pino": "^10.3.1", | |
| "probot": "^14.3.2", | |
| "prom-client": "^15.1.3", | |
| "simple-git": "^3.36.0", | |
| "tmp": "^0.2.5", | |
| "ts-morph": "^25.0.0", | |
| "web-tree-sitter": "^0.24.4", | |
| "zod": "^4.3.6" | |
| }, | |
| "devDependencies": { | |
| "@types/jest": "^30.0.0", | |
| "@types/jsdom": "^28.0.1", | |
| "@types/node": "^20.19.39", | |
| "@types/opossum": "^8.1.9", | |
| "@types/supertest": "^7.2.0", | |
| "@typescript-eslint/eslint-plugin": "^8.4.0", | |
| "@typescript-eslint/parser": "^8.4.0", | |
| "eslint": "^9.5.0", | |
| "eslint-config-prettier": "^9.1.0", | |
| "eslint-plugin-github": "^6.0.0", | |
| "eslint-plugin-import": "^2.29.1", | |
| "eslint-plugin-jest": "^28.5.0", | |
| "eslint-plugin-prettier": "^5.1.3", | |
| "jest": "^29.7.0", | |
| "nock": "^14.0.13", | |
| "prettier": "^3.3.1", | |
| "smee-client": "^2.0.1", | |
| "supertest": "^7.2.2", | |
| "ts-jest": "^29.4.9", | |
| "ts-node": "^10.9.2", | |
| "typescript": "^5.4.5" | |
| }, | |
| "engines": { | |
| "node": ">=18.0.0" | |
| }, | |
| "overrides": { | |
| "glob": "^13.0.6", | |
| "inflight": "npm:lru-cache@^11.2.7", | |
| "rimraf": "^6.1.3", | |
| "node-domexception": "npm:node-fetch@^2.6.7" | |
| } | |
| } | |