{
  "name": "markdown-it-github-alerts",
  "type": "module",
  "version": "1.0.1",
  "description": "Support GitHub-style alerts for markdown-it",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/markdown-it-github-alerts#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/markdown-it-github-alerts.git"
  },
  "bugs": "https://github.com/antfu/markdown-it-github-alerts/issues",
  "keywords": [
    "markdown-it",
    "github-favored-markdown"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./styles/*": "./styles/*"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "dist",
    "styles"
  ],
  "peerDependencies": {
    "markdown-it": ">= 13.0.0"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^7.0.1",
    "@antfu/ni": "^28.2.0",
    "@types/markdown-it": "^14.1.2",
    "@types/node": "^25.0.9",
    "bumpp": "^10.4.0",
    "eslint": "^9.39.2",
    "lint-staged": "^16.2.7",
    "markdown-it": "^14.1.0",
    "simple-git-hooks": "^2.13.1",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "unbuild": "^3.6.1",
    "vite": "^7.3.1",
    "vitest": "^4.0.17"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "lint": "eslint .",
    "release": "bumpp",
    "start": "tsx src/index.ts",
    "test": "vitest",
    "typecheck": "tsc --noEmit"
  }
}