{
  "name": "markdown-matters",
  "version": "0.3.5",
  "description": "Token-efficient markdown analysis tool for LLM consumption",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/srobinson/markdown-matters.git"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "markdown-matters": "./dist/cli/main.js",
    "mdm": "./dist/cli/main.js",
    "mdm-mcp": "./dist/mcp/server.js"
  },
  "scripts": {
    "postinstall": "node scripts/rebuild-hnswlib.js",
    "build": "tsup src/cli/main.ts src/mcp/server.ts src/index.ts --format esm --dts --external @huggingface/transformers",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:all": "INCLUDE_EMBED_TESTS=true vitest run",
    "test:rebuild": "REBUILD_TEST_INDEX=true vitest run",
    "test:all:rebuild": "REBUILD_TEST_INDEX=true INCLUDE_EMBED_TESTS=true vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "biome lint --write .",
    "format": "biome format --write . && biome check --write .",
    "check": "pnpm format && pnpm lint && pnpm typecheck",
    "clean": "rm -rf dist",
    "quality": "pnpm build && npx publint && npx attw --pack .",
    "prepublishOnly": "pnpm build && pnpm test && pnpm typecheck",
    "release": "npm publish --provenance --access public"
  },
  "keywords": [
    "markdown",
    "llm",
    "ai",
    "analysis",
    "search",
    "embeddings"
  ],
  "author": "",
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@clack/prompts": "^0.11.0",
    "@effect/cli": "^0.73.2",
    "@effect/platform": "^0.94.5",
    "@effect/platform-node": "^0.104.1",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@msgpack/msgpack": "^3.1.3",
    "chokidar": "^5.0.0",
    "effect": "^3.21.0",
    "gray-matter": "^4.0.3",
    "hnswlib-node": "^3.0.0",
    "ignore": "^7.0.5",
    "openai": "^6.33.0",
    "remark": "^15.0.1",
    "remark-gfm": "^4.0.1",
    "remark-parse": "^11.0.0",
    "smol-toml": "^1.6.1",
    "stemmer": "^2.0.1",
    "tiktoken": "^1.0.22",
    "unified": "^11.0.5",
    "unist-util-visit": "^5.1.0",
    "wink-bm25-text-search": "^3.1.2",
    "yaml": "^2.8.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.10",
    "@types/mdast": "^4.0.4",
    "@types/node": "^25.5.2",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.3"
  }
}
