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": { | |
| "probot": "^14.3.2", | |
| "chatgpt": "^5.2.5", | |
| "dotenv": "^16.4.5", | |
| "@dqbd/tiktoken": "^1.0.12", | |
| "node-fetch": "^3.3.2", | |
| "p-limit": "^5.0.0", | |
| "p-retry": "^6.2.1", | |
| "ts-morph": "^25.0.0", | |
| "@octokit/rest": "^21.0.0", | |
| "web-tree-sitter": "^0.24.4", | |
| "minimatch": "^10.0.0" | |
| }, | |
| "devDependencies": { | |
| "@types/node": "^20.12.12", | |
| "typescript": "^5.4.5", | |
| "ts-node": "^10.9.2", | |
| "smee-client": "^2.0.1", | |
| "eslint": "^9.5.0", | |
| "@typescript-eslint/eslint-plugin": "^8.4.0", | |
| "@typescript-eslint/parser": "^8.4.0", | |
| "eslint-plugin-jest": "^28.5.0", | |
| "eslint-plugin-github": "^6.0.0", | |
| "eslint-plugin-import": "^2.29.1", | |
| "eslint-plugin-prettier": "^5.1.3", | |
| "eslint-config-prettier": "^9.1.0", | |
| "prettier": "^3.3.1", | |
| "jest": "^29.7.0", | |
| "ts-jest": "^29.1.4" | |
| }, | |
| "engines": { | |
| "node": ">=18.0.0" | |
| } | |
| } | |