{
  "name": "@incremark/core",
  "version": "1.0.2",
  "description": "High-performance incremental markdown parser specifically designed for AI streaming output scenarios.",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./detector": {
      "types": "./dist/detector/index.d.ts",
      "import": "./dist/detector/index.js"
    },
    "./utils": {
      "types": "./dist/utils/index.d.ts",
      "import": "./dist/utils/index.js"
    },
    "./engines/marked": {
      "types": "./dist/engines/marked/index.d.ts",
      "import": "./dist/engines/marked/index.js"
    },
    "./engines/micromark": {
      "types": "./dist/engines/micromark/index.d.ts",
      "import": "./dist/engines/micromark/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@types/lodash-es": "^4.17.12",
    "@types/mdast": "^4.0.0",
    "lodash-es": "^4.17.22",
    "marked": "^17.0.1",
    "mdast-util-directive": "^3.1.0",
    "mdast-util-from-markdown": "^2.0.2",
    "mdast-util-gfm": "^3.1.0",
    "mdast-util-gfm-footnote": "^2.1.0",
    "mdast-util-math": "^3.0.0",
    "micromark-extension-directive": "^4.0.0",
    "micromark-extension-gfm": "^3.0.0",
    "micromark-extension-gfm-footnote": "^2.1.0",
    "micromark-extension-math": "^3.0.0",
    "micromark-factory-destination": "^2.0.1",
    "micromark-factory-label": "^2.0.1",
    "micromark-factory-space": "^2.0.1",
    "micromark-factory-title": "^2.0.1",
    "micromark-factory-whitespace": "^2.0.1",
    "micromark-util-character": "^2.1.1",
    "micromark-util-normalize-identifier": "^2.0.1",
    "micromark-util-symbol": "^2.0.1",
    "micromark-util-types": "^2.0.2"
  },
  "devDependencies": {
    "tsup": "^8.0.0",
    "typescript": "^5.9.3"
  },
  "keywords": [
    "markdown",
    "parser",
    "incremental",
    "streaming",
    "ai",
    "chatgpt",
    "llm",
    "mdast",
    "high-performance",
    "typewriter",
    "micromark",
    "marked"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/kingshuaishuai/incremark.git",
    "directory": "packages/core"
  },
  "homepage": "https://www.incremark.com/",
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run -- --coverage",
    "benchmark": "npx tsx src/benchmark/run.ts"
  }
}