@tecof/theme-editor 0.0.39 → 0.0.40
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/README.md +25 -25
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +1035 -1267
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1035 -1267
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1711 -394
- package/package.json +31 -9
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tecof/theme-editor",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "React theme editor library for Tecof projects",
|
|
3
|
+
"version": "0.0.40",
|
|
4
|
+
"description": "React theme editor and renderer library for Tecof projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
7
7
|
"tecof",
|
|
8
|
-
"
|
|
8
|
+
"wysiwyg",
|
|
9
9
|
"editor",
|
|
10
10
|
"cms",
|
|
11
11
|
"theme"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"url": "https://github.com/tecof/tecof-theme-editor/issues"
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/tecof/tecof-theme-editor#readme",
|
|
23
|
-
"main": "./dist/index.
|
|
23
|
+
"main": "./dist/index.js",
|
|
24
24
|
"module": "./dist/index.js",
|
|
25
25
|
"types": "./dist/index.d.ts",
|
|
26
26
|
"exports": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"import": "./dist/index.mjs",
|
|
30
30
|
"require": "./dist/index.js"
|
|
31
31
|
},
|
|
32
|
-
"./puck.css": "./dist/
|
|
32
|
+
"./puck.css": "./dist/styles.css",
|
|
33
33
|
"./styles.css": "./dist/styles.css",
|
|
34
34
|
"./dist/styles.css": "./dist/styles.css",
|
|
35
35
|
"./under-construction": {
|
|
@@ -56,19 +56,21 @@
|
|
|
56
56
|
"release": "changeset publish"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@puckeditor/core": "^0.x",
|
|
60
59
|
"react": "^18 || ^19",
|
|
61
60
|
"react-dom": "^18 || ^19"
|
|
62
61
|
},
|
|
63
62
|
"devDependencies": {
|
|
63
|
+
"@eslint/js": "^10.0.1",
|
|
64
64
|
"@monaco-editor/react": "^4.7.0",
|
|
65
|
-
"@puckeditor/core": "^0.21.2",
|
|
66
65
|
"@storybook/react-vite": "^8.0.0",
|
|
67
66
|
"@types/react": "^19.0.0",
|
|
68
67
|
"@types/react-dom": "^19.0.0",
|
|
69
68
|
"@vitejs/plugin-react": "^4.7.0",
|
|
70
69
|
"browser-image-compression": "^2.0.2",
|
|
70
|
+
"esbuild": "^0.28.1",
|
|
71
71
|
"eslint": "^9.0.0",
|
|
72
|
+
"eslint-plugin-react": "^7.37.5",
|
|
73
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
72
74
|
"filepond": "^4.32.12",
|
|
73
75
|
"filepond-plugin-file-validate-size": "^2.2.8",
|
|
74
76
|
"filepond-plugin-file-validate-type": "^1.2.9",
|
|
@@ -78,20 +80,40 @@
|
|
|
78
80
|
"filepond-plugin-image-preview": "^4.6.12",
|
|
79
81
|
"filepond-plugin-image-resize": "^2.0.10",
|
|
80
82
|
"filepond-plugin-image-transform": "^3.8.7",
|
|
83
|
+
"globals": "^17.7.0",
|
|
81
84
|
"lucide-react": "^1.7.0",
|
|
82
85
|
"prettier": "^3.0.0",
|
|
86
|
+
"react": "^19.2.7",
|
|
87
|
+
"react-dom": "^19.2.7",
|
|
83
88
|
"react-filepond": "^7.1.3",
|
|
84
89
|
"tsup": "^8.0.0",
|
|
85
90
|
"typescript": "^5.0.0",
|
|
91
|
+
"typescript-eslint": "^8.62.0",
|
|
86
92
|
"vaul": "^1.1.2",
|
|
93
|
+
"vite": "^6.4.3",
|
|
87
94
|
"vitest": "^3.0.0"
|
|
88
95
|
},
|
|
89
96
|
"dependencies": {
|
|
97
|
+
"@tiptap/extension-blockquote": "^3.27.1",
|
|
98
|
+
"@tiptap/extension-bold": "^3.27.1",
|
|
99
|
+
"@tiptap/extension-code": "^3.27.1",
|
|
100
|
+
"@tiptap/extension-code-block": "^3.27.1",
|
|
101
|
+
"@tiptap/extension-document": "^3.27.1",
|
|
102
|
+
"@tiptap/extension-hard-break": "^3.27.1",
|
|
103
|
+
"@tiptap/extension-heading": "^3.27.1",
|
|
104
|
+
"@tiptap/extension-horizontal-rule": "^3.27.1",
|
|
90
105
|
"@tiptap/extension-image": "^3.26.0",
|
|
91
|
-
"
|
|
106
|
+
"@tiptap/extension-italic": "^3.27.1",
|
|
107
|
+
"@tiptap/extension-link": "^3.27.1",
|
|
108
|
+
"@tiptap/extension-list": "^3.27.1",
|
|
109
|
+
"@tiptap/extension-paragraph": "^3.27.1",
|
|
110
|
+
"@tiptap/extension-strike": "^3.27.1",
|
|
111
|
+
"@tiptap/extension-text": "^3.27.1",
|
|
112
|
+
"@tiptap/extension-text-align": "^3.27.1",
|
|
113
|
+
"@tiptap/extension-underline": "^3.27.1",
|
|
114
|
+
"@tiptap/react": "^3.27.1",
|
|
92
115
|
"immer": "^11.1.8",
|
|
93
116
|
"nanoid": "^5.1.16",
|
|
94
|
-
"npm": "^11.12.1",
|
|
95
117
|
"zustand": "^5.0.14"
|
|
96
118
|
}
|
|
97
119
|
}
|