This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
forked from yjs/y-prosemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
{
"name": "@getoutline/y-prosemirror",
"version": "1.0.16",
"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": {
"dist": "rm -rf dist && rollup -c && tsc",
"test": "npm run lint && rollup -c && node dist/test.cjs",
"lint": "standard && tsc",
"watch": "rollup -wc",
"debug": "concurrently 'http-server -o test.html' 'npm run watch'",
"preversion": "npm run lint && npm run dist && npm run test",
"start": "concurrently 'http-server -o demo/prosemirror.html' 'npm run watch'"
},
"exports": {
".": {
"import": "./src/y-prosemirror.js",
"require": "./dist/y-prosemirror.cjs"
}
},
"files": [
"dist/*",
"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": {
"yjs": "^13.3.2",
"y-protocols": "^1.0.1",
"prosemirror-model": "^1.7.1",
"prosemirror-state": "^1.2.3",
"prosemirror-view": "^1.9.10"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/prosemirror-state": "^1.2.8",
"concurrently": "^4.1.0",
"http-server": "^0.12.3",
"jsdom": "^15.1.1",
"prosemirror-example-setup": "^1.1.2",
"prosemirror-model": "^1.15.0",
"prosemirror-schema-basic": "^1.1.2",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.22.0",
"rollup": "^2.59.0",
"standard": "^12.0.1",
"typescript": "^3.9.10",
"y-protocols": "^1.0.5",
"y-webrtc": "^10.2.0",
"yjs": "^13.5.20"
}
}