{
  "name": "@liveblocks/core",
  "version": "3.0.0",
  "description": "Private internals for Liveblocks. DO NOT import directly from this package!",
  "type": "module",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "module": "./dist/index.js",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist/**",
    "README.md"
  ],
  "keywords": [
    "liveblocks",
    "multiplayer",
    "live-cursors",
    "collaborative"
  ],
  "bugs": {
    "url": "https://github.com/liveblocks/liveblocks/issues"
  },
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup && node dist/index.js",
    "format": "(eslint --fix src/ || true) && prettier --write src/",
    "lint": "eslint src/",
    "lint:package": "publint --strict && attw --pack",
    "test": "jest --silent --verbose --color=always",
    "test:types": "ls test-d/* | xargs -n1 tsd --files",
    "test:watch": "jest --silent --verbose --color=always --watch",
    "test:e2e": "jest --silent --verbose --color=always --config=./jest.config.e2e.cjs",
    "test:deps": "depcruise src --exclude __tests__",
    "showdeps": "depcruise src --include-only '^src' --exclude='__tests__' --output-type dot | dot -T svg > /tmp/dependency-graph.svg && open /tmp/dependency-graph.svg",
    "showdeps:high-level": "depcruise src --include-only '^src' --exclude='(^src/index.ts|shallow.ts|__tests__)' --collapse='^src/(refs|lib|compat|types|crdts|protocol)' --output-type dot | dot -T svg > /tmp/dependency-graph.svg && open /tmp/dependency-graph.svg"
  },
  "license": "Apache-2.0",
  "devDependencies": {
    "@liveblocks/eslint-config": "*",
    "@liveblocks/jest-config": "*",
    "@liveblocks/query-parser": "^0.1.1",
    "@types/ws": "^8.5.10",
    "dotenv": "^16.4.5",
    "eslint-plugin-rulesdir": "^0.2.2",
    "msw": "^1.3.5",
    "ws": "^8.17.1"
  },
  "peerDependencies": {
    "@types/json-schema": "^7"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/liveblocks/liveblocks.git",
    "directory": "packages/liveblocks-core"
  },
  "sideEffects": false
}
