@vizel/core 0.0.1-alpha.1 → 0.0.1-alpha.3
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/LICENSE +21 -0
- package/dist/index.d.ts +13 -13
- package/dist/index.js +141 -141
- package/dist/index10.js +70 -110
- package/dist/index11.js +135 -168
- package/dist/index12.js +83 -74
- package/dist/index13.js +13 -134
- package/dist/index14.js +13 -146
- package/dist/index15.js +303 -15
- package/dist/index16.js +69 -14
- package/dist/index17.js +26 -295
- package/dist/index18.js +2 -2
- package/dist/index19.js +355 -24
- package/dist/index20.js +25 -264
- package/dist/index21.js +85 -68
- package/dist/index22.js +97 -353
- package/dist/index23.js +66 -84
- package/dist/index24.js +12 -36
- package/dist/index25.js +53 -92
- package/dist/index26.js +132 -96
- package/dist/index27.js +59 -126
- package/dist/index28.js +37 -53
- package/dist/index29.js +19 -62
- package/dist/index3.js +165 -60
- package/dist/index30.js +9 -37
- package/dist/index31.js +143 -19
- package/dist/index32.js +264 -11
- package/dist/index33.js +92 -9
- package/dist/index34.js +63 -16
- package/dist/index35.js +4 -58
- package/dist/index36.js +123 -15
- package/dist/index37.js +305 -42
- package/dist/index38.js +487 -4
- package/dist/index39.js +37 -112
- package/dist/index4.js +10 -86
- package/dist/index40.js +653 -301
- package/dist/index41.js +4 -487
- package/dist/index42.js +4 -48
- package/dist/index43.js +206 -642
- package/dist/index44.js +82 -4
- package/dist/index45.js +17 -4
- package/dist/index46.js +57 -237
- package/dist/index47.js +15 -82
- package/dist/index48.js +190 -274
- package/dist/index49.js +281 -1497
- package/dist/index5.js +132 -10
- package/dist/index50.js +1502 -5
- package/dist/index51.js +5 -1561
- package/dist/index52.js +1551 -192
- package/dist/index53.js +1 -1
- package/dist/index54.js +84 -21
- package/dist/index55.js +246 -10
- package/dist/index56.js +3 -7
- package/dist/index57.js +1231 -7
- package/dist/index58.js +731 -11
- package/dist/index59.js +21 -19
- package/dist/index6.js +48 -131
- package/dist/index60.js +10 -25
- package/dist/index61.js +6 -83
- package/dist/index62.js +7 -245
- package/dist/index63.js +11 -1229
- package/dist/index64.js +17 -732
- package/dist/index65.js +25 -3
- package/dist/index66.js +53 -1059
- package/dist/index67.js +1059 -53
- package/dist/index69.js +90 -3
- package/dist/index7.js +228 -409
- package/dist/index70.js +3 -90
- package/dist/index8.js +111 -45
- package/dist/index9.js +409 -228
- package/package.json +54 -80
package/package.json
CHANGED
|
@@ -1,101 +1,68 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizel/core",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
4
|
-
"
|
|
5
|
-
"keywords": [
|
|
6
|
-
"tiptap",
|
|
7
|
-
"editor",
|
|
8
|
-
"markdown",
|
|
9
|
-
"wysiwyg",
|
|
10
|
-
"rich-text",
|
|
11
|
-
"block-editor",
|
|
12
|
-
"prosemirror"
|
|
13
|
-
],
|
|
14
|
-
"license": "MIT",
|
|
15
|
-
"author": "Seiji Kohara",
|
|
3
|
+
"version": "0.0.1-alpha.3",
|
|
4
|
+
"type": "module",
|
|
16
5
|
"repository": {
|
|
17
6
|
"type": "git",
|
|
18
|
-
"url": "
|
|
7
|
+
"url": "https://github.com/seijikohara/vizel",
|
|
19
8
|
"directory": "packages/core"
|
|
20
9
|
},
|
|
21
|
-
"homepage": "https://github.com/seijikohara/vizel",
|
|
22
|
-
"bugs": "https://github.com/seijikohara/vizel/issues",
|
|
23
|
-
"type": "module",
|
|
24
|
-
"sideEffects": [
|
|
25
|
-
"*.css"
|
|
26
|
-
],
|
|
27
|
-
"engines": {
|
|
28
|
-
"node": ">=18"
|
|
29
|
-
},
|
|
30
10
|
"main": "./dist/index.js",
|
|
31
|
-
"module": "./dist/index.js",
|
|
32
11
|
"types": "./dist/index.d.ts",
|
|
33
12
|
"exports": {
|
|
34
13
|
".": {
|
|
35
14
|
"types": "./dist/index.d.ts",
|
|
36
|
-
"import": "./dist/index.js"
|
|
37
|
-
"default": "./dist/index.js"
|
|
15
|
+
"import": "./dist/index.js"
|
|
38
16
|
},
|
|
39
17
|
"./styles.css": "./dist/styles.css",
|
|
40
|
-
"./components.css": "./dist/components.css"
|
|
41
|
-
"./package.json": "./package.json"
|
|
42
|
-
},
|
|
43
|
-
"publishConfig": {
|
|
44
|
-
"access": "public"
|
|
18
|
+
"./components.css": "./dist/components.css"
|
|
45
19
|
},
|
|
46
20
|
"files": [
|
|
47
21
|
"dist"
|
|
48
22
|
],
|
|
49
|
-
"scripts": {
|
|
50
|
-
"build": "vite build && npm run build:css",
|
|
51
|
-
"build:css": "npm run build:css:styles && npm run build:css:components",
|
|
52
|
-
"build:css:styles": "sass --load-path=src/styles --load-path=node_modules src/styles/index.scss dist/styles.css --style=compressed",
|
|
53
|
-
"build:css:components": "sass --load-path=src/styles --load-path=node_modules src/styles/components.scss dist/components.css --style=compressed",
|
|
54
|
-
"typecheck": "tsc --noEmit"
|
|
55
|
-
},
|
|
56
23
|
"dependencies": {
|
|
57
|
-
"@hpcc-js/wasm-graphviz": "^1.
|
|
58
|
-
"@iconify-json/lucide": "^1.2.
|
|
24
|
+
"@hpcc-js/wasm-graphviz": "^1.20.0",
|
|
25
|
+
"@iconify-json/lucide": "^1.2.86",
|
|
59
26
|
"@iconify/utils": "^3.1.0",
|
|
60
|
-
"@tiptap/core": "^3.
|
|
61
|
-
"@tiptap/extension-blockquote": "^3.
|
|
62
|
-
"@tiptap/extension-bold": "^3.
|
|
63
|
-
"@tiptap/extension-bubble-menu": "^3.
|
|
64
|
-
"@tiptap/extension-bullet-list": "^3.
|
|
65
|
-
"@tiptap/extension-character-count": "^3.
|
|
66
|
-
"@tiptap/extension-code": "^3.
|
|
67
|
-
"@tiptap/extension-code-block": "^3.
|
|
68
|
-
"@tiptap/extension-code-block-lowlight": "^3.
|
|
69
|
-
"@tiptap/extension-color": "^3.
|
|
70
|
-
"@tiptap/extension-details": "^3.
|
|
71
|
-
"@tiptap/extension-document": "^3.
|
|
72
|
-
"@tiptap/extension-drag-handle": "^3.
|
|
73
|
-
"@tiptap/extension-dropcursor": "^3.
|
|
74
|
-
"@tiptap/extension-file-handler": "^3.
|
|
75
|
-
"@tiptap/extension-gapcursor": "^3.
|
|
76
|
-
"@tiptap/extension-hard-break": "^3.
|
|
77
|
-
"@tiptap/extension-heading": "^3.
|
|
78
|
-
"@tiptap/extension-highlight": "^3.
|
|
79
|
-
"@tiptap/extension-history": "^3.
|
|
80
|
-
"@tiptap/extension-horizontal-rule": "^3.
|
|
81
|
-
"@tiptap/extension-image": "^3.
|
|
82
|
-
"@tiptap/extension-italic": "^3.
|
|
83
|
-
"@tiptap/extension-link": "^3.
|
|
84
|
-
"@tiptap/extension-list-item": "^3.
|
|
85
|
-
"@tiptap/extension-list-keymap": "^3.
|
|
86
|
-
"@tiptap/extension-ordered-list": "^3.
|
|
87
|
-
"@tiptap/extension-paragraph": "^3.
|
|
88
|
-
"@tiptap/extension-placeholder": "^3.
|
|
89
|
-
"@tiptap/extension-strike": "^3.
|
|
90
|
-
"@tiptap/extension-table": "^3.
|
|
91
|
-
"@tiptap/extension-task-item": "^3.
|
|
92
|
-
"@tiptap/extension-task-list": "^3.
|
|
93
|
-
"@tiptap/extension-text": "^3.
|
|
94
|
-
"@tiptap/extension-text-style": "^3.
|
|
95
|
-
"@tiptap/extension-underline": "^3.
|
|
96
|
-
"@tiptap/markdown": "^3.
|
|
97
|
-
"@tiptap/pm": "^3.
|
|
98
|
-
"@tiptap/suggestion": "^3.
|
|
27
|
+
"@tiptap/core": "^3.16.0",
|
|
28
|
+
"@tiptap/extension-blockquote": "^3.16.0",
|
|
29
|
+
"@tiptap/extension-bold": "^3.16.0",
|
|
30
|
+
"@tiptap/extension-bubble-menu": "^3.16.0",
|
|
31
|
+
"@tiptap/extension-bullet-list": "^3.16.0",
|
|
32
|
+
"@tiptap/extension-character-count": "^3.16.0",
|
|
33
|
+
"@tiptap/extension-code": "^3.16.0",
|
|
34
|
+
"@tiptap/extension-code-block": "^3.16.0",
|
|
35
|
+
"@tiptap/extension-code-block-lowlight": "^3.16.0",
|
|
36
|
+
"@tiptap/extension-color": "^3.16.0",
|
|
37
|
+
"@tiptap/extension-details": "^3.16.0",
|
|
38
|
+
"@tiptap/extension-document": "^3.16.0",
|
|
39
|
+
"@tiptap/extension-drag-handle": "^3.16.0",
|
|
40
|
+
"@tiptap/extension-dropcursor": "^3.16.0",
|
|
41
|
+
"@tiptap/extension-file-handler": "^3.16.0",
|
|
42
|
+
"@tiptap/extension-gapcursor": "^3.16.0",
|
|
43
|
+
"@tiptap/extension-hard-break": "^3.16.0",
|
|
44
|
+
"@tiptap/extension-heading": "^3.16.0",
|
|
45
|
+
"@tiptap/extension-highlight": "^3.16.0",
|
|
46
|
+
"@tiptap/extension-history": "^3.16.0",
|
|
47
|
+
"@tiptap/extension-horizontal-rule": "^3.16.0",
|
|
48
|
+
"@tiptap/extension-image": "^3.16.0",
|
|
49
|
+
"@tiptap/extension-italic": "^3.16.0",
|
|
50
|
+
"@tiptap/extension-link": "^3.16.0",
|
|
51
|
+
"@tiptap/extension-list-item": "^3.16.0",
|
|
52
|
+
"@tiptap/extension-list-keymap": "^3.16.0",
|
|
53
|
+
"@tiptap/extension-ordered-list": "^3.16.0",
|
|
54
|
+
"@tiptap/extension-paragraph": "^3.16.0",
|
|
55
|
+
"@tiptap/extension-placeholder": "^3.16.0",
|
|
56
|
+
"@tiptap/extension-strike": "^3.16.0",
|
|
57
|
+
"@tiptap/extension-table": "^3.16.0",
|
|
58
|
+
"@tiptap/extension-task-item": "^3.16.0",
|
|
59
|
+
"@tiptap/extension-task-list": "^3.16.0",
|
|
60
|
+
"@tiptap/extension-text": "^3.16.0",
|
|
61
|
+
"@tiptap/extension-text-style": "^3.16.0",
|
|
62
|
+
"@tiptap/extension-underline": "^3.16.0",
|
|
63
|
+
"@tiptap/markdown": "^3.16.0",
|
|
64
|
+
"@tiptap/pm": "^3.16.0",
|
|
65
|
+
"@tiptap/suggestion": "^3.16.0",
|
|
99
66
|
"fuse.js": "^7.1.0",
|
|
100
67
|
"highlight.js": "^11.11.1",
|
|
101
68
|
"katex": "^0.16.27",
|
|
@@ -105,5 +72,12 @@
|
|
|
105
72
|
"devDependencies": {
|
|
106
73
|
"vite": "^7",
|
|
107
74
|
"vite-plugin-dts": "^4"
|
|
75
|
+
},
|
|
76
|
+
"scripts": {
|
|
77
|
+
"build": "vite build && npm run build:css",
|
|
78
|
+
"build:css": "npm run build:css:styles && npm run build:css:components",
|
|
79
|
+
"build:css:styles": "sass --load-path=src/styles --load-path=node_modules src/styles/index.scss dist/styles.css --style=compressed",
|
|
80
|
+
"build:css:components": "sass --load-path=src/styles --load-path=node_modules src/styles/components.scss dist/components.css --style=compressed",
|
|
81
|
+
"typecheck": "tsc --noEmit"
|
|
108
82
|
}
|
|
109
|
-
}
|
|
83
|
+
}
|