{
  "name": "@braindb/micromark-extension-wiki-link",
  "version": "0.1.0",
  "description": "Parse and render wiki-style links",
  "keywords": [
    "remark",
    "remark-plugin",
    "markdown",
    "gfm",
    "micromark",
    "micromark-plugin"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stereobooster/braindb.git",
    "directory": "packages/micromark-extension-wiki-link"
  },
  "contributors": [
    {
      "name": "Mark Hudnall",
      "email": "me@markhudnall.com",
      "url": "https://markhudnall.com"
    },
    "stereobooster"
  ],
  "license": "MIT",
  "type": "module",
  "sideEffects": false,
  "exports": {
    "types": "./dist/index.d.js",
    "default": "./dist/index.js"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "files": [
    "dist"
  ],
  "types": "./dist/index.d.js",
  "devDependencies": {
    "micromark": "^4.0.0",
    "vitest": "^1.6.0",
    "vite-tsconfig-paths": "^4.3.2"
  },
  "dependencies": {
    "micromark-util-types": "^2.0.0"
  },
  "scripts": {
    "test": "vitest",
    "build": "rm -rf dist && tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist"
  }
}