tetrons 2.3.76 → 2.3.77
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/tetrons/EditorContent.tsx +29 -23
- package/dist/dictionaries/dictionaries/index.aff +205 -0
- package/dist/dictionaries/dictionaries/index.dic +49569 -0
- package/dist/index.cjs +303 -126
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +378 -197
- package/dist/styles/tetrons.css +9 -0
- package/package.json +5 -3
package/dist/styles/tetrons.css
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tetrons",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.77",
|
|
4
4
|
"description": "A Next.js project written in TypeScript",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"dev": "next dev --turbo",
|
|
10
|
-
"build": "tsup && copyfiles -u 2 src/styles/*.css dist/styles && copyfiles -u 2 src/components/**/*.tsx dist/components",
|
|
10
|
+
"build": "tsup && copyfiles -u 2 src/styles/*.css dist/styles && copyfiles -u 2 src/components/**/*.tsx dist/components && copyfiles -u 1 public/dictionaries/* dist/dictionaries",
|
|
11
11
|
"start": "next start",
|
|
12
12
|
"lint": "next lint"
|
|
13
13
|
},
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"formidable": "3.5.4",
|
|
36
36
|
"framer-motion": "12.23.0",
|
|
37
37
|
"html2pdf.js": "0.10.3",
|
|
38
|
+
"katex": "^0.16.22",
|
|
38
39
|
"lowlight": "3.3.0",
|
|
39
40
|
"mime": "4.0.7",
|
|
40
41
|
"mongoose": "8.16.0",
|
|
@@ -106,7 +107,8 @@
|
|
|
106
107
|
"files": [
|
|
107
108
|
"dist",
|
|
108
109
|
"dist/styles/tetrons.css",
|
|
109
|
-
"dist/components"
|
|
110
|
+
"dist/components",
|
|
111
|
+
"dist/public/dictionaries"
|
|
110
112
|
],
|
|
111
113
|
"bugs": {
|
|
112
114
|
"url": "https://github.com/Finapsys/Tetrons/issues"
|