{
  "name": "@techdebtgpt/maintsight",
  "version": "0.0.4",
  "description": "AI-powered maintenance risk predictor for git repositories using XGBoost",
  "main": "dist/src/maintsight-cli.js",
  "types": "dist/src/maintsight-cli.d.ts",
  "bin": {
    "maintsight": "./dist/cli/maintsight-cli.js",
    "ms": "./dist/cli/maintsight-cli.js"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "build:watch": "tsc -p tsconfig.build.json --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "lint": "eslint \"{src,cli,tests}/**/*.ts\"",
    "lint:fix": "eslint \"{src,cli,tests}/**/*.ts\" --fix",
    "format": "prettier --write \"**/*.{ts,json,md}\"",
    "prepublishOnly": "node scripts/pre-publish-check.js",
    "cli:dev": "ts-node cli/maintsight-cli.ts",
    "prepare": "npm run build"
  },
  "keywords": [
    "maintenance",
    "technical-debt",
    "risk-prediction",
    "xgboost",
    "git",
    "code-quality",
    "machine-learning",
    "typescript",
    "maintsight",
    "code-analysis",
    "repository-health"
  ],
  "author": "TechDebtGPT Team",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/techdebtgpt/maintsight.git"
  },
  "bugs": {
    "url": "https://github.com/techdebtgpt/maintsight/issues"
  },
  "homepage": "https://github.com/techdebtgpt/maintsight#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "chalk": "^4.1.2",
    "commander": "^12.1.0",
    "ora": "^5.4.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^22.19.0",
    "@typescript-eslint/eslint-plugin": "^8.46.2",
    "@typescript-eslint/parser": "^8.46.2",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.0",
    "jest": "^29.7.0",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ]
}
