{
  "name": "rehype-remnote",
  "version": "0.4.1",
  "description": "Convert RemNote .rem JSON to rehype AST",
  "main": "server.js",
  "type": "module",
  "author": {
    "name": "OverflowCat",
    "email": "overflowcat@gmail.com"
  },
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "url": "https://github.com/OverflowCat/rehype-remnote"
  },
  "license": "MIT",
  "keywords": [
    "remnote",
    "rehype",
    "html"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./style/*": "./style/*"
  },
  "dependencies": {
    "hast-util-classnames": "^3.0.0",
    "hast-util-to-html": "^9.0.5",
    "hastscript": "^9.0.1",
    "rehype-parse": "^9.0.1",
    "rehype-stringify": "^10.0.1",
    "unified": "^11.0.5",
    "vfile": "^6.0.3"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@fastify/static": "^7.0.4",
    "@types/hast": "^3.0.4",
    "@types/node": "^22.13.10",
    "fastify": "^4.29.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.2"
  },
  "scripts": {
    "build": "tsc",
    "watch": "tsc -w",
    "dev": "node dist/demo",
    "pub": "tsc && npm publish"
  }
}