@tiptap/y-tiptap 1.0.0 → 2.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/lib.d.ts +8 -4
- package/dist/src/plugins/cursor-plugin.d.ts +6 -6
- package/dist/src/plugins/sync-plugin.d.ts +31 -6
- package/dist/src/utils.d.ts +1 -0
- package/dist/y-tiptap.cjs +270 -241
- package/dist/y-tiptap.cjs.map +1 -1
- package/dist/y-tiptap.js +264 -237
- package/dist/y-tiptap.js.map +1 -1
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/y-tiptap",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.1",
|
|
4
4
|
"description": "Tiptap prosemirror bindings for Yjs",
|
|
5
5
|
"main": "./dist/y-tiptap.cjs",
|
|
6
6
|
"module": "./src/y-tiptap.js",
|
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
"watch": "rollup -wc",
|
|
16
16
|
"debug": "concurrently '0serve -o test.html' 'npm run watch'",
|
|
17
17
|
"preversion": "npm run lint && npm run dist && npm run test",
|
|
18
|
-
"start": "concurrently '0serve -o demo/prosemirror.html' 'npm run watch'"
|
|
18
|
+
"start": "concurrently '0serve -o demo/prosemirror.html' 'npm run watch'",
|
|
19
|
+
"publish": "npm run dist && npm publish --access public",
|
|
20
|
+
"publish:next": "npm run dist && npm publish --access public --tag next"
|
|
19
21
|
},
|
|
20
22
|
"exports": {
|
|
21
23
|
".": {
|
|
@@ -44,10 +46,10 @@
|
|
|
44
46
|
]
|
|
45
47
|
},
|
|
46
48
|
"dependencies": {
|
|
47
|
-
"lib0": "^0.2.
|
|
49
|
+
"lib0": "^0.2.100"
|
|
48
50
|
},
|
|
49
51
|
"peerDependencies": {
|
|
50
|
-
"@tiptap/pm": "^
|
|
52
|
+
"@tiptap/pm": "^3.0.0-beta.1",
|
|
51
53
|
"y-protocols": "^1.0.1",
|
|
52
54
|
"yjs": "^13.5.38"
|
|
53
55
|
},
|
|
@@ -58,7 +60,7 @@
|
|
|
58
60
|
"http-server": "^0.12.3",
|
|
59
61
|
"jsdom": "^15.1.1",
|
|
60
62
|
"prosemirror-example-setup": "^1.2.1",
|
|
61
|
-
"@tiptap/pm": "^
|
|
63
|
+
"@tiptap/pm": "^3.0.0-beta.1",
|
|
62
64
|
"rollup": "^2.59.0",
|
|
63
65
|
"standard": "^17.0.0",
|
|
64
66
|
"typescript": "^5.4.5",
|