{
  "name": "undoit",
  "version": "1.1.1",
  "description": "Simple undo, redo system for JavaScript/TypeScript.",
  "main": "dist/cjs/index.cjs",
  "module": "dist/esm/index.mjs",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.mjs",
      "require": "./dist/cjs/index.cjs"
    }
  },
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "test": "jest",
    "build": "node build/index.js & tsc"
  },
  "keywords": [
    "undo",
    "redo",
    "state",
    "history",
    "command"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/izure1/undoit.git"
  },
  "author": "izure1 <admin@izure.org>",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "esbuild": "^0.24.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5"
  }
}
