forked from syfxlin/tiptap-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@mlogclub/tiptap-starter-kit",
"type": "module",
"version": "1.0.1",
"description": "The non-official starter kit of the Tiptap editor contains common extensions.",
"author": "mlogclub<[email protected]>",
"license": "MIT",
"homepage": "https://github.com/mlogclub/tiptap-starter-kit",
"repository": {
"type": "git",
"url": "git+https://github.com/mlogclub/tiptap-starter-kit.git"
},
"bugs": {
"url": "https://github.com/mlogclub/tiptap-starter-kit/issues"
},
"keywords": [
"tiptap",
"tiptap-extension"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"style": "lessc ./src/styles.less ./src/styles.css --autoprefix=\"defaults\"",
"build": "pnpm style && bunchee",
"watch": "pnpm style && bunchee --watch"
},
"peerDependencies": {
"@tiptap/core": "^2.2.4",
"@tiptap/pm": "^2.2.4"
},
"dependencies": {
"@tiptap/extension-blockquote": "^2.4.0",
"@tiptap/extension-bold": "^2.4.0",
"@tiptap/extension-bullet-list": "^2.4.0",
"@tiptap/extension-code": "^2.4.0",
"@tiptap/extension-code-block-lowlight": "^2.4.0",
"@tiptap/extension-document": "^2.4.0",
"@tiptap/extension-dropcursor": "^2.4.0",
"@tiptap/extension-gapcursor": "^2.4.0",
"@tiptap/extension-hard-break": "^2.4.0",
"@tiptap/extension-heading": "^2.4.0",
"@tiptap/extension-highlight": "^2.4.0",
"@tiptap/extension-history": "^2.4.0",
"@tiptap/extension-horizontal-rule": "^2.4.0",
"@tiptap/extension-image": "^2.4.0",
"@tiptap/extension-italic": "^2.4.0",
"@tiptap/extension-link": "^2.4.0",
"@tiptap/extension-list-item": "^2.4.0",
"@tiptap/extension-ordered-list": "^2.4.0",
"@tiptap/extension-paragraph": "^2.4.0",
"@tiptap/extension-strike": "^2.4.0",
"@tiptap/extension-subscript": "^2.4.0",
"@tiptap/extension-superscript": "^2.4.0",
"@tiptap/extension-table": "^2.4.0",
"@tiptap/extension-table-cell": "^2.4.0",
"@tiptap/extension-table-header": "^2.4.0",
"@tiptap/extension-table-row": "^2.4.0",
"@tiptap/extension-task-item": "^2.4.0",
"@tiptap/extension-task-list": "^2.4.0",
"@tiptap/extension-text": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/suggestion": "^2.4.0",
"gemoji": "^8.1.0",
"katex": "^0.16.11",
"lowlight": "^3.1.0",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-to-markdown": "^2.1.0",
"mermaid": "^10.9.1",
"plantuml-encoder": "^1.4.0",
"plyr": "^3.7.8",
"remark-directive": "^3.0.0",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"smooth-scroll-into-view-if-needed": "^2.0.2",
"tippy.js": "^6.3.7",
"unified": "^11.0.5",
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@syfxlin/eslint-config": "^1.0.8",
"@tiptap/core": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@types/katex": "^0.16.7",
"@types/mdast": "^4.0.4",
"@types/plantuml-encoder": "^1.4.2",
"@types/unist": "^3.0.2",
"bunchee": "^5.2.2",
"eslint": "^9.6.0",
"eslint-plugin-format": "^0.1.2",
"less": "^4.2.0",
"less-plugin-autoprefix": "^2.0.0",
"typescript": "^5.5.3",
"vite": "^5.3.3"
}
}