{
  "name": "@tldraw/state",
  "description": "A tiny little drawing app (state).",
  "version": "2.4.4",
  "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"
  },
  "jest": {
    "preset": "config/jest/node",
    "setupFiles": [
      "raf/polyfill"
    ],
    "moduleNameMapper": {
      "^~(.*)": "<rootDir>/src/$1"
    },
    "transformIgnorePatterns": [
      "node_modules/(?!(nanoid)/)"
    ]
  },
  "devDependencies": {
    "@types/lodash": "^4.14.188",
    "lodash": "^4.17.21"
  },
  "typedoc": {
    "readmeFile": "none",
    "entryPoint": "./src/index.ts",
    "displayName": "@tldraw/state",
    "tsconfig": "./tsconfig.json"
  },
  "module": "dist-esm/index.mjs",
  "source": "src/index.ts",
  "exports": {
    ".": {
      "import": "./dist-esm/index.mjs",
      "require": "./dist-cjs/index.js"
    }
  }
}