{
  "name": "remark-github-alerts",
  "type": "module",
  "version": "0.1.1",
  "description": "Support GitHub-style alerts for remark",
  "author": "Stephen Zhou <hi@hyoban.cc>",
  "license": "MIT",
  "homepage": "https://github.com/hyoban/remark-github-alerts#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/hyoban/remark-github-alerts"
  },
  "bugs": "https://github.com/hyoban/remark-github-alerts/issues",
  "keywords": [
    "remark"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./styles/*": "./styles/*"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*",
        "./dist/index.d.ts"
      ]
    }
  },
  "files": [
    "dist",
    "styles"
  ],
  "peerDependencies": {
    "@types/mdast": "^4.0.0",
    "unified": "^11.0.0"
  },
  "dependencies": {
    "unist-util-visit": "^5.0.0"
  },
  "devDependencies": {
    "@antfu/ni": "^24.3.0",
    "@types/node": "^22.13.10",
    "dedent": "^1.5.3",
    "eslint": "^9.22.0",
    "eslint-config-hyoban": "^4.0.2",
    "esno": "^4.8.0",
    "lint-staged": "^15.5.0",
    "pnpm": "^10.6.5",
    "rehype-format": "^5.0.1",
    "rehype-raw": "^7.0.0",
    "rehype-stringify": "^10.0.1",
    "release-it": "^18.1.2",
    "release-it-pnpm": "^4.6.4",
    "remark-mdc": "^3.5.3",
    "remark-parse": "^11.0.0",
    "remark-rehype": "^11.1.1",
    "rimraf": "^6.0.1",
    "simple-git-hooks": "^2.12.1",
    "typescript": "^5.8.2",
    "unbuild": "^3.5.0",
    "vite": "^6.2.2",
    "vitest": "^3.0.9"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "lint": "eslint .",
    "start": "esno src/index.ts",
    "test": "vitest",
    "test:run": "vitest run",
    "typecheck": "tsc --noEmit"
  }
}