{
  "name": "yjs",
  "version": "13.0.2",
  "description": "Shared Editing Library",
  "main": "./dist/yjs.cjs",
  "module": "./src/index.js",
  "types": "./dist/src/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "test": "npm run dist && node ./dist/tests.cjs --repitition-time 50",
    "test-extensive": "npm run lint && npm run dist && node ./dist/tests.cjs --production --repitition-time 10000",
    "dist": "rm -rf dist && rollup -c && tsc",
    "watch": "rollup -wc",
    "lint": "markdownlint README.md && standard && tsc",
    "docs": "rm -rf docs; jsdoc --configure ./.jsdoc.json --verbose --readme ./README.md --package ./package.json || true",
    "serve-docs": "npm run docs && http-server ./docs/",
    "preversion": "npm run lint && PRODUCTION=1 npm run dist && npm run docs && node ./dist/tests.cjs --repitition-time 1000",
    "debug": "concurrently 'http-server -o test.html' 'npm run watch'",
    "trace-deopt": "clear && rollup -c  && node --trace-deopt dist/test.cjs",
    "trace-opt": "clear && rollup -c  && node --trace-opt dist/test.cjs"
  },
  "files": [
    "dist/*",
    "src/*",
    "tests/*",
    "docs/*"
  ],
  "dictionaries": {
    "doc": "docs",
    "test": "tests"
  },
  "standard": {
    "ignore": [
      "/dist",
      "/node_modules",
      "/docs"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/yjs/yjs.git"
  },
  "keywords": [
    "Yjs",
    "CRDT",
    "offline",
    "shared editing",
    "concurrency",
    "collaboration"
  ],
  "author": "Kevin Jahns",
  "email": "kevin.jahns@protonmail.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/yjs/yjs/issues"
  },
  "homepage": "https://yjs.dev",
  "dependencies": {
    "lib0": "^0.2.12"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^11.0.1",
    "@rollup/plugin-node-resolve": "^7.0.0",
    "concurrently": "^3.6.1",
    "http-server": "^0.12.1",
    "jsdoc": "^3.6.3",
    "markdownlint-cli": "^0.19.0",
    "rollup": "^1.30.0",
    "rollup-cli": "^1.0.9",
    "standard": "^14.0.0",
    "tui-jsdoc-template": "^1.2.2",
    "typescript": "^3.7.5",
    "y-protocols": "^0.2.0"
  }
}