{
  "name": "glancey",
  "version": "2.9.4",
  "description": "MCP plugin for semantic code search using LanceDB - gives AI coding agents deep context from your entire codebase",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "glancey": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "type-check": "tsc --noEmit",
    "clean": "rm -rf dist coverage .glancey",
    "prepublishOnly": "npm run build",
    "prepare": "husky",
    "postinstall": "node scripts/postinstall.js || true"
  },
  "files": [
    "dist",
    "scripts",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nicholaspsmith/Glancey.git"
  },
  "keywords": [
    "mcp",
    "claude",
    "code-search",
    "embeddings",
    "lancedb",
    "semantic-search",
    "ai-coding"
  ],
  "author": "Nicholas Smith",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nicholaspsmith/Glancey/issues"
  },
  "homepage": "https://github.com/nicholaspsmith/Glancey#readme",
  "dependencies": {
    "@lancedb/lancedb": "^0.22.3",
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@vscode/tree-sitter-wasm": "^0.3.0",
    "glob": "^13.0.0",
    "minimatch": "^10.1.1",
    "typescript": "^5.7.0",
    "web-tree-sitter": "^0.26.3",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.3.1",
    "@commitlint/config-conventional": "^20.3.1",
    "@eslint/js": "^9.39.2",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/node": "^22.0.0",
    "@vitest/coverage-v8": "^4.0.16",
    "eslint": "^9.39.2",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "prettier": "^3.8.1",
    "semantic-release": "^25.0.2",
    "tsx": "^4.0.0",
    "typescript-eslint": "^8.53.1",
    "vitest": "^4.0.16"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "lint-staged": {
    "src/**/*.ts": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}
