-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
38 lines (38 loc) · 916 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
36
37
38
{
"name": "prosemirror-dropcursor",
"version": "1.8.1",
"description": "Drop cursor plugin for ProseMirror",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"sideEffects": false,
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "[email protected]",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror-dropcursor.git"
},
"dependencies": {
"prosemirror-state": "^1.0.0",
"prosemirror-view": "^1.1.0",
"prosemirror-transform": "^1.1.0"
},
"devDependencies": {
"@prosemirror/buildhelper": "^0.1.5"
},
"scripts": {
"test": "pm-runtests",
"prepare": "pm-buildhelper src/dropcursor.ts"
}
}