forked from ProseMirror/prosemirror-gapcursor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 884 Bytes
/
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
{
"name": "prosemirror-gapcursor",
"version": "1.1.5",
"description": "ProseMirror plugin for cursors at normally impossible-to-reach positions",
"main": "dist/index.js",
"module": "dist/index.es.js",
"style": "style/gapcursor.css",
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "[email protected]",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror-gapcursor.git"
},
"devDependencies": {
"rollup": "^2.26.3",
"@rollup/plugin-buble": "^0.21.3"
},
"dependencies": {
"prosemirror-keymap": "^1.0.0",
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-view": "^1.0.0"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -w -c",
"prepare": "npm run build"
}
}