@liveblocks/node-prosemirror
Version:
A server-side utility that lets you modify prosemirror and tiptap documents hosted in Liveblocks.
81 lines (80 loc) • 2.03 kB
JSON
{
"name": "@liveblocks/node-prosemirror",
"version": "3.4.0",
"description": "A server-side utility that lets you modify prosemirror and tiptap documents hosted in Liveblocks.",
"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": "tsd -f test-d/index.test-d.ts",
"test:watch": "NODE_OPTIONS=\"--no-deprecation\" vitest"
},
"dependencies": {
"@liveblocks/core": "3.4.0",
"@liveblocks/node": "3.4.0",
"yjs": "^13.6.20"
},
"peerDependencies": {
"@tiptap/core": "^2.9.1",
"@tiptap/pm": "^2.9.1",
"@tiptap/react": "^2.9.1",
"@tiptap/starter-kit": "^2.9.1",
"prosemirror-markdown": "^1.13.1",
"y-prosemirror": "^1.2.12",
"yjs": "^13.6.20"
},
"devDependencies": {
"@liveblocks/eslint-config": "*",
"@liveblocks/vitest-config": "*",
"msw": "^2.10.4"
},
"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"
]
}