{
  "name": "@tldraw/store",
  "description": "A tiny little drawing app (store).",
  "version": "2.4.6",
  "author": {
    "name": "tldraw Inc.",
    "email": "hello@tldraw.com"
  },
  "homepage": "https://tldraw.dev",
  "license": "SEE LICENSE IN LICENSE.md",
  "repository": {
    "type": "git",
    "url": "https://github.com/tldraw/tldraw"
  },
  "bugs": {
    "url": "https://github.com/tldraw/tldraw/issues"
  },
  "keywords": [
    "tldraw",
    "drawing",
    "app",
    "development",
    "whiteboard",
    "canvas",
    "infinite"
  ],
  "main": "dist-cjs/index.js",
  "files": [
    "dist-esm",
    "dist-cjs",
    "src"
  ],
  "scripts": {
    "test-ci": "lazy inherit",
    "test": "yarn run -T jest",
    "test-coverage": "lazy inherit",
    "build": "yarn run -T tsx ../../scripts/build-package.ts",
    "build-api": "yarn run -T tsx ../../scripts/build-api.ts",
    "prepack": "yarn run -T tsx ../../scripts/prepack.ts",
    "postpack": "../../scripts/postpack.sh",
    "pack-tarball": "yarn pack",
    "lint": "yarn run -T tsx ../../scripts/lint.ts"
  },
  "dependencies": {
    "@tldraw/state": "2.4.6",
    "@tldraw/utils": "2.4.6",
    "lodash.isequal": "^4.5.0",
    "nanoid": "4.0.2"
  },
  "peerDependencies": {
    "react": "^18"
  },
  "devDependencies": {
    "@peculiar/webcrypto": "^1.4.0",
    "@types/lodash.isequal": "^4.5.6",
    "lazyrepo": "0.0.0-alpha.27",
    "raf": "^3.4.1"
  },
  "jest": {
    "preset": "config/jest/node",
    "setupFiles": [
      "raf/polyfill"
    ],
    "moduleNameMapper": {
      "^~(.*)": "<rootDir>/src/$1"
    },
    "transformIgnorePatterns": [
      "node_modules/(?!(nanoid)/)"
    ]
  },
  "module": "dist-esm/index.mjs",
  "source": "src/index.ts",
  "exports": {
    ".": {
      "import": "./dist-esm/index.mjs",
      "require": "./dist-cjs/index.js"
    }
  }
}