{
  "name": "markdown-it-git-graph",
  "version": "0.2.2",
  "description": "一个markdown-it插件,用于生成git提交图",
  "author": "whlit",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/whlit/markdown-it-git-graph.git"
  },
  "keywords": [
    "markdown-it",
    "markdown-it-plugin",
    "git-graph"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    },
    "./style.css": "./styles/index.css"
  },
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "files": [
    "dist",
    "styles"
  ],
  "devDependencies": {
    "@antfu/eslint-config": "^4.13.2",
    "@types/markdown-it": "^14.1.2",
    "@vitest/coverage-v8": "3.1.4",
    "eslint": "^9.27.0",
    "lint-staged": "^16.1.0",
    "markdown-it": "^14.1.0",
    "simple-git-hooks": "^2.13.0",
    "typescript": "^5.8.3",
    "vitepress": "^1.6.3",
    "vitest": "^3.1.4"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged && pnpm test"
  },
  "lint-staged": {
    "*": "pnpm lint"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "test": "vitest run",
    "test:u": "vitest run -u",
    "test:watch": "vitest",
    "coverage": "vitest run --coverage",
    "build": "pnpm build:cjs && pnpm build:esm",
    "build:esm": "tsc --project tsconfig.esm.json",
    "build:cjs": "tsc --project tsconfig.cjs.json",
    "lint": "eslint .",
    "lint:fix": "pnpm lint --fix",
    "dev": "vitepress dev"
  }
}