@liveblocks/node
Version:
A server-side utility that lets you set up a Liveblocks authentication endpoint. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.
75 lines (74 loc) • 1.96 kB
JSON
{
"name": "@liveblocks/node",
"version": "3.11.0",
"description": "A server-side utility that lets you set up a Liveblocks authentication endpoint. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
"license": "Apache-2.0",
"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"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"format": "(eslint --fix src/ || true) && prettier --write src/",
"lint": "eslint src/",
"lint:package": "publint --strict && attw --pack",
"test": "NODE_OPTIONS=\"--no-deprecation\" vitest run",
"test:types": "ls test-d/* | xargs -n1 tsd --files",
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
},
"dependencies": {
"@liveblocks/core": "3.11.0",
"@stablelib/base64": "^1.0.1",
"fast-sha256": "^1.3.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@liveblocks/eslint-config": "*",
"@liveblocks/vitest-config": "*",
"@types/node-fetch": "^2.6.6",
"msw": "^2.10.4",
"svix": "^0.75.0"
},
"bugs": {
"url": "https://github.com/liveblocks/liveblocks/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liveblocks/liveblocks.git",
"directory": "packages/liveblocks-node"
},
"homepage": "https://liveblocks.io",
"keywords": [
"node",
"liveblocks",
"real-time",
"toolkit",
"multiplayer",
"websockets",
"collaboration",
"collaborative",
"presence",
"crdts",
"synchronize",
"rooms",
"documents",
"conflict resolution"
]
}