-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "tiptap-extension-image-upload",
"author": "coolswitch",
"description": "Image upload extension for tiptap, support image preview(tiptap的图片上传扩展,支持图片预览或占位)",
"version": "0.1.6",
"homepage": "https://github.com/coolswitch/tiptap-extension-image-upload#readme",
"keywords": [
"tiptap",
"tiptap extension",
"tiptap extension upload",
"tiptap extension img",
"tiptap extension image"
],
"license": "MIT",
"engines": {
"node": ">=10"
},
"main": "src/index.ts",
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"dependencies": {
"prosemirror-replaceattrs": "^1.0.0"
},
"devDependencies": {
"husky": "^7.0.4",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"prosemirror-state": "^1.2.0",
"prosemirror-model": "^1.8.0",
"prosemirror-view": "^1.14.0",
"@tiptap/core": "^2.0.0-beta.193",
"@tiptap/vue-3": "^2.0.0-beta.195"
},
"bugs": {
"url": "https://github.com/coolswitch/tiptap-extension-image-upload/issues"
},
"repository": "git+https://github.com/coolswitch/tiptap-extension-image-upload.git"
}