-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
42 lines (42 loc) · 1008 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
39
40
41
42
{
"name": "prosemirror-menu",
"version": "1.2.4",
"description": "Simple menu elements 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"
},
"./style/menu.css": "./style/menu.css"
},
"sideEffects": ["./style/menu.css"],
"style": "style/menu.css",
"license": "MIT",
"maintainers": [
{
"name": "Marijn Haverbeke",
"email": "[email protected]",
"web": "http://marijnhaverbeke.nl"
}
],
"repository": {
"type": "git",
"url": "git://github.com/prosemirror/prosemirror-menu.git"
},
"dependencies": {
"crelt": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-commands": "^1.0.0",
"prosemirror-history": "^1.0.0"
},
"devDependencies": {
"@prosemirror/buildhelper": "^0.1.5"
},
"scripts": {
"prepare": "pm-buildhelper src/index.ts"
}
}