@mirantes-micro/foundation-design-system 1.2.394 → 1.2.396
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/index.js +224 -224
- package/package.json +212 -212
package/package.json
CHANGED
|
@@ -1,212 +1,212 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mirantes-micro/foundation-design-system",
|
|
3
|
-
"description": "A scalable and customizable design system package featuring a collection of reusable React components, utility functions, and context providers. Built to enforce visual and functional consistency across applications, this package offers accessible, themeable UI elements, shared logic through utility helpers, and context-based providers for managing global state such as themes, modals, and user sessions.",
|
|
4
|
-
"version": "1.2.
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": {
|
|
7
|
-
"name": "Mirantes Frontend team"
|
|
8
|
-
},
|
|
9
|
-
"sideEffects": [
|
|
10
|
-
"*.css"
|
|
11
|
-
],
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"import": {
|
|
15
|
-
"types": "./dist/index.d.ts",
|
|
16
|
-
"default": "./dist/index.js"
|
|
17
|
-
},
|
|
18
|
-
"require": {
|
|
19
|
-
"types": "./dist/index.d.ts",
|
|
20
|
-
"default": "./dist/index.js"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"./styles.css": "./dist/styles.css"
|
|
24
|
-
},
|
|
25
|
-
"source": "./src/components/fromMirantes/index.ts",
|
|
26
|
-
"module": "./dist/index.js",
|
|
27
|
-
"types": "./dist/index.d.ts",
|
|
28
|
-
"files": [
|
|
29
|
-
"dist/*"
|
|
30
|
-
],
|
|
31
|
-
"scripts": {
|
|
32
|
-
"dev": "webpack serve --mode development",
|
|
33
|
-
"build": "webpack --mode production",
|
|
34
|
-
"build:webpack": "tsup src/components/fromMirantes/index.ts --format cjs --minify",
|
|
35
|
-
"release": "pnpm build:webpack && npm publish",
|
|
36
|
-
"build:css": "npx tailwindcss -i ./src/styles/globals.css -o ./dist/styles.css --minify",
|
|
37
|
-
"prepare": "husky",
|
|
38
|
-
"format": "biome check --staged --write --no-errors-on-unmatched",
|
|
39
|
-
"test": "vitest --run --passWithNoTests"
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@babel/core": "7.26.0",
|
|
43
|
-
"@babel/preset-env": "7.26.0",
|
|
44
|
-
"@babel/preset-react": "7.26.3",
|
|
45
|
-
"@biomejs/biome": "2.4.6",
|
|
46
|
-
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
|
|
47
|
-
"@tailwindcss/postcss7-compat": "2.2.17",
|
|
48
|
-
"@tanstack/react-query": "5.76.1",
|
|
49
|
-
"@testing-library/dom": "10.4.1",
|
|
50
|
-
"@testing-library/jest-dom": "6.9.1",
|
|
51
|
-
"@testing-library/react": "16.3.2",
|
|
52
|
-
"@types/clientjs": "0.2.2",
|
|
53
|
-
"@types/country-data": "0.0.5",
|
|
54
|
-
"@types/crypto-js": "4.2.2",
|
|
55
|
-
"@types/js-cookie": "3.0.6",
|
|
56
|
-
"@types/lodash.throttle": "^4.1.9",
|
|
57
|
-
"@types/node": "22.10.5",
|
|
58
|
-
"@types/react": "19.1.4",
|
|
59
|
-
"@types/react-detect-offline": "2.4.5",
|
|
60
|
-
"@types/react-dom": "19.1.5",
|
|
61
|
-
"@types/react-syntax-highlighter": "15.5.13",
|
|
62
|
-
"@types/uuid": "10.0.0",
|
|
63
|
-
"@vitejs/plugin-react": "5.1.4",
|
|
64
|
-
"@vitest/ui": "4.1.6",
|
|
65
|
-
"babel-loader": "9.2.1",
|
|
66
|
-
"baseline-browser-mapping": "^2.9.19",
|
|
67
|
-
"css-loader": "6.8.1",
|
|
68
|
-
"esbuild-sass-plugin": "3.3.1",
|
|
69
|
-
"eslint": "9.17.0",
|
|
70
|
-
"eslint-plugin-react": "7.37.3",
|
|
71
|
-
"file-loader": "6.2.0",
|
|
72
|
-
"graphql-tag": "2.12.6",
|
|
73
|
-
"html-webpack-plugin": "5.5.3",
|
|
74
|
-
"husky": "9.1.7",
|
|
75
|
-
"jsdom": "28.1.0",
|
|
76
|
-
"postcss": "8.4.39",
|
|
77
|
-
"postcss-import": "16.1.0",
|
|
78
|
-
"postcss-important": "0.3.0",
|
|
79
|
-
"postcss-loader": "7.3.3",
|
|
80
|
-
"postcss-nesting": "12.1.5",
|
|
81
|
-
"prettier": "3.4.2",
|
|
82
|
-
"react-refresh": "0.16.0",
|
|
83
|
-
"sass": "^1.94.2",
|
|
84
|
-
"sass-embedded": "^1.93.3",
|
|
85
|
-
"sass-loader": "^16.0.6",
|
|
86
|
-
"style-loader": "3.3.3",
|
|
87
|
-
"tailwind-merge": "2.6.0",
|
|
88
|
-
"tailwindcss": "3.4.4",
|
|
89
|
-
"tailwindcss-animate": "1.0.7",
|
|
90
|
-
"ts-loader": "9.5.1",
|
|
91
|
-
"tsup": "8.3.5",
|
|
92
|
-
"typescript": "5.7.2",
|
|
93
|
-
"vite-tsconfig-paths": "6.1.1",
|
|
94
|
-
"vitest": "4.0.18",
|
|
95
|
-
"webpack": "5.97.1",
|
|
96
|
-
"webpack-cli": "6.0.1",
|
|
97
|
-
"webpack-dev-server": "5.2.0"
|
|
98
|
-
},
|
|
99
|
-
"dependencies": {
|
|
100
|
-
"@emoji-mart/data": "1.2.1",
|
|
101
|
-
"@emoji-mart/react": "1.1.1",
|
|
102
|
-
"@emotion/is-prop-valid": "^1.4.0",
|
|
103
|
-
"@ffmpeg/ffmpeg": "0.12.15",
|
|
104
|
-
"@ffmpeg/util": "0.12.2",
|
|
105
|
-
"@fingerprintjs/fingerprintjs": "^5.2.0",
|
|
106
|
-
"@floating-ui/react": "^0.27.16",
|
|
107
|
-
"@hookform/resolvers": "^5.2.2",
|
|
108
|
-
"@mirantes-micro/billing-v2": "0.1.50",
|
|
109
|
-
"@mirantes-micro/errors": "^1.0.
|
|
110
|
-
"@mirantes-micro/notifications-v2": "0.0.45",
|
|
111
|
-
"@mirantes-micro/widgets": "0.0.161",
|
|
112
|
-
"@radix-ui/react-avatar": "^1.1.10",
|
|
113
|
-
"@radix-ui/react-checkbox": "^1.3.3",
|
|
114
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
115
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
116
|
-
"@radix-ui/react-label": "^2.1.7",
|
|
117
|
-
"@radix-ui/react-popover": "1.1.15",
|
|
118
|
-
"@radix-ui/react-radio-group": "^1.3.8",
|
|
119
|
-
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
120
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
121
|
-
"@radix-ui/react-slot": "^1.2.3",
|
|
122
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
123
|
-
"@radix-ui/react-visually-hidden": "1.2.4",
|
|
124
|
-
"@tanstack/react-query-devtools": "5.76.1",
|
|
125
|
-
"@tiptap/core": "^3.10.7",
|
|
126
|
-
"@tiptap/extension-highlight": "^3.13.0",
|
|
127
|
-
"@tiptap/extension-horizontal-rule": "^3.13.0",
|
|
128
|
-
"@tiptap/extension-image": "^3.13.0",
|
|
129
|
-
"@tiptap/extension-list": "^3.13.0",
|
|
130
|
-
"@tiptap/extension-mention": "^3.10.7",
|
|
131
|
-
"@tiptap/extension-placeholder": "^3.10.7",
|
|
132
|
-
"@tiptap/extension-subscript": "^3.13.0",
|
|
133
|
-
"@tiptap/extension-superscript": "^3.13.0",
|
|
134
|
-
"@tiptap/extension-text-align": "^3.13.0",
|
|
135
|
-
"@tiptap/extension-typography": "^3.13.0",
|
|
136
|
-
"@tiptap/extensions": "^3.13.0",
|
|
137
|
-
"@tiptap/pm": "^3.13.0",
|
|
138
|
-
"@tiptap/react": "^3.10.7",
|
|
139
|
-
"@tiptap/starter-kit": "^3.10.7",
|
|
140
|
-
"@tiptap/suggestion": "^3.10.7",
|
|
141
|
-
"@uidotdev/usehooks": "2.4.1",
|
|
142
|
-
"axios": "1.11.0",
|
|
143
|
-
"browser-image-compression": "2.0.2",
|
|
144
|
-
"class-variance-authority": "0.7.1",
|
|
145
|
-
"clientjs": "0.2.1",
|
|
146
|
-
"clsx": "2.1.1",
|
|
147
|
-
"cmdk": "^1.1.1",
|
|
148
|
-
"cookies-next": "^5.1.0",
|
|
149
|
-
"country-data": "0.0.31",
|
|
150
|
-
"crypto-js": "4.2.0",
|
|
151
|
-
"currencies.json": "1.1.0",
|
|
152
|
-
"date-fns": "^4.1.0",
|
|
153
|
-
"date-fns-tz": "3.2.0",
|
|
154
|
-
"emoji-mart": "5.6.0",
|
|
155
|
-
"emoji-picker-react": "4.13.3",
|
|
156
|
-
"framer-motion": "12.19.2",
|
|
157
|
-
"global-currencies": "1.0.3",
|
|
158
|
-
"graphql": "16.11.0",
|
|
159
|
-
"graphql-request": "^7.3.1",
|
|
160
|
-
"html2canvas": "1.4.1",
|
|
161
|
-
"idb-keyval": "6.2.2",
|
|
162
|
-
"isomorphic-dompurify": "^2.34.0",
|
|
163
|
-
"js-cookie": "3.0.5",
|
|
164
|
-
"jspdf": "3.0.3",
|
|
165
|
-
"link-preview-js": "^3.1.0",
|
|
166
|
-
"lodash.throttle": "^4.1.1",
|
|
167
|
-
"lucide-react": "0.510.0",
|
|
168
|
-
"marked": "^17.0.0",
|
|
169
|
-
"motion": "^12.23.24",
|
|
170
|
-
"msw": "2.12.14",
|
|
171
|
-
"next": "15.3.2",
|
|
172
|
-
"next-themes": "^0.4.6",
|
|
173
|
-
"ogp-parser": "0.8.1",
|
|
174
|
-
"pdf-lib": "^1.17.1",
|
|
175
|
-
"pdfjs-dist": "4.8.69",
|
|
176
|
-
"process": "0.11.10",
|
|
177
|
-
"radix-ui": "^1.4.3",
|
|
178
|
-
"react": "19.1.0",
|
|
179
|
-
"react-day-picker": "^9.11.1",
|
|
180
|
-
"react-detect-offline": "2.4.5",
|
|
181
|
-
"react-dom": "19.1.0",
|
|
182
|
-
"react-dropzone": "14.3.8",
|
|
183
|
-
"react-easy-crop": "5.5.7",
|
|
184
|
-
"react-hook-form": "^7.65.0",
|
|
185
|
-
"react-hotkeys-hook": "^5.2.1",
|
|
186
|
-
"react-infinite-scroll-hook": "6.0.1",
|
|
187
|
-
"react-intersection-observer": "10.0.3",
|
|
188
|
-
"react-markdown": "^10.1.0",
|
|
189
|
-
"react-mentions-ts": "5.4.7",
|
|
190
|
-
"react-router-dom": "7.6.0",
|
|
191
|
-
"react-syntax-highlighter": "16.1.0",
|
|
192
|
-
"react-toastify": "^11.0.5",
|
|
193
|
-
"remark-gfm": "^4.0.1",
|
|
194
|
-
"shiki": "^3.15.0",
|
|
195
|
-
"slugify": "1.6.6",
|
|
196
|
-
"socket.io-client": "4.8.1",
|
|
197
|
-
"sonner": "^2.0.7",
|
|
198
|
-
"swiper": "11.2.10",
|
|
199
|
-
"tailwind-scrollbar-hide": "4.0.0",
|
|
200
|
-
"tippy.js": "^6.3.7",
|
|
201
|
-
"tw-animate-css": "1.2.9",
|
|
202
|
-
"uuid": "11.1.0",
|
|
203
|
-
"vaul": "^1.1.2",
|
|
204
|
-
"yup": "^1.7.1",
|
|
205
|
-
"zustand": "^5.0.8"
|
|
206
|
-
},
|
|
207
|
-
"peerDependencies": {
|
|
208
|
-
"tailwind-scrollbar-hide": "^4.0.0",
|
|
209
|
-
"tailwindcss": "^3.0.0",
|
|
210
|
-
"tailwindcss-animate": "^1.0.0"
|
|
211
|
-
}
|
|
212
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@mirantes-micro/foundation-design-system",
|
|
3
|
+
"description": "A scalable and customizable design system package featuring a collection of reusable React components, utility functions, and context providers. Built to enforce visual and functional consistency across applications, this package offers accessible, themeable UI elements, shared logic through utility helpers, and context-based providers for managing global state such as themes, modals, and user sessions.",
|
|
4
|
+
"version": "1.2.396",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Mirantes Frontend team"
|
|
8
|
+
},
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"*.css"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"require": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"default": "./dist/index.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"./styles.css": "./dist/styles.css"
|
|
24
|
+
},
|
|
25
|
+
"source": "./src/components/fromMirantes/index.ts",
|
|
26
|
+
"module": "./dist/index.js",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist/*"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"dev": "webpack serve --mode development",
|
|
33
|
+
"build": "webpack --mode production",
|
|
34
|
+
"build:webpack": "tsup src/components/fromMirantes/index.ts --format cjs --minify",
|
|
35
|
+
"release": "pnpm build:webpack && npm publish",
|
|
36
|
+
"build:css": "npx tailwindcss -i ./src/styles/globals.css -o ./dist/styles.css --minify",
|
|
37
|
+
"prepare": "husky",
|
|
38
|
+
"format": "biome check --staged --write --no-errors-on-unmatched",
|
|
39
|
+
"test": "vitest --run --passWithNoTests"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@babel/core": "7.26.0",
|
|
43
|
+
"@babel/preset-env": "7.26.0",
|
|
44
|
+
"@babel/preset-react": "7.26.3",
|
|
45
|
+
"@biomejs/biome": "2.4.6",
|
|
46
|
+
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
|
|
47
|
+
"@tailwindcss/postcss7-compat": "2.2.17",
|
|
48
|
+
"@tanstack/react-query": "5.76.1",
|
|
49
|
+
"@testing-library/dom": "10.4.1",
|
|
50
|
+
"@testing-library/jest-dom": "6.9.1",
|
|
51
|
+
"@testing-library/react": "16.3.2",
|
|
52
|
+
"@types/clientjs": "0.2.2",
|
|
53
|
+
"@types/country-data": "0.0.5",
|
|
54
|
+
"@types/crypto-js": "4.2.2",
|
|
55
|
+
"@types/js-cookie": "3.0.6",
|
|
56
|
+
"@types/lodash.throttle": "^4.1.9",
|
|
57
|
+
"@types/node": "22.10.5",
|
|
58
|
+
"@types/react": "19.1.4",
|
|
59
|
+
"@types/react-detect-offline": "2.4.5",
|
|
60
|
+
"@types/react-dom": "19.1.5",
|
|
61
|
+
"@types/react-syntax-highlighter": "15.5.13",
|
|
62
|
+
"@types/uuid": "10.0.0",
|
|
63
|
+
"@vitejs/plugin-react": "5.1.4",
|
|
64
|
+
"@vitest/ui": "4.1.6",
|
|
65
|
+
"babel-loader": "9.2.1",
|
|
66
|
+
"baseline-browser-mapping": "^2.9.19",
|
|
67
|
+
"css-loader": "6.8.1",
|
|
68
|
+
"esbuild-sass-plugin": "3.3.1",
|
|
69
|
+
"eslint": "9.17.0",
|
|
70
|
+
"eslint-plugin-react": "7.37.3",
|
|
71
|
+
"file-loader": "6.2.0",
|
|
72
|
+
"graphql-tag": "2.12.6",
|
|
73
|
+
"html-webpack-plugin": "5.5.3",
|
|
74
|
+
"husky": "9.1.7",
|
|
75
|
+
"jsdom": "28.1.0",
|
|
76
|
+
"postcss": "8.4.39",
|
|
77
|
+
"postcss-import": "16.1.0",
|
|
78
|
+
"postcss-important": "0.3.0",
|
|
79
|
+
"postcss-loader": "7.3.3",
|
|
80
|
+
"postcss-nesting": "12.1.5",
|
|
81
|
+
"prettier": "3.4.2",
|
|
82
|
+
"react-refresh": "0.16.0",
|
|
83
|
+
"sass": "^1.94.2",
|
|
84
|
+
"sass-embedded": "^1.93.3",
|
|
85
|
+
"sass-loader": "^16.0.6",
|
|
86
|
+
"style-loader": "3.3.3",
|
|
87
|
+
"tailwind-merge": "2.6.0",
|
|
88
|
+
"tailwindcss": "3.4.4",
|
|
89
|
+
"tailwindcss-animate": "1.0.7",
|
|
90
|
+
"ts-loader": "9.5.1",
|
|
91
|
+
"tsup": "8.3.5",
|
|
92
|
+
"typescript": "5.7.2",
|
|
93
|
+
"vite-tsconfig-paths": "6.1.1",
|
|
94
|
+
"vitest": "4.0.18",
|
|
95
|
+
"webpack": "5.97.1",
|
|
96
|
+
"webpack-cli": "6.0.1",
|
|
97
|
+
"webpack-dev-server": "5.2.0"
|
|
98
|
+
},
|
|
99
|
+
"dependencies": {
|
|
100
|
+
"@emoji-mart/data": "1.2.1",
|
|
101
|
+
"@emoji-mart/react": "1.1.1",
|
|
102
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
103
|
+
"@ffmpeg/ffmpeg": "0.12.15",
|
|
104
|
+
"@ffmpeg/util": "0.12.2",
|
|
105
|
+
"@fingerprintjs/fingerprintjs": "^5.2.0",
|
|
106
|
+
"@floating-ui/react": "^0.27.16",
|
|
107
|
+
"@hookform/resolvers": "^5.2.2",
|
|
108
|
+
"@mirantes-micro/billing-v2": "0.1.50",
|
|
109
|
+
"@mirantes-micro/errors": "^1.0.6",
|
|
110
|
+
"@mirantes-micro/notifications-v2": "0.0.45",
|
|
111
|
+
"@mirantes-micro/widgets": "0.0.161",
|
|
112
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
113
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
114
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
115
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
116
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
117
|
+
"@radix-ui/react-popover": "1.1.15",
|
|
118
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
119
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
120
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
121
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
122
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
123
|
+
"@radix-ui/react-visually-hidden": "1.2.4",
|
|
124
|
+
"@tanstack/react-query-devtools": "5.76.1",
|
|
125
|
+
"@tiptap/core": "^3.10.7",
|
|
126
|
+
"@tiptap/extension-highlight": "^3.13.0",
|
|
127
|
+
"@tiptap/extension-horizontal-rule": "^3.13.0",
|
|
128
|
+
"@tiptap/extension-image": "^3.13.0",
|
|
129
|
+
"@tiptap/extension-list": "^3.13.0",
|
|
130
|
+
"@tiptap/extension-mention": "^3.10.7",
|
|
131
|
+
"@tiptap/extension-placeholder": "^3.10.7",
|
|
132
|
+
"@tiptap/extension-subscript": "^3.13.0",
|
|
133
|
+
"@tiptap/extension-superscript": "^3.13.0",
|
|
134
|
+
"@tiptap/extension-text-align": "^3.13.0",
|
|
135
|
+
"@tiptap/extension-typography": "^3.13.0",
|
|
136
|
+
"@tiptap/extensions": "^3.13.0",
|
|
137
|
+
"@tiptap/pm": "^3.13.0",
|
|
138
|
+
"@tiptap/react": "^3.10.7",
|
|
139
|
+
"@tiptap/starter-kit": "^3.10.7",
|
|
140
|
+
"@tiptap/suggestion": "^3.10.7",
|
|
141
|
+
"@uidotdev/usehooks": "2.4.1",
|
|
142
|
+
"axios": "1.11.0",
|
|
143
|
+
"browser-image-compression": "2.0.2",
|
|
144
|
+
"class-variance-authority": "0.7.1",
|
|
145
|
+
"clientjs": "0.2.1",
|
|
146
|
+
"clsx": "2.1.1",
|
|
147
|
+
"cmdk": "^1.1.1",
|
|
148
|
+
"cookies-next": "^5.1.0",
|
|
149
|
+
"country-data": "0.0.31",
|
|
150
|
+
"crypto-js": "4.2.0",
|
|
151
|
+
"currencies.json": "1.1.0",
|
|
152
|
+
"date-fns": "^4.1.0",
|
|
153
|
+
"date-fns-tz": "3.2.0",
|
|
154
|
+
"emoji-mart": "5.6.0",
|
|
155
|
+
"emoji-picker-react": "4.13.3",
|
|
156
|
+
"framer-motion": "12.19.2",
|
|
157
|
+
"global-currencies": "1.0.3",
|
|
158
|
+
"graphql": "16.11.0",
|
|
159
|
+
"graphql-request": "^7.3.1",
|
|
160
|
+
"html2canvas": "1.4.1",
|
|
161
|
+
"idb-keyval": "6.2.2",
|
|
162
|
+
"isomorphic-dompurify": "^2.34.0",
|
|
163
|
+
"js-cookie": "3.0.5",
|
|
164
|
+
"jspdf": "3.0.3",
|
|
165
|
+
"link-preview-js": "^3.1.0",
|
|
166
|
+
"lodash.throttle": "^4.1.1",
|
|
167
|
+
"lucide-react": "0.510.0",
|
|
168
|
+
"marked": "^17.0.0",
|
|
169
|
+
"motion": "^12.23.24",
|
|
170
|
+
"msw": "2.12.14",
|
|
171
|
+
"next": "15.3.2",
|
|
172
|
+
"next-themes": "^0.4.6",
|
|
173
|
+
"ogp-parser": "0.8.1",
|
|
174
|
+
"pdf-lib": "^1.17.1",
|
|
175
|
+
"pdfjs-dist": "4.8.69",
|
|
176
|
+
"process": "0.11.10",
|
|
177
|
+
"radix-ui": "^1.4.3",
|
|
178
|
+
"react": "19.1.0",
|
|
179
|
+
"react-day-picker": "^9.11.1",
|
|
180
|
+
"react-detect-offline": "2.4.5",
|
|
181
|
+
"react-dom": "19.1.0",
|
|
182
|
+
"react-dropzone": "14.3.8",
|
|
183
|
+
"react-easy-crop": "5.5.7",
|
|
184
|
+
"react-hook-form": "^7.65.0",
|
|
185
|
+
"react-hotkeys-hook": "^5.2.1",
|
|
186
|
+
"react-infinite-scroll-hook": "6.0.1",
|
|
187
|
+
"react-intersection-observer": "10.0.3",
|
|
188
|
+
"react-markdown": "^10.1.0",
|
|
189
|
+
"react-mentions-ts": "5.4.7",
|
|
190
|
+
"react-router-dom": "7.6.0",
|
|
191
|
+
"react-syntax-highlighter": "16.1.0",
|
|
192
|
+
"react-toastify": "^11.0.5",
|
|
193
|
+
"remark-gfm": "^4.0.1",
|
|
194
|
+
"shiki": "^3.15.0",
|
|
195
|
+
"slugify": "1.6.6",
|
|
196
|
+
"socket.io-client": "4.8.1",
|
|
197
|
+
"sonner": "^2.0.7",
|
|
198
|
+
"swiper": "11.2.10",
|
|
199
|
+
"tailwind-scrollbar-hide": "4.0.0",
|
|
200
|
+
"tippy.js": "^6.3.7",
|
|
201
|
+
"tw-animate-css": "1.2.9",
|
|
202
|
+
"uuid": "11.1.0",
|
|
203
|
+
"vaul": "^1.1.2",
|
|
204
|
+
"yup": "^1.7.1",
|
|
205
|
+
"zustand": "^5.0.8"
|
|
206
|
+
},
|
|
207
|
+
"peerDependencies": {
|
|
208
|
+
"tailwind-scrollbar-hide": "^4.0.0",
|
|
209
|
+
"tailwindcss": "^3.0.0",
|
|
210
|
+
"tailwindcss-animate": "^1.0.0"
|
|
211
|
+
}
|
|
212
|
+
}
|