forked from yjs/y-prosemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "y-prosemirror",
"version": "1.2.12",
"description": "Prosemirror bindings for Yjs",
"main": "./dist/y-prosemirror.cjs",
"module": "./src/y-prosemirror.js",
"type": "module",
"types": "./dist/src/y-prosemirror.d.ts",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"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-prosemirror.d.ts",
"import": "./src/y-prosemirror.js",
"require": "./dist/y-prosemirror.cjs"
}
},
"files": [
"dist/*",
"!dist/test.*",
"src/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-prosemirror.git"
},
"keywords": [
"Yjs"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"standard": {
"ignore": [
"/dist",
"/node_modules",
"/docs"
]
},
"bugs": {
"url": "https://github.com/yjs/y-prosemirror/issues"
},
"homepage": "https://github.com/yjs/y-prosemirror#readme",
"dependencies": {
"lib0": "^0.2.42"
},
"peerDependencies": {
"prosemirror-model": "^1.7.1",
"prosemirror-state": "^1.2.3",
"prosemirror-view": "^1.9.10",
"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",
"prosemirror-model": "^1.18.1",
"prosemirror-schema-basic": "^1.2.0",
"prosemirror-state": "^1.4.1",
"prosemirror-transform": "^1.6.0",
"prosemirror-view": "^1.26.2",
"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"
}
}