{
  "name": "@fragments-sdk/context",
  "version": "0.11.3",
  "license": "FSL-1.1-MIT",
  "description": "Code intelligence and RAG primitives for design system and codebase indexing",
  "author": "Conan McNicholl",
  "homepage": "https://usefragments.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/fragments-sdk/fragments"
  },
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "chunking": [
        "dist/chunking/index.d.ts"
      ],
      "citations": [
        "dist/citations/index.d.ts"
      ],
      "cli-commands": [
        "dist/cli-commands/index.d.ts"
      ],
      "embeddings": [
        "dist/embeddings/voyage.d.ts"
      ],
      "indexing": [
        "dist/indexing/index.d.ts"
      ],
      "mcp-tools": [
        "dist/mcp-tools/index.d.ts"
      ],
      "code-graph/internal": [
        "dist/code-graph/internal.d.ts"
      ],
      "search": [
        "dist/search/index.d.ts"
      ],
      "types": [
        "dist/types/index.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./chunking": {
      "types": "./dist/chunking/index.d.ts",
      "import": "./dist/chunking/index.js"
    },
    "./embeddings": {
      "types": "./dist/embeddings/voyage.d.ts",
      "import": "./dist/embeddings/voyage.js"
    },
    "./search": {
      "types": "./dist/search/index.d.ts",
      "import": "./dist/search/index.js"
    },
    "./indexing": {
      "types": "./dist/indexing/index.d.ts",
      "import": "./dist/indexing/index.js"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/types/index.js"
    },
    "./citations": {
      "types": "./dist/citations/index.d.ts",
      "import": "./dist/citations/index.js"
    },
    "./mcp-tools": {
      "types": "./dist/mcp-tools/index.d.ts",
      "import": "./dist/mcp-tools/index.js"
    },
    "./code-graph/internal": {
      "types": "./dist/code-graph/internal.d.ts",
      "import": "./dist/code-graph/internal.js"
    },
    "./cli-commands": {
      "types": "./dist/cli-commands/index.d.ts",
      "import": "./dist/cli-commands/index.js"
    }
  },
  "keywords": [
    "rag",
    "embeddings",
    "code-intelligence",
    "chunking",
    "search",
    "indexing",
    "ai",
    "context"
  ],
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "scarfSettings": {
    "defaultOptIn": true
  },
  "dependencies": {
    "@scarf/scarf": "^1.4.0",
    "tree-sitter-go": "^0.25.0",
    "tree-sitter-java": "^0.23.5",
    "tree-sitter-javascript": "^0.25.0",
    "tree-sitter-python": "^0.25.0",
    "tree-sitter-rust": "^0.24.0",
    "tree-sitter-typescript": "^0.23.2",
    "web-tree-sitter": "^0.26.5",
    "@fragments-sdk/core": "3.10.0"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "eslint src",
    "test": "vitest run --passWithNoTests",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}