UNPKG

repository-analyzer

Version:

Transform code repositories into strategic intelligence using extensible AI agents. Analyze technical debt, business value, and deployment readiness automatically.

111 lines (110 loc) 2.81 kB
{ "name": "repository-analyzer", "version": "1.0.3", "description": "Transform code repositories into strategic intelligence using extensible AI agents. Analyze technical debt, business value, and deployment readiness automatically.", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "repo-analyze": "./bin/repo-analyze.js", "repository-analyzer": "./bin/repo-analyze.js" }, "engines": { "node": ">=16.0.0" }, "files": [ "dist/", "bin/", "agents/", "templates/", "scripts/", "README.md", "LICENSE" ], "scripts": { "build": "tsc && npm run copy-assets", "copy-assets": "cp -r agents/ dist/ && cp -r templates/ dist/ 2>/dev/null || true", "dev": "ts-node src/index.ts", "test": "jest --passWithNoTests", "test:install": "node scripts/test-install.js", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "prepublishOnly": "npm run build && npm run test", "postinstall": "node scripts/setup.js", "clean": "rm -rf dist/" }, "keywords": [ "repository", "analysis", "code-intelligence", "ai-agents", "technical-debt", "business-intelligence", "documentation", "strategic-planning", "code-review", "portfolio-analysis", "devops", "architecture", "security-analysis", "modernization", "claude", "extensible" ], "author": { "name": "Repository Agents Team", "email": "support@repo-agents.com", "url": "https://repo-agents.com" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/repo-agents/analyzer.git" }, "bugs": { "url": "https://github.com/repo-agents/analyzer/issues" }, "homepage": "https://github.com/repo-agents/analyzer#readme", "dependencies": { "boxen": "^7.1.1", "chalk": "^4.1.2", "commander": "^9.4.1", "execa": "^7.1.1", "fs-extra": "^11.1.1", "glob": "^10.3.0", "inquirer": "^8.2.5", "lodash": "^4.17.21", "ora": "^6.3.1", "semver": "^7.5.1", "which": "^3.0.1", "yaml": "^2.3.1" }, "devDependencies": { "@types/fs-extra": "^11.0.1", "@types/inquirer": "^9.0.8", "@types/lodash": "^4.14.195", "@types/node": "^20.19.3", "@typescript-eslint/eslint-plugin": "^5.60.0", "@typescript-eslint/parser": "^5.60.0", "eslint": "^8.43.0", "jest": "^29.5.0", "prettier": "^2.8.8", "ts-node": "^10.9.1", "typescript": "^5.1.3" }, "peerDependencies": { "claude": "*" }, "peerDependenciesMeta": { "claude": { "optional": true } }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "funding": { "type": "github", "url": "https://github.com/sponsors/repo-agents" } }