@vizel/core 0.0.1-alpha.6 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.css +1 -1
- package/dist/components.css.map +1 -1
- package/dist/index.d.ts +230 -15
- package/dist/index.js +78 -75
- package/dist/index10.js +1 -1
- package/dist/index11.js +4 -4
- package/dist/index14.js +1 -1
- package/dist/index15.js +134 -127
- package/dist/index17.js +2 -2
- package/dist/index18.js +1 -1
- package/dist/index19.js +86 -86
- package/dist/index20.js +2 -2
- package/dist/index21.js +2 -2
- package/dist/index22.js +16 -13
- package/dist/index24.js +164 -11
- package/dist/index25.js +12 -53
- package/dist/index26.js +49 -136
- package/dist/index27.js +132 -59
- package/dist/index28.js +66 -32
- package/dist/index29.js +35 -21
- package/dist/index3.js +91 -90
- package/dist/index30.js +23 -9
- package/dist/index31.js +9 -147
- package/dist/index32.js +138 -256
- package/dist/index33.js +258 -85
- package/dist/index34.js +91 -15
- package/dist/index35.js +63 -57
- package/dist/index36.js +4 -15
- package/dist/index37.js +115 -56
- package/dist/index38.js +327 -4
- package/dist/index39.js +11 -121
- package/dist/index4.js +1 -1
- package/dist/index40.js +481 -321
- package/dist/index41.js +42 -481
- package/dist/index42.js +683 -37
- package/dist/index43.js +4 -679
- package/dist/index44.js +4 -4
- package/dist/index45.js +238 -4
- package/dist/index46.js +54 -210
- package/dist/index47.js +16 -81
- package/dist/index48.js +57 -285
- package/dist/index49.js +14 -1501
- package/dist/index5.js +78 -68
- package/dist/index50.js +286 -5
- package/dist/index51.js +4 -4
- package/dist/index52.js +1408 -1467
- package/dist/index53.js +5 -723
- package/dist/index54.js +1112 -21
- package/dist/index55.js +722 -9
- package/dist/index56.js +83 -6
- package/dist/index57.js +245 -7
- package/dist/index58.js +3 -14
- package/dist/index59.js +1230 -17
- package/dist/index6.js +1 -1
- package/dist/index60.js +733 -24
- package/dist/index61.js +21 -84
- package/dist/index62.js +10 -246
- package/dist/index63.js +7 -3
- package/dist/index64.js +7 -1231
- package/dist/index65.js +11 -731
- package/dist/index66.js +17 -1059
- package/dist/index67.js +21 -51
- package/dist/index68.js +54 -3
- package/dist/index69.js +1061 -98
- package/dist/index7.js +108 -96
- package/dist/index70.js +98 -91
- package/dist/index71.js +93 -0
- package/dist/index72.js +6 -0
- package/dist/index8.js +1 -1
- package/dist/index9.js +75 -65
- package/dist/mathematics.css +1 -0
- package/dist/mathematics.css.map +1 -0
- package/dist/styles.css +1 -1
- package/dist/styles.css.map +1 -1
- package/package.json +90 -52
package/package.json
CHANGED
|
@@ -1,12 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizel/core",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/seijikohara/vizel",
|
|
8
8
|
"directory": "packages/core"
|
|
9
9
|
},
|
|
10
|
+
"description": "Framework-agnostic core for Vizel block-based Markdown editor built on Tiptap",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "Seiji Kohara",
|
|
13
|
+
"homepage": "https://seijikohara.github.io/vizel/",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/seijikohara/vizel/issues"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=18"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"vizel",
|
|
22
|
+
"tiptap",
|
|
23
|
+
"editor",
|
|
24
|
+
"markdown",
|
|
25
|
+
"wysiwyg",
|
|
26
|
+
"rich-text",
|
|
27
|
+
"block-editor",
|
|
28
|
+
"prosemirror"
|
|
29
|
+
],
|
|
10
30
|
"main": "./src/index.ts",
|
|
11
31
|
"types": "./src/index.ts",
|
|
12
32
|
"exports": {
|
|
@@ -15,7 +35,8 @@
|
|
|
15
35
|
"import": "./src/index.ts"
|
|
16
36
|
},
|
|
17
37
|
"./styles.css": "./src/styles/index.scss",
|
|
18
|
-
"./components.css": "./src/styles/components.scss"
|
|
38
|
+
"./components.css": "./src/styles/components.scss",
|
|
39
|
+
"./mathematics.css": "./src/styles/katex-entry.scss"
|
|
19
40
|
},
|
|
20
41
|
"publishConfig": {
|
|
21
42
|
"main": "./dist/index.js",
|
|
@@ -26,7 +47,8 @@
|
|
|
26
47
|
"import": "./dist/index.js"
|
|
27
48
|
},
|
|
28
49
|
"./styles.css": "./dist/styles.css",
|
|
29
|
-
"./components.css": "./dist/components.css"
|
|
50
|
+
"./components.css": "./dist/components.css",
|
|
51
|
+
"./mathematics.css": "./dist/mathematics.css"
|
|
30
52
|
}
|
|
31
53
|
},
|
|
32
54
|
"files": [
|
|
@@ -34,62 +56,78 @@
|
|
|
34
56
|
],
|
|
35
57
|
"scripts": {
|
|
36
58
|
"build": "vite build && npm run build:css",
|
|
37
|
-
"build:css": "npm run build:css:styles && npm run build:css:components",
|
|
59
|
+
"build:css": "npm run build:css:styles && npm run build:css:components && npm run build:css:mathematics",
|
|
38
60
|
"build:css:styles": "sass --load-path=src/styles --load-path=node_modules src/styles/index.scss dist/styles.css --style=compressed",
|
|
39
61
|
"build:css:components": "sass --load-path=src/styles --load-path=node_modules src/styles/components.scss dist/components.css --style=compressed",
|
|
62
|
+
"build:css:mathematics": "sass --load-path=src/styles --load-path=node_modules src/styles/katex-entry.scss dist/mathematics.css --style=compressed",
|
|
40
63
|
"typecheck": "tsc --noEmit"
|
|
41
64
|
},
|
|
42
65
|
"dependencies": {
|
|
43
|
-
"@
|
|
44
|
-
"@iconify-json/lucide": "^1.2.86",
|
|
66
|
+
"@iconify-json/lucide": "^1.2.87",
|
|
45
67
|
"@iconify/utils": "^3.1.0",
|
|
46
|
-
"@tiptap/core": "^3.
|
|
47
|
-
"@tiptap/extension-blockquote": "^3.
|
|
48
|
-
"@tiptap/extension-bold": "^3.
|
|
49
|
-
"@tiptap/extension-bubble-menu": "^3.
|
|
50
|
-
"@tiptap/extension-bullet-list": "^3.
|
|
51
|
-
"@tiptap/extension-character-count": "^3.
|
|
52
|
-
"@tiptap/extension-code": "^3.
|
|
53
|
-
"@tiptap/extension-code-block": "^3.
|
|
54
|
-
"@tiptap/extension-code-block-lowlight": "^3.
|
|
55
|
-
"@tiptap/extension-color": "^3.
|
|
56
|
-
"@tiptap/extension-details": "^3.
|
|
57
|
-
"@tiptap/extension-document": "^3.
|
|
58
|
-
"@tiptap/extension-drag-handle": "^3.
|
|
59
|
-
"@tiptap/extension-dropcursor": "^3.
|
|
60
|
-
"@tiptap/extension-file-handler": "^3.
|
|
61
|
-
"@tiptap/extension-gapcursor": "^3.
|
|
62
|
-
"@tiptap/extension-hard-break": "^3.
|
|
63
|
-
"@tiptap/extension-heading": "^3.
|
|
64
|
-
"@tiptap/extension-highlight": "^3.
|
|
65
|
-
"@tiptap/extension-history": "^3.
|
|
66
|
-
"@tiptap/extension-horizontal-rule": "^3.
|
|
67
|
-
"@tiptap/extension-image": "^3.
|
|
68
|
-
"@tiptap/extension-italic": "^3.
|
|
69
|
-
"@tiptap/extension-link": "^3.
|
|
70
|
-
"@tiptap/extension-list-item": "^3.
|
|
71
|
-
"@tiptap/extension-list-keymap": "^3.
|
|
72
|
-
"@tiptap/extension-ordered-list": "^3.
|
|
73
|
-
"@tiptap/extension-paragraph": "^3.
|
|
74
|
-
"@tiptap/extension-placeholder": "^3.
|
|
75
|
-
"@tiptap/extension-strike": "^3.
|
|
76
|
-
"@tiptap/extension-table": "^3.
|
|
77
|
-
"@tiptap/extension-task-item": "^3.
|
|
78
|
-
"@tiptap/extension-task-list": "^3.
|
|
79
|
-
"@tiptap/extension-text": "^3.
|
|
80
|
-
"@tiptap/extension-text-style": "^3.
|
|
81
|
-
"@tiptap/extension-underline": "^3.
|
|
82
|
-
"@tiptap/markdown": "^3.
|
|
83
|
-
"@tiptap/pm": "^3.
|
|
84
|
-
"@tiptap/suggestion": "^3.
|
|
85
|
-
"fuse.js": "^7.1.0"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
"
|
|
89
|
-
"
|
|
68
|
+
"@tiptap/core": "^3.18.0",
|
|
69
|
+
"@tiptap/extension-blockquote": "^3.18.0",
|
|
70
|
+
"@tiptap/extension-bold": "^3.18.0",
|
|
71
|
+
"@tiptap/extension-bubble-menu": "^3.18.0",
|
|
72
|
+
"@tiptap/extension-bullet-list": "^3.18.0",
|
|
73
|
+
"@tiptap/extension-character-count": "^3.18.0",
|
|
74
|
+
"@tiptap/extension-code": "^3.18.0",
|
|
75
|
+
"@tiptap/extension-code-block": "^3.18.0",
|
|
76
|
+
"@tiptap/extension-code-block-lowlight": "^3.18.0",
|
|
77
|
+
"@tiptap/extension-color": "^3.18.0",
|
|
78
|
+
"@tiptap/extension-details": "^3.18.0",
|
|
79
|
+
"@tiptap/extension-document": "^3.18.0",
|
|
80
|
+
"@tiptap/extension-drag-handle": "^3.18.0",
|
|
81
|
+
"@tiptap/extension-dropcursor": "^3.18.0",
|
|
82
|
+
"@tiptap/extension-file-handler": "^3.18.0",
|
|
83
|
+
"@tiptap/extension-gapcursor": "^3.18.0",
|
|
84
|
+
"@tiptap/extension-hard-break": "^3.18.0",
|
|
85
|
+
"@tiptap/extension-heading": "^3.18.0",
|
|
86
|
+
"@tiptap/extension-highlight": "^3.18.0",
|
|
87
|
+
"@tiptap/extension-history": "^3.18.0",
|
|
88
|
+
"@tiptap/extension-horizontal-rule": "^3.18.0",
|
|
89
|
+
"@tiptap/extension-image": "^3.18.0",
|
|
90
|
+
"@tiptap/extension-italic": "^3.18.0",
|
|
91
|
+
"@tiptap/extension-link": "^3.18.0",
|
|
92
|
+
"@tiptap/extension-list-item": "^3.18.0",
|
|
93
|
+
"@tiptap/extension-list-keymap": "^3.18.0",
|
|
94
|
+
"@tiptap/extension-ordered-list": "^3.18.0",
|
|
95
|
+
"@tiptap/extension-paragraph": "^3.18.0",
|
|
96
|
+
"@tiptap/extension-placeholder": "^3.18.0",
|
|
97
|
+
"@tiptap/extension-strike": "^3.18.0",
|
|
98
|
+
"@tiptap/extension-table": "^3.18.0",
|
|
99
|
+
"@tiptap/extension-task-item": "^3.18.0",
|
|
100
|
+
"@tiptap/extension-task-list": "^3.18.0",
|
|
101
|
+
"@tiptap/extension-text": "^3.18.0",
|
|
102
|
+
"@tiptap/extension-text-style": "^3.18.0",
|
|
103
|
+
"@tiptap/extension-underline": "^3.18.0",
|
|
104
|
+
"@tiptap/markdown": "^3.18.0",
|
|
105
|
+
"@tiptap/pm": "^3.18.0",
|
|
106
|
+
"@tiptap/suggestion": "^3.18.0",
|
|
107
|
+
"fuse.js": "^7.1.0"
|
|
108
|
+
},
|
|
109
|
+
"peerDependencies": {
|
|
110
|
+
"katex": "^0.16.0",
|
|
111
|
+
"lowlight": "^3.0.0",
|
|
112
|
+
"mermaid": "^11.0.0",
|
|
113
|
+
"@hpcc-js/wasm-graphviz": "^1.0.0"
|
|
114
|
+
},
|
|
115
|
+
"peerDependenciesMeta": {
|
|
116
|
+
"katex": {
|
|
117
|
+
"optional": true
|
|
118
|
+
},
|
|
119
|
+
"lowlight": {
|
|
120
|
+
"optional": true
|
|
121
|
+
},
|
|
122
|
+
"mermaid": {
|
|
123
|
+
"optional": true
|
|
124
|
+
},
|
|
125
|
+
"@hpcc-js/wasm-graphviz": {
|
|
126
|
+
"optional": true
|
|
127
|
+
}
|
|
90
128
|
},
|
|
91
129
|
"devDependencies": {
|
|
92
|
-
"vite": "^7",
|
|
93
|
-
"vite-plugin-dts": "^4"
|
|
130
|
+
"vite": "^7.3.1",
|
|
131
|
+
"vite-plugin-dts": "^4.5.4"
|
|
94
132
|
}
|
|
95
133
|
}
|