{
  "name": "prsense",
  "version": "2.2.0",
  "description": "The Repository Memory Infrastructure",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/src/index.js",
      "types": "./dist/src/index.d.ts"
    },
    "./server": {
      "import": "./dist/src/server.js",
      "types": "./dist/src/server.d.ts"
    },
    "./bot": {
      "import": "./dist/src/github-bot.js",
      "types": "./dist/src/github-bot.d.ts"
    }
  },
  "directories": {
    "doc": "docs"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/src/server.js",
    "demo": "npm run build && node dist/examples/simple-usage.js",
    "demo:advanced": "npm run build && node dist/examples/advanced-usage.js",
    "cli": "npm run build && node dist/bin/prsense.js",
    "prsense": "npm run build && node dist/bin/prsense-easy.js",
    "server": "npm run build && node dist/src/server.js",
    "clean": "rm -rf dist",
    "rebuild": "npm run clean && npm run build",
    "docker:build": "docker build -t prsense .",
    "docker:run": "docker-compose up",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui"
  },
  "bin": {
    "prsense": "./dist/bin/prsense-easy.js"
  },
  "keywords": [
    "pr",
    "pull-request",
    "duplicate-detection",
    "embeddings",
    "bloom-filter",
    "similarity",
    "machine-learning",
    "github",
    "onnx",
    "vector-search",
    "pgvector",
    "sqlite",
    "postgres",
    "repository-memory",
    "triage",
    "ci-cd",
    "devtools",
    "prsense",
    "kilopal"
  ],
  "author": "PRSense Contributors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/prsense-labs/prsense.git"
  },
  "homepage": "https://github.com/prsense-labs/prsense#readme",
  "bugs": {
    "url": "https://github.com/prsense-labs/prsense/issues"
  },
  "files": [
    "dist",
    "!dist/**/*.test.*",
    "!dist/**/test.*",
    "!dist/**/quick-test.*",
    "!dist/**/*-debug.*",
    "!dist/**/inline-test.*",
    "README.md",
    "LICENSE",
    "action.yml"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "dotenv": "^17.2.3",
    "minimatch": "^10.0.1"
  },
  "peerDependencies": {
    "@actions/core": "^1.10.1",
    "@actions/github": "^6.0.0",
    "express": "^4.18.2",
    "cors": "^2.8.5",
    "express-rate-limit": "^8.2.1"
  },
  "peerDependenciesMeta": {
    "@actions/core": {
      "optional": true
    },
    "@actions/github": {
      "optional": true
    },
    "express": {
      "optional": true
    },
    "cors": {
      "optional": true
    },
    "express-rate-limit": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/cors": "^2.8.19",
    "@types/express": "^4.17.21",
    "@types/minimatch": "^5.1.2",
    "@types/node": "^22.0.0",
    "@types/pg": "^8.16.0",
    "@vitest/coverage-v8": "^3.1.0",
    "@vitest/ui": "^3.1.0",
    "cors": "^2.8.5",
    "express": "^4.18.2",
    "express-rate-limit": "^8.2.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.8"
  },
  "optionalDependencies": {
    "better-sqlite3": "^11.0.0",
    "onnxruntime-node": "^1.16.0",
    "pg": "^8.11.0"
  }
}