{
  "name": "@loro-dev/flock",
  "version": "4.5.1",
  "description": "TypeScript bindings for the Flock CRDT with mergeable export/import utilities.",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.mjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "crdt",
    "replication",
    "collaboration",
    "loro",
    "flock"
  ],
  "author": "Loro contributors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/loro-dev/flock.git"
  },
  "bugs": {
    "url": "https://github.com/loro-dev/flock/issues"
  },
  "homepage": "https://github.com/loro-dev/flock/tree/main/ts",
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "vitest run",
    "test:no-moon": "vitest run --exclude test/interop-memcomparable.test.ts",
    "typecheck": "tsgo -p tsconfig.json --noEmit",
    "check": "pnpm build && pnpm typecheck && pnpm test:no-moon",
    "coverage": "vitest run --coverage"
  }
}