@amogads/ui 1.1.0 → 1.1.2
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 +295 -295
- package/dist/index.js +2411 -772
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2445 -753
- package/dist/index.mjs.map +1 -1
- package/dist/pages.js +5974 -5805
- package/dist/pages.js.map +1 -1
- package/dist/pages.mjs +5983 -5758
- package/dist/pages.mjs.map +1 -1
- package/package.json +257 -257
package/package.json
CHANGED
|
@@ -1,257 +1,257 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@amogads/ui",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Central Design System for Amoga applications",
|
|
5
|
-
"private": false,
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"module": "./dist/index.mjs",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.mjs",
|
|
13
|
-
"require": "./dist/index.js"
|
|
14
|
-
},
|
|
15
|
-
"./theme.css": "./dist/theme.css",
|
|
16
|
-
"./tokens": {
|
|
17
|
-
"types": "./dist/tokens.d.ts",
|
|
18
|
-
"import": "./dist/tokens.mjs",
|
|
19
|
-
"require": "./dist/tokens.js"
|
|
20
|
-
},
|
|
21
|
-
"./pages": {
|
|
22
|
-
"types": "./dist/pages.d.ts",
|
|
23
|
-
"import": "./dist/pages.mjs",
|
|
24
|
-
"require": "./dist/pages.js"
|
|
25
|
-
},
|
|
26
|
-
"./stores": {
|
|
27
|
-
"types": "./dist/stores.d.ts",
|
|
28
|
-
"import": "./dist/stores.mjs",
|
|
29
|
-
"require": "./dist/stores.js"
|
|
30
|
-
},
|
|
31
|
-
"./services": {
|
|
32
|
-
"types": "./dist/services.d.ts",
|
|
33
|
-
"import": "./dist/services.mjs",
|
|
34
|
-
"require": "./dist/services.js"
|
|
35
|
-
},
|
|
36
|
-
"./server": {
|
|
37
|
-
"types": "./dist/server.d.ts",
|
|
38
|
-
"import": "./dist/server.mjs",
|
|
39
|
-
"require": "./dist/server.js"
|
|
40
|
-
},
|
|
41
|
-
"./sdk": {
|
|
42
|
-
"types": "./dist/sdk.d.ts",
|
|
43
|
-
"import": "./dist/sdk.mjs",
|
|
44
|
-
"require": "./dist/sdk.js"
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"files": [
|
|
48
|
-
"dist",
|
|
49
|
-
"README.md"
|
|
50
|
-
],
|
|
51
|
-
"publishConfig": {
|
|
52
|
-
"access": "public",
|
|
53
|
-
"registry": "https://registry.npmjs.org"
|
|
54
|
-
},
|
|
55
|
-
"scripts": {
|
|
56
|
-
"dev": "next dev --turbo",
|
|
57
|
-
"build": "next build",
|
|
58
|
-
"build:package": "tsup",
|
|
59
|
-
"prepublishOnly": "npm run build:package",
|
|
60
|
-
"start": "next start",
|
|
61
|
-
"lint": "next lint",
|
|
62
|
-
"typecheck": "tsc --noEmit",
|
|
63
|
-
"consumers:status": "node scripts/track-consumers.mjs",
|
|
64
|
-
"consumers:upgrade": "node scripts/upgrade-consumers.mjs"
|
|
65
|
-
},
|
|
66
|
-
"peerDependencies": {
|
|
67
|
-
"next": "^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
68
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
69
|
-
"react-dom": "^18.0.0 || ^19.0.0",
|
|
70
|
-
"tailwindcss": "^4.0.0"
|
|
71
|
-
},
|
|
72
|
-
"peerDependenciesMeta": {
|
|
73
|
-
"next": {
|
|
74
|
-
"optional": true
|
|
75
|
-
},
|
|
76
|
-
"tailwindcss": {
|
|
77
|
-
"optional": true
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
"dependencies": {
|
|
81
|
-
"@ai-sdk/anthropic": "^3.0.85",
|
|
82
|
-
"@ai-sdk/google": "^3.0.83",
|
|
83
|
-
"@ai-sdk/openai": "^3.0.73",
|
|
84
|
-
"@ai-sdk/react": "^3.0.209",
|
|
85
|
-
"@capacitor/android": "^8.4.2",
|
|
86
|
-
"@capacitor/app": "^8.1.1",
|
|
87
|
-
"@capacitor/browser": "^8.0.4",
|
|
88
|
-
"@capacitor/camera": "^8.2.1",
|
|
89
|
-
"@capacitor/cli": "^8.4.2",
|
|
90
|
-
"@capacitor/core": "^8.4.2",
|
|
91
|
-
"@capacitor/filesystem": "^8.1.2",
|
|
92
|
-
"@capacitor/geolocation": "^8.2.0",
|
|
93
|
-
"@capacitor/haptics": "^8.0.2",
|
|
94
|
-
"@capacitor/ios": "^8.4.2",
|
|
95
|
-
"@capacitor/network": "^8.0.1",
|
|
96
|
-
"@capacitor/push-notifications": "^8.1.2",
|
|
97
|
-
"@capacitor/splash-screen": "^8.0.2",
|
|
98
|
-
"@capgo/capacitor-document-scanner": "^8.4.2",
|
|
99
|
-
"@cle-does-things/pdfitdown": "^4.2.0",
|
|
100
|
-
"@cyntler/react-doc-viewer": "^1.17.1",
|
|
101
|
-
"@dnd-kit/core": "^6.3.1",
|
|
102
|
-
"@dnd-kit/sortable": "^10.0.0",
|
|
103
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
104
|
-
"@floating-ui/react": "^0.27.19",
|
|
105
|
-
"@google/genai": "^2.8.0",
|
|
106
|
-
"@google/generative-ai": "^0.24.1",
|
|
107
|
-
"@hookform/resolvers": "^5.2.2",
|
|
108
|
-
"@json-render/core": "^0.19.0",
|
|
109
|
-
"@json-render/react": "^0.19.0",
|
|
110
|
-
"@next/third-parties": "^16.2.10",
|
|
111
|
-
"@openrouter/ai-sdk-provider": "^2.9.1",
|
|
112
|
-
"@radix-ui/react-accordion": "^1.2.14",
|
|
113
|
-
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
114
|
-
"@radix-ui/react-avatar": "^1.1.11",
|
|
115
|
-
"@radix-ui/react-checkbox": "^1.3.3",
|
|
116
|
-
"@radix-ui/react-collapsible": "^1.1.12",
|
|
117
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
118
|
-
"@radix-ui/react-direction": "^1.1.1",
|
|
119
|
-
"@radix-ui/react-dropdown-menu": "^2.1.18",
|
|
120
|
-
"@radix-ui/react-icons": "^1.3.2",
|
|
121
|
-
"@radix-ui/react-label": "^2.1.8",
|
|
122
|
-
"@radix-ui/react-popover": "^1.1.17",
|
|
123
|
-
"@radix-ui/react-progress": "^1.1.10",
|
|
124
|
-
"@radix-ui/react-radio-group": "^1.3.8",
|
|
125
|
-
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
126
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
127
|
-
"@radix-ui/react-separator": "^1.1.8",
|
|
128
|
-
"@radix-ui/react-slider": "^1.4.1",
|
|
129
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
130
|
-
"@radix-ui/react-switch": "^1.2.6",
|
|
131
|
-
"@radix-ui/react-tabs": "^1.1.13",
|
|
132
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
133
|
-
"@react-oauth/google": "^0.13.5",
|
|
134
|
-
"@supabase/phoenix": "^0.4.5",
|
|
135
|
-
"@supabase/ssr": "^0.12.0",
|
|
136
|
-
"@supabase/supabase-js": "^2.110.0",
|
|
137
|
-
"@tailwindcss/postcss": "^4.3.1",
|
|
138
|
-
"@tanstack/react-query": "^5.99.0",
|
|
139
|
-
"@tanstack/react-table": "^8.21.3",
|
|
140
|
-
"@tiptap/core": "^3.27.1",
|
|
141
|
-
"@tiptap/extension-bubble-menu": "^3.27.1",
|
|
142
|
-
"@tiptap/extension-code-block-lowlight": "^3.27.1",
|
|
143
|
-
"@tiptap/extension-color": "^3.27.1",
|
|
144
|
-
"@tiptap/extension-highlight": "^3.27.1",
|
|
145
|
-
"@tiptap/extension-horizontal-rule": "^3.27.1",
|
|
146
|
-
"@tiptap/extension-image": "^3.27.1",
|
|
147
|
-
"@tiptap/extension-list": "^3.27.1",
|
|
148
|
-
"@tiptap/extension-subscript": "^3.27.1",
|
|
149
|
-
"@tiptap/extension-superscript": "^3.27.1",
|
|
150
|
-
"@tiptap/extension-table": "^3.27.1",
|
|
151
|
-
"@tiptap/extension-text-align": "^3.27.1",
|
|
152
|
-
"@tiptap/extension-text-style": "^3.27.1",
|
|
153
|
-
"@tiptap/extension-typography": "^3.27.1",
|
|
154
|
-
"@tiptap/extensions": "^3.27.1",
|
|
155
|
-
"@tiptap/markdown": "^3.27.1",
|
|
156
|
-
"@tiptap/pm": "^3.27.1",
|
|
157
|
-
"@tiptap/react": "^3.27.1",
|
|
158
|
-
"@tiptap/starter-kit": "^3.27.1",
|
|
159
|
-
"@use-gesture/react": "^10.3.1",
|
|
160
|
-
"@vercel/analytics": "^2.0.1",
|
|
161
|
-
"@zrimo/viewer": "^0.1.1",
|
|
162
|
-
"ai": "^6.0.208",
|
|
163
|
-
"axios": "^1.18.0",
|
|
164
|
-
"class-variance-authority": "^0.7.1",
|
|
165
|
-
"clsx": "^2.1.1",
|
|
166
|
-
"cmdk": "1.1.1",
|
|
167
|
-
"convertapi": "^1.15.0",
|
|
168
|
-
"date-fns": "^4.1.0",
|
|
169
|
-
"docx": "^9.7.1",
|
|
170
|
-
"docx-preview": "^0.4.0",
|
|
171
|
-
"embla-carousel-react": "^8.6.0",
|
|
172
|
-
"fast-deep-equal": "^3.1.3",
|
|
173
|
-
"firebase-admin": "^14.2.0",
|
|
174
|
-
"framer-motion": "^12.42.2",
|
|
175
|
-
"he-tree-react": "^1.3.1",
|
|
176
|
-
"highlight.js": "^11.11.1",
|
|
177
|
-
"html2canvas": "^1.4.1",
|
|
178
|
-
"icons": "^1.0.0",
|
|
179
|
-
"imapflow": "^1.7.0",
|
|
180
|
-
"immer": "^11.1.8",
|
|
181
|
-
"input-otp": "^1.4.2",
|
|
182
|
-
"jspdf": "^4.2.1",
|
|
183
|
-
"jwt-decode": "^4.0.0",
|
|
184
|
-
"lodash.throttle": "^4.1.1",
|
|
185
|
-
"lowlight": "^3.3.0",
|
|
186
|
-
"lucide-react": "^1.21.0",
|
|
187
|
-
"mailparser": "^3.9.15",
|
|
188
|
-
"mammoth": "^1.12.0",
|
|
189
|
-
"maplibre-gl": "^5.24.0",
|
|
190
|
-
"next": "^16.3.0-preview.10",
|
|
191
|
-
"next-auth": "^4.24.15",
|
|
192
|
-
"next-themes": "^0.4.6",
|
|
193
|
-
"node-convert": "^0.1.1",
|
|
194
|
-
"nodemailer": "^9.0.5",
|
|
195
|
-
"object-hash": "^3.0.0",
|
|
196
|
-
"pdf-lib": "^1.17.1",
|
|
197
|
-
"pdf-parse": "^1.1.4",
|
|
198
|
-
"pdf2json": "^4.0.3",
|
|
199
|
-
"pdfjs-dist": "^3.11.174",
|
|
200
|
-
"radix-ui": "^1.6.0",
|
|
201
|
-
"react": "^19.2.8",
|
|
202
|
-
"react-day-picker": "^10.0.1",
|
|
203
|
-
"react-dom": "^19.2.8",
|
|
204
|
-
"react-error-boundary": "^6.1.2",
|
|
205
|
-
"react-hook-form": "^7.72.1",
|
|
206
|
-
"react-hotkeys-hook": "^5.3.2",
|
|
207
|
-
"react-icons": "^5.6.0",
|
|
208
|
-
"react-is": "^19.2.7",
|
|
209
|
-
"react-markdown": "^9.1.0",
|
|
210
|
-
"react-medium-image-zoom": "^5.4.8",
|
|
211
|
-
"react-qr-code": "^2.2.0",
|
|
212
|
-
"react-resizable-panels": "^4.11.2",
|
|
213
|
-
"react-syntax-highlighter": "^16.1.1",
|
|
214
|
-
"react-top-loading-bar": "^3.0.2",
|
|
215
|
-
"react-zoom-pan-pinch": "^4.0.3",
|
|
216
|
-
"recharts": "^3.8.0",
|
|
217
|
-
"remark-gfm": "^4.0.1",
|
|
218
|
-
"remark-math": "^6.0.0",
|
|
219
|
-
"sass": "^1.102.0",
|
|
220
|
-
"sonner": "^2.0.7",
|
|
221
|
-
"tailwind-merge": "^3.5.0",
|
|
222
|
-
"tailwindcss": "^4.2.2",
|
|
223
|
-
"tesseract.js": "^7.0.0",
|
|
224
|
-
"tw-animate-css": "^1.4.0",
|
|
225
|
-
"vaul": "^1.1.2",
|
|
226
|
-
"xlsx": "^0.18.5",
|
|
227
|
-
"zod": "^4.4.3",
|
|
228
|
-
"zundo": "^2.3.0",
|
|
229
|
-
"zustand": "^4.5.5"
|
|
230
|
-
},
|
|
231
|
-
"devDependencies": {
|
|
232
|
-
"@base-ui/react": "^1.6.0",
|
|
233
|
-
"@capgo/cli": "^8.31.1",
|
|
234
|
-
"@eslint/js": "^10.0.1",
|
|
235
|
-
"@faker-js/faker": "^10.4.0",
|
|
236
|
-
"@tailwindcss/typography": "^0.5.20",
|
|
237
|
-
"@tanstack/react-query-devtools": "^5.99.0",
|
|
238
|
-
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
239
|
-
"@types/geojson": "^7946.0.16",
|
|
240
|
-
"@types/lodash.throttle": "^4.1.9",
|
|
241
|
-
"@types/mailparser": "^3.4.6",
|
|
242
|
-
"@types/node": "^25.6.0",
|
|
243
|
-
"@types/nodemailer": "^8.0.1",
|
|
244
|
-
"@types/object-hash": "^3.0.6",
|
|
245
|
-
"@types/react": "^19.2.17",
|
|
246
|
-
"@types/react-dom": "^19.2.3",
|
|
247
|
-
"@types/react-syntax-highlighter": "^15.5.13",
|
|
248
|
-
"eslint": "^10.2.1",
|
|
249
|
-
"globals": "^17.5.0",
|
|
250
|
-
"prettier": "^3.8.3",
|
|
251
|
-
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
252
|
-
"sass-embedded": "^1.100.0",
|
|
253
|
-
"tsup": "^8.5.1",
|
|
254
|
-
"typescript": "~6.0.3",
|
|
255
|
-
"typescript-eslint": "^8.58.2"
|
|
256
|
-
}
|
|
257
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@amogads/ui",
|
|
3
|
+
"version": "1.1.2",
|
|
4
|
+
"description": "Central Design System for Amoga applications",
|
|
5
|
+
"private": false,
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./theme.css": "./dist/theme.css",
|
|
16
|
+
"./tokens": {
|
|
17
|
+
"types": "./dist/tokens.d.ts",
|
|
18
|
+
"import": "./dist/tokens.mjs",
|
|
19
|
+
"require": "./dist/tokens.js"
|
|
20
|
+
},
|
|
21
|
+
"./pages": {
|
|
22
|
+
"types": "./dist/pages.d.ts",
|
|
23
|
+
"import": "./dist/pages.mjs",
|
|
24
|
+
"require": "./dist/pages.js"
|
|
25
|
+
},
|
|
26
|
+
"./stores": {
|
|
27
|
+
"types": "./dist/stores.d.ts",
|
|
28
|
+
"import": "./dist/stores.mjs",
|
|
29
|
+
"require": "./dist/stores.js"
|
|
30
|
+
},
|
|
31
|
+
"./services": {
|
|
32
|
+
"types": "./dist/services.d.ts",
|
|
33
|
+
"import": "./dist/services.mjs",
|
|
34
|
+
"require": "./dist/services.js"
|
|
35
|
+
},
|
|
36
|
+
"./server": {
|
|
37
|
+
"types": "./dist/server.d.ts",
|
|
38
|
+
"import": "./dist/server.mjs",
|
|
39
|
+
"require": "./dist/server.js"
|
|
40
|
+
},
|
|
41
|
+
"./sdk": {
|
|
42
|
+
"types": "./dist/sdk.d.ts",
|
|
43
|
+
"import": "./dist/sdk.mjs",
|
|
44
|
+
"require": "./dist/sdk.js"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"dist",
|
|
49
|
+
"README.md"
|
|
50
|
+
],
|
|
51
|
+
"publishConfig": {
|
|
52
|
+
"access": "public",
|
|
53
|
+
"registry": "https://registry.npmjs.org"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"dev": "next dev --turbo",
|
|
57
|
+
"build": "next build",
|
|
58
|
+
"build:package": "tsup",
|
|
59
|
+
"prepublishOnly": "npm run build:package",
|
|
60
|
+
"start": "next start",
|
|
61
|
+
"lint": "next lint",
|
|
62
|
+
"typecheck": "tsc --noEmit",
|
|
63
|
+
"consumers:status": "node scripts/track-consumers.mjs",
|
|
64
|
+
"consumers:upgrade": "node scripts/upgrade-consumers.mjs"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"next": "^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
68
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
69
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
70
|
+
"tailwindcss": "^4.0.0"
|
|
71
|
+
},
|
|
72
|
+
"peerDependenciesMeta": {
|
|
73
|
+
"next": {
|
|
74
|
+
"optional": true
|
|
75
|
+
},
|
|
76
|
+
"tailwindcss": {
|
|
77
|
+
"optional": true
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"dependencies": {
|
|
81
|
+
"@ai-sdk/anthropic": "^3.0.85",
|
|
82
|
+
"@ai-sdk/google": "^3.0.83",
|
|
83
|
+
"@ai-sdk/openai": "^3.0.73",
|
|
84
|
+
"@ai-sdk/react": "^3.0.209",
|
|
85
|
+
"@capacitor/android": "^8.4.2",
|
|
86
|
+
"@capacitor/app": "^8.1.1",
|
|
87
|
+
"@capacitor/browser": "^8.0.4",
|
|
88
|
+
"@capacitor/camera": "^8.2.1",
|
|
89
|
+
"@capacitor/cli": "^8.4.2",
|
|
90
|
+
"@capacitor/core": "^8.4.2",
|
|
91
|
+
"@capacitor/filesystem": "^8.1.2",
|
|
92
|
+
"@capacitor/geolocation": "^8.2.0",
|
|
93
|
+
"@capacitor/haptics": "^8.0.2",
|
|
94
|
+
"@capacitor/ios": "^8.4.2",
|
|
95
|
+
"@capacitor/network": "^8.0.1",
|
|
96
|
+
"@capacitor/push-notifications": "^8.1.2",
|
|
97
|
+
"@capacitor/splash-screen": "^8.0.2",
|
|
98
|
+
"@capgo/capacitor-document-scanner": "^8.4.2",
|
|
99
|
+
"@cle-does-things/pdfitdown": "^4.2.0",
|
|
100
|
+
"@cyntler/react-doc-viewer": "^1.17.1",
|
|
101
|
+
"@dnd-kit/core": "^6.3.1",
|
|
102
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
103
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
104
|
+
"@floating-ui/react": "^0.27.19",
|
|
105
|
+
"@google/genai": "^2.8.0",
|
|
106
|
+
"@google/generative-ai": "^0.24.1",
|
|
107
|
+
"@hookform/resolvers": "^5.2.2",
|
|
108
|
+
"@json-render/core": "^0.19.0",
|
|
109
|
+
"@json-render/react": "^0.19.0",
|
|
110
|
+
"@next/third-parties": "^16.2.10",
|
|
111
|
+
"@openrouter/ai-sdk-provider": "^2.9.1",
|
|
112
|
+
"@radix-ui/react-accordion": "^1.2.14",
|
|
113
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
114
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
115
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
116
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
117
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
118
|
+
"@radix-ui/react-direction": "^1.1.1",
|
|
119
|
+
"@radix-ui/react-dropdown-menu": "^2.1.18",
|
|
120
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
121
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
122
|
+
"@radix-ui/react-popover": "^1.1.17",
|
|
123
|
+
"@radix-ui/react-progress": "^1.1.10",
|
|
124
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
125
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
126
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
127
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
128
|
+
"@radix-ui/react-slider": "^1.4.1",
|
|
129
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
130
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
131
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
132
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
133
|
+
"@react-oauth/google": "^0.13.5",
|
|
134
|
+
"@supabase/phoenix": "^0.4.5",
|
|
135
|
+
"@supabase/ssr": "^0.12.0",
|
|
136
|
+
"@supabase/supabase-js": "^2.110.0",
|
|
137
|
+
"@tailwindcss/postcss": "^4.3.1",
|
|
138
|
+
"@tanstack/react-query": "^5.99.0",
|
|
139
|
+
"@tanstack/react-table": "^8.21.3",
|
|
140
|
+
"@tiptap/core": "^3.27.1",
|
|
141
|
+
"@tiptap/extension-bubble-menu": "^3.27.1",
|
|
142
|
+
"@tiptap/extension-code-block-lowlight": "^3.27.1",
|
|
143
|
+
"@tiptap/extension-color": "^3.27.1",
|
|
144
|
+
"@tiptap/extension-highlight": "^3.27.1",
|
|
145
|
+
"@tiptap/extension-horizontal-rule": "^3.27.1",
|
|
146
|
+
"@tiptap/extension-image": "^3.27.1",
|
|
147
|
+
"@tiptap/extension-list": "^3.27.1",
|
|
148
|
+
"@tiptap/extension-subscript": "^3.27.1",
|
|
149
|
+
"@tiptap/extension-superscript": "^3.27.1",
|
|
150
|
+
"@tiptap/extension-table": "^3.27.1",
|
|
151
|
+
"@tiptap/extension-text-align": "^3.27.1",
|
|
152
|
+
"@tiptap/extension-text-style": "^3.27.1",
|
|
153
|
+
"@tiptap/extension-typography": "^3.27.1",
|
|
154
|
+
"@tiptap/extensions": "^3.27.1",
|
|
155
|
+
"@tiptap/markdown": "^3.27.1",
|
|
156
|
+
"@tiptap/pm": "^3.27.1",
|
|
157
|
+
"@tiptap/react": "^3.27.1",
|
|
158
|
+
"@tiptap/starter-kit": "^3.27.1",
|
|
159
|
+
"@use-gesture/react": "^10.3.1",
|
|
160
|
+
"@vercel/analytics": "^2.0.1",
|
|
161
|
+
"@zrimo/viewer": "^0.1.1",
|
|
162
|
+
"ai": "^6.0.208",
|
|
163
|
+
"axios": "^1.18.0",
|
|
164
|
+
"class-variance-authority": "^0.7.1",
|
|
165
|
+
"clsx": "^2.1.1",
|
|
166
|
+
"cmdk": "1.1.1",
|
|
167
|
+
"convertapi": "^1.15.0",
|
|
168
|
+
"date-fns": "^4.1.0",
|
|
169
|
+
"docx": "^9.7.1",
|
|
170
|
+
"docx-preview": "^0.4.0",
|
|
171
|
+
"embla-carousel-react": "^8.6.0",
|
|
172
|
+
"fast-deep-equal": "^3.1.3",
|
|
173
|
+
"firebase-admin": "^14.2.0",
|
|
174
|
+
"framer-motion": "^12.42.2",
|
|
175
|
+
"he-tree-react": "^1.3.1",
|
|
176
|
+
"highlight.js": "^11.11.1",
|
|
177
|
+
"html2canvas": "^1.4.1",
|
|
178
|
+
"icons": "^1.0.0",
|
|
179
|
+
"imapflow": "^1.7.0",
|
|
180
|
+
"immer": "^11.1.8",
|
|
181
|
+
"input-otp": "^1.4.2",
|
|
182
|
+
"jspdf": "^4.2.1",
|
|
183
|
+
"jwt-decode": "^4.0.0",
|
|
184
|
+
"lodash.throttle": "^4.1.1",
|
|
185
|
+
"lowlight": "^3.3.0",
|
|
186
|
+
"lucide-react": "^1.21.0",
|
|
187
|
+
"mailparser": "^3.9.15",
|
|
188
|
+
"mammoth": "^1.12.0",
|
|
189
|
+
"maplibre-gl": "^5.24.0",
|
|
190
|
+
"next": "^16.3.0-preview.10",
|
|
191
|
+
"next-auth": "^4.24.15",
|
|
192
|
+
"next-themes": "^0.4.6",
|
|
193
|
+
"node-convert": "^0.1.1",
|
|
194
|
+
"nodemailer": "^9.0.5",
|
|
195
|
+
"object-hash": "^3.0.0",
|
|
196
|
+
"pdf-lib": "^1.17.1",
|
|
197
|
+
"pdf-parse": "^1.1.4",
|
|
198
|
+
"pdf2json": "^4.0.3",
|
|
199
|
+
"pdfjs-dist": "^3.11.174",
|
|
200
|
+
"radix-ui": "^1.6.0",
|
|
201
|
+
"react": "^19.2.8",
|
|
202
|
+
"react-day-picker": "^10.0.1",
|
|
203
|
+
"react-dom": "^19.2.8",
|
|
204
|
+
"react-error-boundary": "^6.1.2",
|
|
205
|
+
"react-hook-form": "^7.72.1",
|
|
206
|
+
"react-hotkeys-hook": "^5.3.2",
|
|
207
|
+
"react-icons": "^5.6.0",
|
|
208
|
+
"react-is": "^19.2.7",
|
|
209
|
+
"react-markdown": "^9.1.0",
|
|
210
|
+
"react-medium-image-zoom": "^5.4.8",
|
|
211
|
+
"react-qr-code": "^2.2.0",
|
|
212
|
+
"react-resizable-panels": "^4.11.2",
|
|
213
|
+
"react-syntax-highlighter": "^16.1.1",
|
|
214
|
+
"react-top-loading-bar": "^3.0.2",
|
|
215
|
+
"react-zoom-pan-pinch": "^4.0.3",
|
|
216
|
+
"recharts": "^3.8.0",
|
|
217
|
+
"remark-gfm": "^4.0.1",
|
|
218
|
+
"remark-math": "^6.0.0",
|
|
219
|
+
"sass": "^1.102.0",
|
|
220
|
+
"sonner": "^2.0.7",
|
|
221
|
+
"tailwind-merge": "^3.5.0",
|
|
222
|
+
"tailwindcss": "^4.2.2",
|
|
223
|
+
"tesseract.js": "^7.0.0",
|
|
224
|
+
"tw-animate-css": "^1.4.0",
|
|
225
|
+
"vaul": "^1.1.2",
|
|
226
|
+
"xlsx": "^0.18.5",
|
|
227
|
+
"zod": "^4.4.3",
|
|
228
|
+
"zundo": "^2.3.0",
|
|
229
|
+
"zustand": "^4.5.5"
|
|
230
|
+
},
|
|
231
|
+
"devDependencies": {
|
|
232
|
+
"@base-ui/react": "^1.6.0",
|
|
233
|
+
"@capgo/cli": "^8.31.1",
|
|
234
|
+
"@eslint/js": "^10.0.1",
|
|
235
|
+
"@faker-js/faker": "^10.4.0",
|
|
236
|
+
"@tailwindcss/typography": "^0.5.20",
|
|
237
|
+
"@tanstack/react-query-devtools": "^5.99.0",
|
|
238
|
+
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
239
|
+
"@types/geojson": "^7946.0.16",
|
|
240
|
+
"@types/lodash.throttle": "^4.1.9",
|
|
241
|
+
"@types/mailparser": "^3.4.6",
|
|
242
|
+
"@types/node": "^25.6.0",
|
|
243
|
+
"@types/nodemailer": "^8.0.1",
|
|
244
|
+
"@types/object-hash": "^3.0.6",
|
|
245
|
+
"@types/react": "^19.2.17",
|
|
246
|
+
"@types/react-dom": "^19.2.3",
|
|
247
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
248
|
+
"eslint": "^10.2.1",
|
|
249
|
+
"globals": "^17.5.0",
|
|
250
|
+
"prettier": "^3.8.3",
|
|
251
|
+
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
252
|
+
"sass-embedded": "^1.100.0",
|
|
253
|
+
"tsup": "^8.5.1",
|
|
254
|
+
"typescript": "~6.0.3",
|
|
255
|
+
"typescript-eslint": "^8.58.2"
|
|
256
|
+
}
|
|
257
|
+
}
|