-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@tiptap/y-tiptap",
"version": "1.0.0",
"description": "Tiptap prosemirror bindings for Yjs",
"main": "./dist/y-tiptap.cjs",
"module": "./src/y-tiptap.js",
"type": "module",
"types": "./dist/src/y-tiptap.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"dist": "npm run clean && rollup -c && tsc",
"test": "npm run lint && rollup -c && node dist/test.cjs",
"lint": "standard && tsc",
"watch": "rollup -wc",
"debug": "concurrently '0serve -o test.html' 'npm run watch'",
"preversion": "npm run lint && npm run dist && npm run test",
"start": "concurrently '0serve -o demo/prosemirror.html' 'npm run watch'"
},
"exports": {
".": {
"types": "./dist/src/y-tiptap.d.ts",
"import": "./dist/y-tiptap.js",
"require": "./dist/y-tiptap.cjs"
}
},
"files": [
"dist/*",
"!dist/test.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ueberdosis/y-tiptap.git"
},
"keywords": [
"Yjs"
],
"license": "MIT",
"standard": {
"ignore": [
"/dist",
"/node_modules",
"/docs"
]
},
"dependencies": {
"lib0": "^0.2.42"
},
"peerDependencies": {
"@tiptap/pm": "^2.11.3",
"y-protocols": "^1.0.1",
"yjs": "^13.5.38"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"concurrently": "^4.1.0",
"http-server": "^0.12.3",
"jsdom": "^15.1.1",
"prosemirror-example-setup": "^1.2.1",
"@tiptap/pm": "^2.11.3",
"rollup": "^2.59.0",
"standard": "^17.0.0",
"typescript": "^5.4.5",
"y-protocols": "^1.0.5",
"y-webrtc": "^10.2.0",
"yjs": "^13.5.38"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
}
}