{
  "name": "jotai-history-global",
  "version": "0.0.1",
  "description": "Lightweight global undo/redo extension for Jotai. / 为 Jotai 提供全局撤销、重做功能的轻量扩展。",
  "main": "./lib/index.js",
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "clean": "rm -rf ./lib/",
    "cm": "cz",
    "lint": "eslint ./src/ --fix",
    "prepare": "husky install",
    "semantic-release": "semantic-release",
    "test:watch": "jest --watch",
    "test": "jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/XiaoXianThis/jotai-history-global.git"
  },
  "keywords": [
    "react",
    "history",
    "undo",
    "redo",
    "state",
    "rewind",
    "jotai",
    "hooks"
  ],
  "author": "XiaoXianThis",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/XiaoXianThis/jotai-history-global/issues"
  },
  "homepage": "https://github.com/XiaoXianThis/jotai-history-global#readme",
  "peerDependencies": {
    "@types/react": ">=17.0.0",
    "jotai": ">=2.0.0",
    "react": ">=17.0.0"
  },
  "devDependencies": {
    "@types/react": "^19.1.8",
    "husky": "^9.1.7",
    "jotai": "^2.12.5",
    "react": "^19.1.0",
    "typescript": "^5.8.3"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "type": "build",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "build",
                "section": "Dependencies and Other Build Updates",
                "hidden": false
              }
            ]
          }
        }
      ],
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  }
}
