{
  "name": "@inkdropapp/live-export",
  "version": "0.2.1",
  "description": "A library for programmatically exoprting notes to local filesystem from Inkdrop",
  "type": "module",
  "exports": {
    "import": "./lib/index.js",
    "require": "./lib/index.cjs"
  },
  "types": "lib/index.d.ts",
  "main": "lib/index.cjs",
  "module": "lib/index.js",
  "scripts": {
    "build": "rollup -c --bundleConfigAsCjs",
    "lint": "eslint src __tests__",
    "test": "NODE_OPTIONS=--experimental-vm-modules DEBUG=inkdrop:* jest --config jest.config.js --runInBand",
    "prepublishOnly": "npm run lint && npm run build"
  },
  "keywords": [
    "Inkdrop"
  ],
  "author": "Takuya Matsuyama <t@inkdrop.app>",
  "license": "MIT",
  "dependencies": {
    "ajv": "^8.12.0",
    "debug": "^4.3.4",
    "inkdrop-model": "^2.7.1",
    "js-yaml": "^4.1.0",
    "remark-frontmatter": "^4.0.1",
    "remark-parse": "^10.0.1",
    "remark-stringify": "^10.0.2",
    "unified": "^10.1.2",
    "unist-util-visit": "^4.1.2"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^15.0.2",
    "@rollup/plugin-typescript": "^11.1.0",
    "@types/jest": "^29.5.1",
    "@types/js-yaml": "^4.0.5",
    "@typescript-eslint/eslint-plugin": "^5.59.5",
    "@typescript-eslint/parser": "^5.59.5",
    "eslint": "^8.40.0",
    "eslint-config-prettier": "^8.8.0",
    "jest": "^29.5.0",
    "prettier": "^2.8.8",
    "rollup": "^3.21.6",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.4"
  },
  "files": [
    "lib"
  ],
  "engines": {
    "node": ">= 18"
  }
}
