-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
34 lines (34 loc) · 1 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
{
"name": "use-prosemirror",
"version": "1.3.0",
"description": "ProseMirror for React",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/dminkovsky/use-prosemirror",
"author": "Dmitry Minkovsky",
"license": "MIT",
"scripts": {
"clean": "rimraf dist/",
"build": "yarn run clean && tsc",
"prepublishOnly": "yarn run build"
},
"peerDependencies": {
"prosemirror-model": "^1.11.0",
"prosemirror-state": "^1.3.3",
"prosemirror-view": "^1.15.5",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/prosemirror-model": "^1.7.2",
"@types/prosemirror-state": "^1.2.5",
"@types/prosemirror-view": "^1.15.1",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
}
}