{
  "name": "@arcmantle/chronicle",
  "version": "1.0.5",
  "description": "A library for managing changes over time with undo/redo functionality",
  "repository": {
    "type": "git",
    "url": "https://github.com/arcmantle/chronicle.git"
  },
  "license": "Apache-2.0",
  "author": "Kristoffer Roen-Lie",
  "sideEffects": false,
  "type": "module",
  "exports": {
    "./*": "./dist/*.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "src",
    "package.json",
    "README.md"
  ],
  "devDependencies": {
    "@arcmantle/tsconfig": "^1.0.9",
    "@types/node": "^25.0.3",
    "rimraf": "^6.1.2",
    "typedoc": "^0.28.15",
    "typedoc-plugin-markdown": "^4.9.0",
    "typescript": "^5.9.3",
    "vitepress": "^1.6.4",
    "vitepress-mermaid-renderer": "^1.1.7",
    "vitest": "^4.0.16",
    "vue": "^3.5.26"
  },
  "scripts": {
    "bench": "vitest bench --run",
    "build": "rimraf dist && tsc --project ./src/tsconfig.json",
    "docs:build": "typedoc --options docs/typedoc.json && vitepress build docs",
    "docs:dev": "vitepress dev docs",
    "docs:preview": "vitepress preview docs",
    "docs:typedoc": "typedoc --options docs/typedoc.json",
    "test": "vitest run"
  }
}