{
  "name": "@markwhen/parser",
  "version": "1.0.1",
  "description": "Markwhen parser",
  "type": "module",
  "main": "cjs/index.js",
  "exports": {
    "require": "./cjs/index.js",
    "import": "./lib/index.js"
  },
  "scripts": {
    "test": "jest",
    "test:verbose": "jest --verbose false --silent false",
    "test:profile": "node --inspect-brk ./node_modules/jest/bin/jest.js",
    "build": "tsc && vite build && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
    "prepublish": "tsc && jest",
    "watch": "tsc-watch --onSuccess \"yalc push --update\"",
    "bump": "node scripts/bumper.js patch",
    "bump:major": "node scripts/bumper.js major",
    "bump:minor": "node scripts/bumper.js minor",
    "bump:patch": "node scripts/bumper.js patch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mark-when/parser.git"
  },
  "keywords": [
    "markwhen",
    "parser",
    "timeline"
  ],
  "author": "Rob Koch",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mark-when/parser/issues"
  },
  "homepage": "https://github.com/mark-when/parser#readme",
  "dependencies": {
    "@codemirror/state": "^6.5.2",
    "@markwhen/rrule": "^2.8.2",
    "ical.js": "^2.1.0",
    "lru-cache": "^11.2.2",
    "luxon": "^3.7.2",
    "yaml": "^2.8.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/luxon": "^3.7.1",
    "@types/node": "^24.10.4",
    "jest": "^29.7.0",
    "ts-jest": "^29.4.4",
    "tsc-watch": "^7.1.1",
    "typescript": "^5.8.3",
    "vite": "^6.3.5",
    "vite-plugin-dts": "^3.9.1"
  },
  "files": [
    "lib/**/*",
    "cjs/**/*"
  ]
}