-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 991 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
{
"name": "tiptap-extension-format-painter",
"author": "coolswitch",
"description": "FormatPainter extension for tiptap (tiptap 格式刷)",
"version": "0.1.0",
"homepage": "https://github.com/coolswitch/tiptap-extension-format-painter#readme",
"keywords": [
"tiptap",
"tiptap extension",
"tiptap extension format painter",
"tiptap extension painter",
"tiptap extension format"
],
"license": "MIT",
"engines": {
"node": ">=10"
},
"main": "src/index.ts",
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"dependencies": {
"@tiptap/core": "^2.0.0-beta.193"
},
"devDependencies": {
"husky": "^7.0.4",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"bugs": {
"url": "https://github.com/coolswitch/tiptap-extension-format-painter/issues"
},
"repository": "git+https://github.com/coolswitch/tiptap-extension-format-painter.git"
}