Stijnus
commited on
Commit
Β·
c0c1275
1
Parent(s):
b1a3e39
minor bug fixes
Browse files- .husky/pre-commit +22 -10
- app/commit.json +1 -1
- app/components/settings/debug/DebugTab.tsx +3 -3
- package-lock.json +0 -0
- package.json +7 -6
- pnpm-lock.yaml +347 -338
.husky/pre-commit
CHANGED
@@ -2,30 +2,42 @@
|
|
2 |
|
3 |
echo "π Running pre-commit hook to check the code looks good... π"
|
4 |
|
|
|
5 |
export NVM_DIR="$HOME/.nvm"
|
6 |
-
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
7 |
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
10 |
|
|
|
|
|
11 |
if ! pnpm typecheck; then
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
exit 1
|
16 |
fi
|
17 |
|
|
|
18 |
echo "Running lint..."
|
19 |
if ! pnpm lint; then
|
20 |
-
echo "β Linting failed! 'pnpm lint:fix'
|
21 |
echo "Once you're done, don't forget to add your beautification to the commit! π€©"
|
22 |
-
echo "lint exit code: $?"
|
23 |
exit 1
|
24 |
fi
|
25 |
|
26 |
# Update commit.json with the latest commit hash
|
|
|
27 |
COMMIT_HASH=$(git rev-parse HEAD)
|
|
|
|
|
|
|
|
|
|
|
28 |
echo "{ \"commit\": \"$COMMIT_HASH\" }" > app/commit.json
|
29 |
git add app/commit.json
|
30 |
|
31 |
-
echo "π All
|
|
|
2 |
|
3 |
echo "π Running pre-commit hook to check the code looks good... π"
|
4 |
|
5 |
+
# Load NVM if available (useful for managing Node.js versions)
|
6 |
export NVM_DIR="$HOME/.nvm"
|
7 |
+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
8 |
|
9 |
+
# Ensure `pnpm` is available
|
10 |
+
echo "Checking if pnpm is available..."
|
11 |
+
if ! command -v pnpm >/dev/null 2>&1; then
|
12 |
+
echo "β pnpm not found! Please ensure pnpm is installed and available in PATH."
|
13 |
+
exit 1
|
14 |
+
fi
|
15 |
|
16 |
+
# Run typecheck
|
17 |
+
echo "Running typecheck..."
|
18 |
if ! pnpm typecheck; then
|
19 |
+
echo "β Type checking failed! Please review TypeScript types."
|
20 |
+
echo "Once you're done, don't forget to add your changes to the commit! π"
|
21 |
+
exit 1
|
|
|
22 |
fi
|
23 |
|
24 |
+
# Run lint
|
25 |
echo "Running lint..."
|
26 |
if ! pnpm lint; then
|
27 |
+
echo "β Linting failed! Run 'pnpm lint:fix' to fix the easy issues."
|
28 |
echo "Once you're done, don't forget to add your beautification to the commit! π€©"
|
|
|
29 |
exit 1
|
30 |
fi
|
31 |
|
32 |
# Update commit.json with the latest commit hash
|
33 |
+
echo "Updating commit.json with the latest commit hash..."
|
34 |
COMMIT_HASH=$(git rev-parse HEAD)
|
35 |
+
if [ $? -ne 0 ]; then
|
36 |
+
echo "β Failed to get commit hash. Ensure you are in a git repository."
|
37 |
+
exit 1
|
38 |
+
fi
|
39 |
+
|
40 |
echo "{ \"commit\": \"$COMMIT_HASH\" }" > app/commit.json
|
41 |
git add app/commit.json
|
42 |
|
43 |
+
echo "π All checks passed! Committing changes..."
|
app/commit.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{ "commit": "
|
|
|
1 |
+
{ "commit": "b1a3e3993ee013b58cee6f02f2e05429d3b3a592" }
|
app/components/settings/debug/DebugTab.tsx
CHANGED
@@ -33,7 +33,7 @@ interface IProviderConfig {
|
|
33 |
const LOCAL_PROVIDERS = ['Ollama', 'LMStudio', 'OpenAILike'];
|
34 |
const versionHash = commit.commit;
|
35 |
const GITHUB_URLS = {
|
36 |
-
original: 'https://api.github.com/repos/
|
37 |
fork: 'https://api.github.com/repos/Stijnus/bolt.new-any-llm/commits/main',
|
38 |
};
|
39 |
|
@@ -327,7 +327,7 @@ export default function DebugTab() {
|
|
327 |
<button
|
328 |
onClick={handleCheckForUpdate}
|
329 |
disabled={isCheckingUpdate}
|
330 |
-
className={`bg-bolt-elements-button-primary-background rounded-lg px-4 py-2 transition-colors duration-200
|
331 |
${!isCheckingUpdate ? 'hover:bg-bolt-elements-button-primary-backgroundHover' : 'opacity-75 cursor-not-allowed'}
|
332 |
text-bolt-elements-button-primary-text`}
|
333 |
>
|
@@ -353,7 +353,7 @@ export default function DebugTab() {
|
|
353 |
</li>
|
354 |
<li>
|
355 |
Install any new dependencies:{' '}
|
356 |
-
<code className="bg-bolt-elements-surface-hover px-1 rounded">
|
357 |
</li>
|
358 |
<li>Restart the application</li>
|
359 |
</ol>
|
|
|
33 |
const LOCAL_PROVIDERS = ['Ollama', 'LMStudio', 'OpenAILike'];
|
34 |
const versionHash = commit.commit;
|
35 |
const GITHUB_URLS = {
|
36 |
+
original: 'https://api.github.com/repos/stackblitz-labs/bolt.diy/commits/main',
|
37 |
fork: 'https://api.github.com/repos/Stijnus/bolt.new-any-llm/commits/main',
|
38 |
};
|
39 |
|
|
|
327 |
<button
|
328 |
onClick={handleCheckForUpdate}
|
329 |
disabled={isCheckingUpdate}
|
330 |
+
className={`bg-bolt-elements-button-primary-background rounded-lg px-4 py-2 transition-colors duration-200
|
331 |
${!isCheckingUpdate ? 'hover:bg-bolt-elements-button-primary-backgroundHover' : 'opacity-75 cursor-not-allowed'}
|
332 |
text-bolt-elements-button-primary-text`}
|
333 |
>
|
|
|
353 |
</li>
|
354 |
<li>
|
355 |
Install any new dependencies:{' '}
|
356 |
+
<code className="bg-bolt-elements-surface-hover px-1 rounded">pnpm install</code>
|
357 |
</li>
|
358 |
<li>Restart the application</li>
|
359 |
</ol>
|
package-lock.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
package.json
CHANGED
@@ -50,6 +50,7 @@
|
|
50 |
"@codemirror/search": "^6.5.8",
|
51 |
"@codemirror/state": "^6.4.1",
|
52 |
"@codemirror/view": "^6.35.0",
|
|
|
53 |
"@iconify-json/ph": "^1.2.1",
|
54 |
"@iconify-json/svg-spinners": "^1.2.1",
|
55 |
"@lezer/highlight": "^1.2.1",
|
@@ -85,8 +86,6 @@
|
|
85 |
"jszip": "^3.10.1",
|
86 |
"nanostores": "^0.10.3",
|
87 |
"ollama-ai-provider": "^0.15.2",
|
88 |
-
"react": "^18.3.1",
|
89 |
-
"react-dom": "^18.3.1",
|
90 |
"react-hotkeys-hook": "^4.6.1",
|
91 |
"react-markdown": "^9.0.1",
|
92 |
"react-resizable-panels": "^2.1.7",
|
@@ -107,14 +106,16 @@
|
|
107 |
"@types/dom-speech-recognition": "^0.0.4",
|
108 |
"@types/file-saver": "^2.0.7",
|
109 |
"@types/js-cookie": "^3.0.6",
|
110 |
-
"@types/react": "^18.3.
|
111 |
-
"@types/react-dom": "^18.3.
|
112 |
"fast-glob": "^3.3.2",
|
113 |
"husky": "9.1.7",
|
114 |
"is-ci": "^3.0.1",
|
115 |
"node-fetch": "^3.3.2",
|
116 |
"pnpm": "^9.14.4",
|
117 |
-
"prettier": "^3.
|
|
|
|
|
118 |
"sass-embedded": "^1.81.0",
|
119 |
"typescript": "^5.7.2",
|
120 |
"unified": "^11.0.5",
|
@@ -131,4 +132,4 @@
|
|
131 |
"@typescript-eslint/utils": "^8.0.0-alpha.30"
|
132 |
},
|
133 |
"packageManager": "[email protected]"
|
134 |
-
}
|
|
|
50 |
"@codemirror/search": "^6.5.8",
|
51 |
"@codemirror/state": "^6.4.1",
|
52 |
"@codemirror/view": "^6.35.0",
|
53 |
+
"@heroicons/react": "^2.2.0",
|
54 |
"@iconify-json/ph": "^1.2.1",
|
55 |
"@iconify-json/svg-spinners": "^1.2.1",
|
56 |
"@lezer/highlight": "^1.2.1",
|
|
|
86 |
"jszip": "^3.10.1",
|
87 |
"nanostores": "^0.10.3",
|
88 |
"ollama-ai-provider": "^0.15.2",
|
|
|
|
|
89 |
"react-hotkeys-hook": "^4.6.1",
|
90 |
"react-markdown": "^9.0.1",
|
91 |
"react-resizable-panels": "^2.1.7",
|
|
|
106 |
"@types/dom-speech-recognition": "^0.0.4",
|
107 |
"@types/file-saver": "^2.0.7",
|
108 |
"@types/js-cookie": "^3.0.6",
|
109 |
+
"@types/react": "^18.3.16",
|
110 |
+
"@types/react-dom": "^18.3.5",
|
111 |
"fast-glob": "^3.3.2",
|
112 |
"husky": "9.1.7",
|
113 |
"is-ci": "^3.0.1",
|
114 |
"node-fetch": "^3.3.2",
|
115 |
"pnpm": "^9.14.4",
|
116 |
+
"prettier": "^3.0.0-alpha.6",
|
117 |
+
"react": "^19.0.0",
|
118 |
+
"react-dom": "^19.0.0",
|
119 |
"sass-embedded": "^1.81.0",
|
120 |
"typescript": "^5.7.2",
|
121 |
"unified": "^11.0.5",
|
|
|
132 |
"@typescript-eslint/utils": "^8.0.0-alpha.30"
|
133 |
},
|
134 |
"packageManager": "[email protected]"
|
135 |
+
}
|
pnpm-lock.yaml
CHANGED
@@ -74,6 +74,9 @@ importers:
|
|
74 |
'@codemirror/view':
|
75 |
specifier: ^6.35.0
|
76 |
version: 6.35.0
|
|
|
|
|
|
|
77 |
'@iconify-json/ph':
|
78 |
specifier: ^1.2.1
|
79 |
version: 1.2.1
|
@@ -85,7 +88,7 @@ importers:
|
|
85 |
version: 1.2.1
|
86 |
'@nanostores/react':
|
87 |
specifier: ^0.7.3
|
88 |
-
version: 0.7.3([email protected])(react@
|
89 |
'@octokit/rest':
|
90 |
specifier: ^21.0.2
|
91 |
version: 21.0.2
|
@@ -97,19 +100,19 @@ importers:
|
|
97 |
version: 0.0.5([email protected])
|
98 |
'@radix-ui/react-dialog':
|
99 |
specifier: ^1.1.2
|
100 |
-
version: 1.1.2(@types/[email protected].
|
101 |
'@radix-ui/react-dropdown-menu':
|
102 |
specifier: ^2.1.2
|
103 |
-
version: 2.1.2(@types/[email protected].
|
104 |
'@radix-ui/react-separator':
|
105 |
specifier: ^1.1.0
|
106 |
-
version: 1.1.0(@types/[email protected].
|
107 |
'@radix-ui/react-switch':
|
108 |
specifier: ^1.1.1
|
109 |
-
version: 1.1.1(@types/[email protected].
|
110 |
'@radix-ui/react-tooltip':
|
111 |
specifier: ^1.1.4
|
112 |
-
version: 1.1.4(@types/[email protected].
|
113 |
'@remix-run/cloudflare':
|
114 |
specifier: ^2.15.0
|
115 |
version: 2.15.0(@cloudflare/[email protected])([email protected])
|
@@ -118,7 +121,7 @@ importers:
|
|
118 |
version: 2.15.0(@cloudflare/[email protected])([email protected])
|
119 |
'@remix-run/react':
|
120 |
specifier: ^2.15.0
|
121 |
-
version: 2.15.0(react-dom@
|
122 |
'@uiw/codemirror-theme-vscode':
|
123 |
specifier: ^4.23.6
|
124 |
version: 4.23.6(@codemirror/[email protected])(@codemirror/[email protected])(@codemirror/[email protected])
|
@@ -139,7 +142,7 @@ importers:
|
|
139 |
version: 5.5.0
|
140 |
ai:
|
141 |
specifier: ^3.4.33
|
142 |
-
version: 3.4.33(react@
|
143 |
date-fns:
|
144 |
specifier: ^3.6.0
|
145 |
version: 3.6.0
|
@@ -151,7 +154,7 @@ importers:
|
|
151 |
version: 2.0.5
|
152 |
framer-motion:
|
153 |
specifier: ^11.12.0
|
154 |
-
version: 11.12.0(react-dom@
|
155 |
ignore:
|
156 |
specifier: ^6.0.2
|
157 |
version: 6.0.2
|
@@ -179,24 +182,18 @@ importers:
|
|
179 |
ollama-ai-provider:
|
180 |
specifier: ^0.15.2
|
181 |
version: 0.15.2([email protected])
|
182 |
-
react:
|
183 |
-
specifier: ^18.3.1
|
184 |
-
version: 18.3.1
|
185 |
-
react-dom:
|
186 |
-
specifier: ^18.3.1
|
187 |
-
version: 18.3.1([email protected])
|
188 |
react-hotkeys-hook:
|
189 |
specifier: ^4.6.1
|
190 |
-
version: 4.6.1(react-dom@
|
191 |
react-markdown:
|
192 |
specifier: ^9.0.1
|
193 |
-
version: 9.0.1(@types/[email protected].
|
194 |
react-resizable-panels:
|
195 |
specifier: ^2.1.7
|
196 |
-
version: 2.1.7(react-dom@
|
197 |
react-toastify:
|
198 |
specifier: ^10.0.6
|
199 |
-
version: 10.0.6(react-dom@
|
200 |
rehype-raw:
|
201 |
specifier: ^7.0.0
|
202 |
version: 7.0.0
|
@@ -208,10 +205,10 @@ importers:
|
|
208 |
version: 4.0.0
|
209 |
remix-island:
|
210 |
specifier: ^0.2.0
|
211 |
-
version: 0.2.0(@remix-run/[email protected](react-dom@
|
212 |
remix-utils:
|
213 |
specifier: ^7.7.0
|
214 |
-
version: 7.7.0(@remix-run/[email protected](@cloudflare/[email protected])([email protected]))(@remix-run/[email protected]([email protected]))(@remix-run/[email protected](react-dom@
|
215 |
shiki:
|
216 |
specifier: ^1.24.0
|
217 |
version: 1.24.0
|
@@ -227,7 +224,7 @@ importers:
|
|
227 |
version: 4.20241127.0
|
228 |
'@remix-run/dev':
|
229 |
specifier: ^2.15.0
|
230 |
-
version: 2.15.0(@remix-run/[email protected](react-dom@
|
231 |
'@types/diff':
|
232 |
specifier: ^5.2.3
|
233 |
version: 5.2.3
|
@@ -241,11 +238,11 @@ importers:
|
|
241 |
specifier: ^3.0.6
|
242 |
version: 3.0.6
|
243 |
'@types/react':
|
244 |
-
specifier: ^18.3.
|
245 |
-
version: 18.3.
|
246 |
'@types/react-dom':
|
247 |
-
specifier: ^18.3.
|
248 |
-
version: 18.3.
|
249 |
fast-glob:
|
250 |
specifier: ^3.3.2
|
251 |
version: 3.3.2
|
@@ -262,8 +259,14 @@ importers:
|
|
262 |
specifier: ^9.14.4
|
263 |
version: 9.14.4
|
264 |
prettier:
|
265 |
-
specifier: ^3.
|
266 |
version: 3.4.1
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
sass-embedded:
|
268 |
specifier: ^1.81.0
|
269 |
version: 1.81.0
|
@@ -1315,6 +1318,11 @@ packages:
|
|
1315 |
'@floating-ui/[email protected]':
|
1316 |
resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
|
1317 |
|
|
|
|
|
|
|
|
|
|
|
1318 |
'@humanfs/[email protected]':
|
1319 |
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
1320 |
engines: {node: '>=18.18.0'}
|
@@ -2140,11 +2148,13 @@ packages:
|
|
2140 |
'@types/[email protected]':
|
2141 |
resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
|
2142 |
|
2143 |
-
'@types/[email protected].
|
2144 |
-
resolution: {integrity: sha512-
|
|
|
|
|
2145 |
|
2146 |
-
'@types/[email protected].
|
2147 |
-
resolution: {integrity: sha512-
|
2148 |
|
2149 |
'@types/[email protected]':
|
2150 |
resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
|
@@ -4683,10 +4693,10 @@ packages:
|
|
4683 |
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
|
4684 |
engines: {node: '>= 0.8'}
|
4685 |
|
4686 |
-
react-dom@
|
4687 |
-
resolution: {integrity: sha512-
|
4688 |
peerDependencies:
|
4689 |
-
react: ^
|
4690 |
|
4691 | |
4692 |
resolution: {integrity: sha512-XlZpbKUj9tkfgPgT9gA+1p7Ey6vFIZHttUjPqpTdyT5nqQ8mHL7elxvSbaC+dpSiHUSmr21Ya1mDxBZG3aje4Q==}
|
@@ -4759,8 +4769,8 @@ packages:
|
|
4759 |
react: '>=18'
|
4760 |
react-dom: '>=18'
|
4761 |
|
4762 |
-
react@
|
4763 |
-
resolution: {integrity: sha512-
|
4764 |
engines: {node: '>=0.10.0'}
|
4765 |
|
4766 | |
@@ -5057,8 +5067,8 @@ packages:
|
|
5057 |
engines: {node: '>=16.0.0'}
|
5058 |
hasBin: true
|
5059 |
|
5060 |
-
scheduler@0.
|
5061 |
-
resolution: {integrity: sha512-
|
5062 |
|
5063 | |
5064 |
resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
|
@@ -5939,14 +5949,14 @@ snapshots:
|
|
5939 |
dependencies:
|
5940 |
json-schema: 0.4.0
|
5941 |
|
5942 |
-
'@ai-sdk/[email protected](react@
|
5943 |
dependencies:
|
5944 |
'@ai-sdk/provider-utils': 1.0.22([email protected])
|
5945 |
'@ai-sdk/ui-utils': 0.0.50([email protected])
|
5946 |
-
swr: 2.2.5(react@
|
5947 |
throttleit: 2.1.0
|
5948 |
optionalDependencies:
|
5949 |
-
react:
|
5950 |
zod: 3.23.8
|
5951 |
|
5952 |
'@ai-sdk/[email protected]([email protected])':
|
@@ -6722,14 +6732,18 @@ snapshots:
|
|
6722 |
'@floating-ui/core': 1.6.8
|
6723 |
'@floating-ui/utils': 0.2.8
|
6724 |
|
6725 |
-
'@floating-ui/[email protected](react-dom@
|
6726 |
dependencies:
|
6727 |
'@floating-ui/dom': 1.6.12
|
6728 |
-
react:
|
6729 |
-
react-dom:
|
6730 |
|
6731 |
'@floating-ui/[email protected]': {}
|
6732 |
|
|
|
|
|
|
|
|
|
6733 |
'@humanfs/[email protected]': {}
|
6734 |
|
6735 |
'@humanfs/[email protected]':
|
@@ -6877,10 +6891,10 @@ snapshots:
|
|
6877 |
transitivePeerDependencies:
|
6878 |
- supports-color
|
6879 |
|
6880 |
-
'@nanostores/[email protected]([email protected])(react@
|
6881 |
dependencies:
|
6882 |
nanostores: 0.10.3
|
6883 |
-
react:
|
6884 |
|
6885 |
'@nodelib/[email protected]':
|
6886 |
dependencies:
|
@@ -7005,320 +7019,320 @@ snapshots:
|
|
7005 |
|
7006 |
'@radix-ui/[email protected]': {}
|
7007 |
|
7008 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7009 |
dependencies:
|
7010 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7011 |
-
react:
|
7012 |
-
react-dom:
|
7013 |
optionalDependencies:
|
7014 |
-
'@types/react': 18.3.
|
7015 |
-
'@types/react-dom': 18.3.
|
7016 |
|
7017 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7018 |
dependencies:
|
7019 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7020 |
-
'@radix-ui/react-context': 1.1.0(@types/[email protected].
|
7021 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7022 |
-
'@radix-ui/react-slot': 1.1.0(@types/[email protected].
|
7023 |
-
react:
|
7024 |
-
react-dom:
|
7025 |
optionalDependencies:
|
7026 |
-
'@types/react': 18.3.
|
7027 |
-
'@types/react-dom': 18.3.
|
7028 |
|
7029 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7030 |
dependencies:
|
7031 |
-
react:
|
7032 |
optionalDependencies:
|
7033 |
-
'@types/react': 18.3.
|
7034 |
|
7035 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7036 |
dependencies:
|
7037 |
-
react:
|
7038 |
optionalDependencies:
|
7039 |
-
'@types/react': 18.3.
|
7040 |
|
7041 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7042 |
dependencies:
|
7043 |
-
react:
|
7044 |
optionalDependencies:
|
7045 |
-
'@types/react': 18.3.
|
7046 |
|
7047 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7048 |
dependencies:
|
7049 |
'@radix-ui/primitive': 1.1.0
|
7050 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7051 |
-
'@radix-ui/react-context': 1.1.1(@types/[email protected].
|
7052 |
-
'@radix-ui/react-dismissable-layer': 1.1.1(@types/[email protected].
|
7053 |
-
'@radix-ui/react-focus-guards': 1.1.1(@types/[email protected].
|
7054 |
-
'@radix-ui/react-focus-scope': 1.1.0(@types/[email protected].
|
7055 |
-
'@radix-ui/react-id': 1.1.0(@types/[email protected].
|
7056 |
-
'@radix-ui/react-portal': 1.1.2(@types/[email protected].
|
7057 |
-
'@radix-ui/react-presence': 1.1.1(@types/[email protected].
|
7058 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7059 |
-
'@radix-ui/react-slot': 1.1.0(@types/[email protected].
|
7060 |
-
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].
|
7061 |
aria-hidden: 1.2.4
|
7062 |
-
react:
|
7063 |
-
react-dom:
|
7064 |
-
react-remove-scroll: 2.6.0(@types/[email protected].
|
7065 |
optionalDependencies:
|
7066 |
-
'@types/react': 18.3.
|
7067 |
-
'@types/react-dom': 18.3.
|
7068 |
|
7069 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7070 |
dependencies:
|
7071 |
-
react:
|
7072 |
optionalDependencies:
|
7073 |
-
'@types/react': 18.3.
|
7074 |
|
7075 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7076 |
dependencies:
|
7077 |
'@radix-ui/primitive': 1.1.0
|
7078 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7079 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7080 |
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].
|
7081 |
-
'@radix-ui/react-use-escape-keydown': 1.1.0(@types/[email protected].
|
7082 |
-
react:
|
7083 |
-
react-dom:
|
7084 |
optionalDependencies:
|
7085 |
-
'@types/react': 18.3.
|
7086 |
-
'@types/react-dom': 18.3.
|
7087 |
|
7088 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7089 |
dependencies:
|
7090 |
'@radix-ui/primitive': 1.1.0
|
7091 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7092 |
-
'@radix-ui/react-context': 1.1.1(@types/[email protected].
|
7093 |
-
'@radix-ui/react-id': 1.1.0(@types/[email protected].
|
7094 |
-
'@radix-ui/react-menu': 2.1.2(@types/[email protected].
|
7095 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7096 |
-
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].
|
7097 |
-
react:
|
7098 |
-
react-dom:
|
7099 |
optionalDependencies:
|
7100 |
-
'@types/react': 18.3.
|
7101 |
-
'@types/react-dom': 18.3.
|
7102 |
|
7103 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7104 |
dependencies:
|
7105 |
-
react:
|
7106 |
optionalDependencies:
|
7107 |
-
'@types/react': 18.3.
|
7108 |
|
7109 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7110 |
dependencies:
|
7111 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7112 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7113 |
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].
|
7114 |
-
react:
|
7115 |
-
react-dom:
|
7116 |
optionalDependencies:
|
7117 |
-
'@types/react': 18.3.
|
7118 |
-
'@types/react-dom': 18.3.
|
7119 |
|
7120 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7121 |
dependencies:
|
7122 |
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].
|
7123 |
-
react:
|
7124 |
optionalDependencies:
|
7125 |
-
'@types/react': 18.3.
|
7126 |
|
7127 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7128 |
dependencies:
|
7129 |
'@radix-ui/primitive': 1.1.0
|
7130 |
-
'@radix-ui/react-collection': 1.1.0(@types/[email protected].
|
7131 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7132 |
-
'@radix-ui/react-context': 1.1.1(@types/[email protected].
|
7133 |
-
'@radix-ui/react-direction': 1.1.0(@types/[email protected].
|
7134 |
-
'@radix-ui/react-dismissable-layer': 1.1.1(@types/[email protected].
|
7135 |
-
'@radix-ui/react-focus-guards': 1.1.1(@types/[email protected].
|
7136 |
-
'@radix-ui/react-focus-scope': 1.1.0(@types/[email protected].
|
7137 |
-
'@radix-ui/react-id': 1.1.0(@types/[email protected].
|
7138 |
-
'@radix-ui/react-popper': 1.2.0(@types/[email protected].
|
7139 |
-
'@radix-ui/react-portal': 1.1.2(@types/[email protected].
|
7140 |
-
'@radix-ui/react-presence': 1.1.1(@types/[email protected].
|
7141 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7142 |
-
'@radix-ui/react-roving-focus': 1.1.0(@types/[email protected].
|
7143 |
-
'@radix-ui/react-slot': 1.1.0(@types/[email protected].
|
7144 |
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].
|
7145 |
aria-hidden: 1.2.4
|
7146 |
-
react:
|
7147 |
-
react-dom:
|
7148 |
-
react-remove-scroll: 2.6.0(@types/[email protected].
|
7149 |
optionalDependencies:
|
7150 |
-
'@types/react': 18.3.
|
7151 |
-
'@types/react-dom': 18.3.
|
7152 |
-
|
7153 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7154 |
-
dependencies:
|
7155 |
-
'@floating-ui/react-dom': 2.1.2(react-dom@
|
7156 |
-
'@radix-ui/react-arrow': 1.1.0(@types/[email protected].
|
7157 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7158 |
-
'@radix-ui/react-context': 1.1.0(@types/[email protected].
|
7159 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7160 |
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].
|
7161 |
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].
|
7162 |
-
'@radix-ui/react-use-rect': 1.1.0(@types/[email protected].
|
7163 |
-
'@radix-ui/react-use-size': 1.1.0(@types/[email protected].
|
7164 |
'@radix-ui/rect': 1.1.0
|
7165 |
-
react:
|
7166 |
-
react-dom:
|
7167 |
optionalDependencies:
|
7168 |
-
'@types/react': 18.3.
|
7169 |
-
'@types/react-dom': 18.3.
|
7170 |
|
7171 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7172 |
dependencies:
|
7173 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7174 |
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].
|
7175 |
-
react:
|
7176 |
-
react-dom:
|
7177 |
optionalDependencies:
|
7178 |
-
'@types/react': 18.3.
|
7179 |
-
'@types/react-dom': 18.3.
|
7180 |
|
7181 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7182 |
dependencies:
|
7183 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7184 |
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].
|
7185 |
-
react:
|
7186 |
-
react-dom:
|
7187 |
optionalDependencies:
|
7188 |
-
'@types/react': 18.3.
|
7189 |
-
'@types/react-dom': 18.3.
|
7190 |
|
7191 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7192 |
dependencies:
|
7193 |
-
'@radix-ui/react-slot': 1.1.0(@types/[email protected].
|
7194 |
-
react:
|
7195 |
-
react-dom:
|
7196 |
optionalDependencies:
|
7197 |
-
'@types/react': 18.3.
|
7198 |
-
'@types/react-dom': 18.3.
|
7199 |
|
7200 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7201 |
dependencies:
|
7202 |
'@radix-ui/primitive': 1.1.0
|
7203 |
-
'@radix-ui/react-collection': 1.1.0(@types/[email protected].
|
7204 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7205 |
-
'@radix-ui/react-context': 1.1.0(@types/[email protected].
|
7206 |
-
'@radix-ui/react-direction': 1.1.0(@types/[email protected].
|
7207 |
-
'@radix-ui/react-id': 1.1.0(@types/[email protected].
|
7208 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7209 |
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].
|
7210 |
-
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].
|
7211 |
-
react:
|
7212 |
-
react-dom:
|
7213 |
optionalDependencies:
|
7214 |
-
'@types/react': 18.3.
|
7215 |
-
'@types/react-dom': 18.3.
|
7216 |
|
7217 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7218 |
dependencies:
|
7219 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7220 |
-
react:
|
7221 |
-
react-dom:
|
7222 |
optionalDependencies:
|
7223 |
-
'@types/react': 18.3.
|
7224 |
-
'@types/react-dom': 18.3.
|
7225 |
|
7226 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7227 |
dependencies:
|
7228 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7229 |
-
react:
|
7230 |
optionalDependencies:
|
7231 |
-
'@types/react': 18.3.
|
7232 |
|
7233 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7234 |
dependencies:
|
7235 |
'@radix-ui/primitive': 1.1.0
|
7236 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7237 |
-
'@radix-ui/react-context': 1.1.1(@types/[email protected].
|
7238 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7239 |
-
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].
|
7240 |
-
'@radix-ui/react-use-previous': 1.1.0(@types/[email protected].
|
7241 |
-
'@radix-ui/react-use-size': 1.1.0(@types/[email protected].
|
7242 |
-
react:
|
7243 |
-
react-dom:
|
7244 |
optionalDependencies:
|
7245 |
-
'@types/react': 18.3.
|
7246 |
-
'@types/react-dom': 18.3.
|
7247 |
|
7248 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7249 |
dependencies:
|
7250 |
'@radix-ui/primitive': 1.1.0
|
7251 |
-
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].
|
7252 |
-
'@radix-ui/react-context': 1.1.1(@types/[email protected].
|
7253 |
-
'@radix-ui/react-dismissable-layer': 1.1.1(@types/[email protected].
|
7254 |
-
'@radix-ui/react-id': 1.1.0(@types/[email protected].
|
7255 |
-
'@radix-ui/react-popper': 1.2.0(@types/[email protected].
|
7256 |
-
'@radix-ui/react-portal': 1.1.2(@types/[email protected].
|
7257 |
-
'@radix-ui/react-presence': 1.1.1(@types/[email protected].
|
7258 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7259 |
-
'@radix-ui/react-slot': 1.1.0(@types/[email protected].
|
7260 |
-
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].
|
7261 |
-
'@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected].
|
7262 |
-
react:
|
7263 |
-
react-dom:
|
7264 |
optionalDependencies:
|
7265 |
-
'@types/react': 18.3.
|
7266 |
-
'@types/react-dom': 18.3.
|
7267 |
|
7268 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7269 |
dependencies:
|
7270 |
-
react:
|
7271 |
optionalDependencies:
|
7272 |
-
'@types/react': 18.3.
|
7273 |
|
7274 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7275 |
dependencies:
|
7276 |
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].
|
7277 |
-
react:
|
7278 |
optionalDependencies:
|
7279 |
-
'@types/react': 18.3.
|
7280 |
|
7281 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7282 |
dependencies:
|
7283 |
-
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].
|
7284 |
-
react:
|
7285 |
optionalDependencies:
|
7286 |
-
'@types/react': 18.3.
|
7287 |
|
7288 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7289 |
dependencies:
|
7290 |
-
react:
|
7291 |
optionalDependencies:
|
7292 |
-
'@types/react': 18.3.
|
7293 |
|
7294 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7295 |
dependencies:
|
7296 |
-
react:
|
7297 |
optionalDependencies:
|
7298 |
-
'@types/react': 18.3.
|
7299 |
|
7300 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7301 |
dependencies:
|
7302 |
'@radix-ui/rect': 1.1.0
|
7303 |
-
react:
|
7304 |
optionalDependencies:
|
7305 |
-
'@types/react': 18.3.
|
7306 |
|
7307 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7308 |
dependencies:
|
7309 |
-
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].
|
7310 |
-
react:
|
7311 |
optionalDependencies:
|
7312 |
-
'@types/react': 18.3.
|
7313 |
|
7314 |
-
'@radix-ui/[email protected](@types/[email protected].
|
7315 |
dependencies:
|
7316 |
-
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].
|
7317 |
-
react:
|
7318 |
-
react-dom:
|
7319 |
optionalDependencies:
|
7320 |
-
'@types/react': 18.3.
|
7321 |
-
'@types/react-dom': 18.3.
|
7322 |
|
7323 |
'@radix-ui/[email protected]': {}
|
7324 |
|
@@ -7337,7 +7351,7 @@ snapshots:
|
|
7337 |
optionalDependencies:
|
7338 |
typescript: 5.7.2
|
7339 |
|
7340 |
-
'@remix-run/[email protected](@remix-run/[email protected](react-dom@
|
7341 |
dependencies:
|
7342 |
'@babel/core': 7.26.0
|
7343 |
'@babel/generator': 7.26.2
|
@@ -7350,7 +7364,7 @@ snapshots:
|
|
7350 |
'@mdx-js/mdx': 2.3.0
|
7351 |
'@npmcli/package-json': 4.0.1
|
7352 |
'@remix-run/node': 2.15.0([email protected])
|
7353 |
-
'@remix-run/react': 2.15.0(react-dom@
|
7354 |
'@remix-run/router': 1.21.0
|
7355 |
'@remix-run/server-runtime': 2.15.0([email protected])
|
7356 |
'@types/mdx': 2.0.13
|
@@ -7427,14 +7441,14 @@ snapshots:
|
|
7427 |
optionalDependencies:
|
7428 |
typescript: 5.7.2
|
7429 |
|
7430 |
-
'@remix-run/[email protected](react-dom@
|
7431 |
dependencies:
|
7432 |
'@remix-run/router': 1.21.0
|
7433 |
'@remix-run/server-runtime': 2.15.0([email protected])
|
7434 |
-
react:
|
7435 |
-
react-dom:
|
7436 |
-
react-router: 6.28.0(react@
|
7437 |
-
react-router-dom: 6.28.0(react-dom@
|
7438 |
turbo-stream: 2.4.0
|
7439 |
optionalDependencies:
|
7440 |
typescript: 5.7.2
|
@@ -7652,11 +7666,11 @@ snapshots:
|
|
7652 |
|
7653 |
'@types/[email protected]': {}
|
7654 |
|
7655 |
-
'@types/[email protected].
|
7656 |
dependencies:
|
7657 |
-
'@types/react': 18.3.
|
7658 |
|
7659 |
-
'@types/[email protected].
|
7660 |
dependencies:
|
7661 |
'@types/prop-types': 15.7.13
|
7662 |
csstype: 3.1.3
|
@@ -8114,11 +8128,11 @@ snapshots:
|
|
8114 |
clean-stack: 2.2.0
|
8115 |
indent-string: 4.0.0
|
8116 |
|
8117 | |
8118 |
dependencies:
|
8119 |
'@ai-sdk/provider': 0.0.26
|
8120 |
'@ai-sdk/provider-utils': 1.0.22([email protected])
|
8121 |
-
'@ai-sdk/react': 0.0.70(react@
|
8122 |
'@ai-sdk/solid': 0.0.54([email protected])
|
8123 |
'@ai-sdk/svelte': 0.0.57([email protected])([email protected])
|
8124 |
'@ai-sdk/ui-utils': 0.0.50([email protected])
|
@@ -8130,7 +8144,7 @@ snapshots:
|
|
8130 |
secure-json-parse: 2.7.0
|
8131 |
zod-to-json-schema: 3.23.5([email protected])
|
8132 |
optionalDependencies:
|
8133 |
-
react:
|
8134 |
sswr: 2.1.0([email protected])
|
8135 |
svelte: 5.4.0
|
8136 |
zod: 3.23.8
|
@@ -9125,12 +9139,12 @@ snapshots:
|
|
9125 |
|
9126 | |
9127 |
|
9128 |
-
[email protected](react-dom@
|
9129 |
dependencies:
|
9130 |
tslib: 2.8.1
|
9131 |
optionalDependencies:
|
9132 |
-
react:
|
9133 |
-
react-dom:
|
9134 |
|
9135 | |
9136 |
|
@@ -10931,26 +10945,25 @@ snapshots:
|
|
10931 |
iconv-lite: 0.4.24
|
10932 |
unpipe: 1.0.0
|
10933 |
|
10934 |
-
react-dom@
|
10935 |
dependencies:
|
10936 |
-
|
10937 |
-
|
10938 |
-
scheduler: 0.23.2
|
10939 |
|
10940 |
-
[email protected](react-dom@
|
10941 |
dependencies:
|
10942 |
-
react:
|
10943 |
-
react-dom:
|
10944 |
|
10945 |
-
[email protected](@types/[email protected].
|
10946 |
dependencies:
|
10947 |
'@types/hast': 3.0.4
|
10948 |
-
'@types/react': 18.3.
|
10949 |
devlop: 1.1.0
|
10950 |
hast-util-to-jsx-runtime: 2.3.2
|
10951 |
html-url-attributes: 3.0.1
|
10952 |
mdast-util-to-hast: 13.2.0
|
10953 |
-
react:
|
10954 |
remark-parse: 11.0.0
|
10955 |
remark-rehype: 11.1.1
|
10956 |
unified: 11.0.5
|
@@ -10961,60 +10974,58 @@ snapshots:
|
|
10961 |
|
10962 | |
10963 |
|
10964 |
-
[email protected](@types/[email protected].
|
10965 |
dependencies:
|
10966 |
-
react:
|
10967 |
-
react-style-singleton: 2.2.1(@types/[email protected].
|
10968 |
tslib: 2.8.1
|
10969 |
optionalDependencies:
|
10970 |
-
'@types/react': 18.3.
|
10971 |
|
10972 |
-
[email protected](@types/[email protected].
|
10973 |
dependencies:
|
10974 |
-
react:
|
10975 |
-
react-remove-scroll-bar: 2.3.6(@types/[email protected].
|
10976 |
-
react-style-singleton: 2.2.1(@types/[email protected].
|
10977 |
tslib: 2.8.1
|
10978 |
-
use-callback-ref: 1.3.2(@types/[email protected].
|
10979 |
-
use-sidecar: 1.1.2(@types/[email protected].
|
10980 |
optionalDependencies:
|
10981 |
-
'@types/react': 18.3.
|
10982 |
|
10983 |
-
[email protected](react-dom@
|
10984 |
dependencies:
|
10985 |
-
react:
|
10986 |
-
react-dom:
|
10987 |
|
10988 |
-
[email protected](react-dom@
|
10989 |
dependencies:
|
10990 |
'@remix-run/router': 1.21.0
|
10991 |
-
react:
|
10992 |
-
react-dom:
|
10993 |
-
react-router: 6.28.0(react@
|
10994 |
|
10995 |
-
[email protected](react@
|
10996 |
dependencies:
|
10997 |
'@remix-run/router': 1.21.0
|
10998 |
-
react:
|
10999 |
|
11000 |
-
[email protected](@types/[email protected].
|
11001 |
dependencies:
|
11002 |
get-nonce: 1.0.1
|
11003 |
invariant: 2.2.4
|
11004 |
-
react:
|
11005 |
tslib: 2.8.1
|
11006 |
optionalDependencies:
|
11007 |
-
'@types/react': 18.3.
|
11008 |
|
11009 |
-
[email protected](react-dom@
|
11010 |
dependencies:
|
11011 |
clsx: 2.1.1
|
11012 |
-
react:
|
11013 |
-
react-dom:
|
11014 |
|
11015 |
-
react@
|
11016 |
-
dependencies:
|
11017 |
-
loose-envify: 1.4.0
|
11018 |
|
11019 | |
11020 |
dependencies:
|
@@ -11131,22 +11142,22 @@ snapshots:
|
|
11131 |
mdast-util-to-markdown: 2.1.2
|
11132 |
unified: 11.0.5
|
11133 |
|
11134 |
-
[email protected](@remix-run/[email protected](react-dom@
|
11135 |
dependencies:
|
11136 |
-
'@remix-run/react': 2.15.0(react-dom@
|
11137 |
'@remix-run/server-runtime': 2.15.0([email protected])
|
11138 |
-
react:
|
11139 |
-
react-dom:
|
11140 |
|
11141 |
-
[email protected](@remix-run/[email protected](@cloudflare/[email protected])([email protected]))(@remix-run/[email protected]([email protected]))(@remix-run/[email protected](react-dom@
|
11142 |
dependencies:
|
11143 |
type-fest: 4.30.0
|
11144 |
optionalDependencies:
|
11145 |
'@remix-run/cloudflare': 2.15.0(@cloudflare/[email protected])([email protected])
|
11146 |
'@remix-run/node': 2.15.0([email protected])
|
11147 |
-
'@remix-run/react': 2.15.0(react-dom@
|
11148 |
'@remix-run/router': 1.21.0
|
11149 |
-
react:
|
11150 |
zod: 3.23.8
|
11151 |
|
11152 | |
@@ -11325,9 +11336,7 @@ snapshots:
|
|
11325 |
sass-embedded-win32-ia32: 1.81.0
|
11326 |
sass-embedded-win32-x64: 1.81.0
|
11327 |
|
11328 |
-
scheduler@0.
|
11329 |
-
dependencies:
|
11330 |
-
loose-envify: 1.4.0
|
11331 |
|
11332 | |
11333 |
|
@@ -11573,11 +11582,11 @@ snapshots:
|
|
11573 |
magic-string: 0.30.14
|
11574 |
zimmerframe: 1.1.2
|
11575 |
|
11576 |
-
[email protected](react@
|
11577 |
dependencies:
|
11578 |
client-only: 0.0.1
|
11579 |
-
react:
|
11580 |
-
use-sync-external-store: 1.2.2(react@
|
11581 |
|
11582 | |
11583 |
|
@@ -11874,24 +11883,24 @@ snapshots:
|
|
11874 |
punycode: 1.4.1
|
11875 |
qs: 6.13.1
|
11876 |
|
11877 |
-
[email protected](@types/[email protected].
|
11878 |
dependencies:
|
11879 |
-
react:
|
11880 |
tslib: 2.8.1
|
11881 |
optionalDependencies:
|
11882 |
-
'@types/react': 18.3.
|
11883 |
|
11884 |
-
[email protected](@types/[email protected].
|
11885 |
dependencies:
|
11886 |
detect-node-es: 1.1.0
|
11887 |
-
react:
|
11888 |
tslib: 2.8.1
|
11889 |
optionalDependencies:
|
11890 |
-
'@types/react': 18.3.
|
11891 |
|
11892 |
-
[email protected](react@
|
11893 |
dependencies:
|
11894 |
-
react:
|
11895 |
|
11896 | |
11897 |
|
|
|
74 |
'@codemirror/view':
|
75 |
specifier: ^6.35.0
|
76 |
version: 6.35.0
|
77 |
+
'@heroicons/react':
|
78 |
+
specifier: ^2.2.0
|
79 |
+
version: 2.2.0([email protected])
|
80 |
'@iconify-json/ph':
|
81 |
specifier: ^1.2.1
|
82 |
version: 1.2.1
|
|
|
88 |
version: 1.2.1
|
89 |
'@nanostores/react':
|
90 |
specifier: ^0.7.3
|
91 |
+
version: 0.7.3([email protected])(react@19.0.0)
|
92 |
'@octokit/rest':
|
93 |
specifier: ^21.0.2
|
94 |
version: 21.0.2
|
|
|
100 |
version: 0.0.5([email protected])
|
101 |
'@radix-ui/react-dialog':
|
102 |
specifier: ^1.1.2
|
103 |
+
version: 1.1.2(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
104 |
'@radix-ui/react-dropdown-menu':
|
105 |
specifier: ^2.1.2
|
106 |
+
version: 2.1.2(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
107 |
'@radix-ui/react-separator':
|
108 |
specifier: ^1.1.0
|
109 |
+
version: 1.1.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
110 |
'@radix-ui/react-switch':
|
111 |
specifier: ^1.1.1
|
112 |
+
version: 1.1.1(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
113 |
'@radix-ui/react-tooltip':
|
114 |
specifier: ^1.1.4
|
115 |
+
version: 1.1.4(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
116 |
'@remix-run/cloudflare':
|
117 |
specifier: ^2.15.0
|
118 |
version: 2.15.0(@cloudflare/[email protected])([email protected])
|
|
|
121 |
version: 2.15.0(@cloudflare/[email protected])([email protected])
|
122 |
'@remix-run/react':
|
123 |
specifier: ^2.15.0
|
124 |
+
version: 2.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected])
|
125 |
'@uiw/codemirror-theme-vscode':
|
126 |
specifier: ^4.23.6
|
127 |
version: 4.23.6(@codemirror/[email protected])(@codemirror/[email protected])(@codemirror/[email protected])
|
|
|
142 |
version: 5.5.0
|
143 |
ai:
|
144 |
specifier: ^3.4.33
|
145 |
+
version: 3.4.33(react@19.0.0)([email protected]([email protected]))([email protected])([email protected]([email protected]))([email protected])
|
146 |
date-fns:
|
147 |
specifier: ^3.6.0
|
148 |
version: 3.6.0
|
|
|
154 |
version: 2.0.5
|
155 |
framer-motion:
|
156 |
specifier: ^11.12.0
|
157 |
+
version: 11.12.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
158 |
ignore:
|
159 |
specifier: ^6.0.2
|
160 |
version: 6.0.2
|
|
|
182 |
ollama-ai-provider:
|
183 |
specifier: ^0.15.2
|
184 |
version: 0.15.2([email protected])
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
react-hotkeys-hook:
|
186 |
specifier: ^4.6.1
|
187 |
+
version: 4.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
188 |
react-markdown:
|
189 |
specifier: ^9.0.1
|
190 |
+
version: 9.0.1(@types/[email protected].16)(react@19.0.0)
|
191 |
react-resizable-panels:
|
192 |
specifier: ^2.1.7
|
193 |
+
version: 2.1.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
194 |
react-toastify:
|
195 |
specifier: ^10.0.6
|
196 |
+
version: 10.0.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
197 |
rehype-raw:
|
198 |
specifier: ^7.0.0
|
199 |
version: 7.0.0
|
|
|
205 |
version: 4.0.0
|
206 |
remix-island:
|
207 |
specifier: ^0.2.0
|
208 |
+
version: 0.2.0(@remix-run/[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected]))(@remix-run/[email protected]([email protected]))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
209 |
remix-utils:
|
210 |
specifier: ^7.7.0
|
211 |
+
version: 7.7.0(@remix-run/[email protected](@cloudflare/[email protected])([email protected]))(@remix-run/[email protected]([email protected]))(@remix-run/[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected]))(@remix-run/[email protected])(react@19.0.0)([email protected])
|
212 |
shiki:
|
213 |
specifier: ^1.24.0
|
214 |
version: 1.24.0
|
|
|
224 |
version: 4.20241127.0
|
225 |
'@remix-run/dev':
|
226 |
specifier: ^2.15.0
|
227 |
+
version: 2.15.0(@remix-run/[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected]))(@types/[email protected])([email protected])([email protected])([email protected](@types/[email protected])([email protected]))([email protected](@cloudflare/[email protected]))
|
228 |
'@types/diff':
|
229 |
specifier: ^5.2.3
|
230 |
version: 5.2.3
|
|
|
238 |
specifier: ^3.0.6
|
239 |
version: 3.0.6
|
240 |
'@types/react':
|
241 |
+
specifier: ^18.3.16
|
242 |
+
version: 18.3.16
|
243 |
'@types/react-dom':
|
244 |
+
specifier: ^18.3.5
|
245 |
+
version: 18.3.5(@types/[email protected])
|
246 |
fast-glob:
|
247 |
specifier: ^3.3.2
|
248 |
version: 3.3.2
|
|
|
259 |
specifier: ^9.14.4
|
260 |
version: 9.14.4
|
261 |
prettier:
|
262 |
+
specifier: ^3.0.0-alpha.6
|
263 |
version: 3.4.1
|
264 |
+
react:
|
265 |
+
specifier: ^19.0.0
|
266 |
+
version: 19.0.0
|
267 |
+
react-dom:
|
268 |
+
specifier: ^19.0.0
|
269 |
+
version: 19.0.0([email protected])
|
270 |
sass-embedded:
|
271 |
specifier: ^1.81.0
|
272 |
version: 1.81.0
|
|
|
1318 |
'@floating-ui/[email protected]':
|
1319 |
resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
|
1320 |
|
1321 |
+
'@heroicons/[email protected]':
|
1322 |
+
resolution: {integrity: sha512-LMcepvRaS9LYHJGsF0zzmgKCUim/X3N/DQKc4jepAXJ7l8QxJ1PmxJzqplF2Z3FE4PqBAIGyJAQ/w4B5dsqbtQ==}
|
1323 |
+
peerDependencies:
|
1324 |
+
react: '>= 16 || ^19.0.0-rc'
|
1325 |
+
|
1326 |
'@humanfs/[email protected]':
|
1327 |
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
1328 |
engines: {node: '>=18.18.0'}
|
|
|
2148 |
'@types/[email protected]':
|
2149 |
resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
|
2150 |
|
2151 |
+
'@types/[email protected].5':
|
2152 |
+
resolution: {integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==}
|
2153 |
+
peerDependencies:
|
2154 |
+
'@types/react': ^18.0.0
|
2155 |
|
2156 |
+
'@types/[email protected].16':
|
2157 |
+
resolution: {integrity: sha512-oh8AMIC4Y2ciKufU8hnKgs+ufgbA/dhPTACaZPM86AbwX9QwnFtSoPWEeRUj8fge+v6kFt78BXcDhAU1SrrAsw==}
|
2158 |
|
2159 |
'@types/[email protected]':
|
2160 |
resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
|
|
|
4693 |
resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
|
4694 |
engines: {node: '>= 0.8'}
|
4695 |
|
4696 |
+
react-dom@19.0.0:
|
4697 |
+
resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
|
4698 |
peerDependencies:
|
4699 |
+
react: ^19.0.0
|
4700 |
|
4701 | |
4702 |
resolution: {integrity: sha512-XlZpbKUj9tkfgPgT9gA+1p7Ey6vFIZHttUjPqpTdyT5nqQ8mHL7elxvSbaC+dpSiHUSmr21Ya1mDxBZG3aje4Q==}
|
|
|
4769 |
react: '>=18'
|
4770 |
react-dom: '>=18'
|
4771 |
|
4772 |
+
react@19.0.0:
|
4773 |
+
resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
|
4774 |
engines: {node: '>=0.10.0'}
|
4775 |
|
4776 | |
|
|
5067 |
engines: {node: '>=16.0.0'}
|
5068 |
hasBin: true
|
5069 |
|
5070 |
+
scheduler@0.25.0:
|
5071 |
+
resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
|
5072 |
|
5073 | |
5074 |
resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
|
|
|
5949 |
dependencies:
|
5950 |
json-schema: 0.4.0
|
5951 |
|
5952 |
+
'@ai-sdk/[email protected](react@19.0.0)([email protected])':
|
5953 |
dependencies:
|
5954 |
'@ai-sdk/provider-utils': 1.0.22([email protected])
|
5955 |
'@ai-sdk/ui-utils': 0.0.50([email protected])
|
5956 |
+
swr: 2.2.5(react@19.0.0)
|
5957 |
throttleit: 2.1.0
|
5958 |
optionalDependencies:
|
5959 |
+
react: 19.0.0
|
5960 |
zod: 3.23.8
|
5961 |
|
5962 |
'@ai-sdk/[email protected]([email protected])':
|
|
|
6732 |
'@floating-ui/core': 1.6.8
|
6733 |
'@floating-ui/utils': 0.2.8
|
6734 |
|
6735 |
+
'@floating-ui/[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
6736 |
dependencies:
|
6737 |
'@floating-ui/dom': 1.6.12
|
6738 |
+
react: 19.0.0
|
6739 |
+
react-dom: 19.0.0(react@19.0.0)
|
6740 |
|
6741 |
'@floating-ui/[email protected]': {}
|
6742 |
|
6743 |
+
'@heroicons/[email protected]([email protected])':
|
6744 |
+
dependencies:
|
6745 |
+
react: 19.0.0
|
6746 |
+
|
6747 |
'@humanfs/[email protected]': {}
|
6748 |
|
6749 |
'@humanfs/[email protected]':
|
|
|
6891 |
transitivePeerDependencies:
|
6892 |
- supports-color
|
6893 |
|
6894 |
+
'@nanostores/[email protected]([email protected])(react@19.0.0)':
|
6895 |
dependencies:
|
6896 |
nanostores: 0.10.3
|
6897 |
+
react: 19.0.0
|
6898 |
|
6899 |
'@nodelib/[email protected]':
|
6900 |
dependencies:
|
|
|
7019 |
|
7020 |
'@radix-ui/[email protected]': {}
|
7021 |
|
7022 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7023 |
dependencies:
|
7024 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7025 |
+
react: 19.0.0
|
7026 |
+
react-dom: 19.0.0(react@19.0.0)
|
7027 |
optionalDependencies:
|
7028 |
+
'@types/react': 18.3.16
|
7029 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7030 |
|
7031 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7032 |
dependencies:
|
7033 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7034 |
+
'@radix-ui/react-context': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7035 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7036 |
+
'@radix-ui/react-slot': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7037 |
+
react: 19.0.0
|
7038 |
+
react-dom: 19.0.0(react@19.0.0)
|
7039 |
optionalDependencies:
|
7040 |
+
'@types/react': 18.3.16
|
7041 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7042 |
|
7043 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7044 |
dependencies:
|
7045 |
+
react: 19.0.0
|
7046 |
optionalDependencies:
|
7047 |
+
'@types/react': 18.3.16
|
7048 |
|
7049 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7050 |
dependencies:
|
7051 |
+
react: 19.0.0
|
7052 |
optionalDependencies:
|
7053 |
+
'@types/react': 18.3.16
|
7054 |
|
7055 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7056 |
dependencies:
|
7057 |
+
react: 19.0.0
|
7058 |
optionalDependencies:
|
7059 |
+
'@types/react': 18.3.16
|
7060 |
|
7061 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7062 |
dependencies:
|
7063 |
'@radix-ui/primitive': 1.1.0
|
7064 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7065 |
+
'@radix-ui/react-context': 1.1.1(@types/[email protected].16)(react@19.0.0)
|
7066 |
+
'@radix-ui/react-dismissable-layer': 1.1.1(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7067 |
+
'@radix-ui/react-focus-guards': 1.1.1(@types/[email protected].16)(react@19.0.0)
|
7068 |
+
'@radix-ui/react-focus-scope': 1.1.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7069 |
+
'@radix-ui/react-id': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7070 |
+
'@radix-ui/react-portal': 1.1.2(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7071 |
+
'@radix-ui/react-presence': 1.1.1(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7072 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7073 |
+
'@radix-ui/react-slot': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7074 |
+
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7075 |
aria-hidden: 1.2.4
|
7076 |
+
react: 19.0.0
|
7077 |
+
react-dom: 19.0.0(react@19.0.0)
|
7078 |
+
react-remove-scroll: 2.6.0(@types/[email protected].16)(react@19.0.0)
|
7079 |
optionalDependencies:
|
7080 |
+
'@types/react': 18.3.16
|
7081 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7082 |
|
7083 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7084 |
dependencies:
|
7085 |
+
react: 19.0.0
|
7086 |
optionalDependencies:
|
7087 |
+
'@types/react': 18.3.16
|
7088 |
|
7089 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7090 |
dependencies:
|
7091 |
'@radix-ui/primitive': 1.1.0
|
7092 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7093 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7094 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7095 |
+
'@radix-ui/react-use-escape-keydown': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7096 |
+
react: 19.0.0
|
7097 |
+
react-dom: 19.0.0(react@19.0.0)
|
7098 |
optionalDependencies:
|
7099 |
+
'@types/react': 18.3.16
|
7100 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7101 |
|
7102 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7103 |
dependencies:
|
7104 |
'@radix-ui/primitive': 1.1.0
|
7105 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7106 |
+
'@radix-ui/react-context': 1.1.1(@types/[email protected].16)(react@19.0.0)
|
7107 |
+
'@radix-ui/react-id': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7108 |
+
'@radix-ui/react-menu': 2.1.2(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7109 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7110 |
+
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7111 |
+
react: 19.0.0
|
7112 |
+
react-dom: 19.0.0(react@19.0.0)
|
7113 |
optionalDependencies:
|
7114 |
+
'@types/react': 18.3.16
|
7115 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7116 |
|
7117 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7118 |
dependencies:
|
7119 |
+
react: 19.0.0
|
7120 |
optionalDependencies:
|
7121 |
+
'@types/react': 18.3.16
|
7122 |
|
7123 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7124 |
dependencies:
|
7125 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7126 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7127 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7128 |
+
react: 19.0.0
|
7129 |
+
react-dom: 19.0.0(react@19.0.0)
|
7130 |
optionalDependencies:
|
7131 |
+
'@types/react': 18.3.16
|
7132 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7133 |
|
7134 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7135 |
dependencies:
|
7136 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7137 |
+
react: 19.0.0
|
7138 |
optionalDependencies:
|
7139 |
+
'@types/react': 18.3.16
|
7140 |
|
7141 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7142 |
dependencies:
|
7143 |
'@radix-ui/primitive': 1.1.0
|
7144 |
+
'@radix-ui/react-collection': 1.1.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7145 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7146 |
+
'@radix-ui/react-context': 1.1.1(@types/[email protected].16)(react@19.0.0)
|
7147 |
+
'@radix-ui/react-direction': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7148 |
+
'@radix-ui/react-dismissable-layer': 1.1.1(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7149 |
+
'@radix-ui/react-focus-guards': 1.1.1(@types/[email protected].16)(react@19.0.0)
|
7150 |
+
'@radix-ui/react-focus-scope': 1.1.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7151 |
+
'@radix-ui/react-id': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7152 |
+
'@radix-ui/react-popper': 1.2.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7153 |
+
'@radix-ui/react-portal': 1.1.2(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7154 |
+
'@radix-ui/react-presence': 1.1.1(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7155 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7156 |
+
'@radix-ui/react-roving-focus': 1.1.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7157 |
+
'@radix-ui/react-slot': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7158 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7159 |
aria-hidden: 1.2.4
|
7160 |
+
react: 19.0.0
|
7161 |
+
react-dom: 19.0.0(react@19.0.0)
|
7162 |
+
react-remove-scroll: 2.6.0(@types/[email protected].16)(react@19.0.0)
|
7163 |
optionalDependencies:
|
7164 |
+
'@types/react': 18.3.16
|
7165 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7166 |
+
|
7167 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7168 |
+
dependencies:
|
7169 |
+
'@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7170 |
+
'@radix-ui/react-arrow': 1.1.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7171 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7172 |
+
'@radix-ui/react-context': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7173 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7174 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7175 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7176 |
+
'@radix-ui/react-use-rect': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7177 |
+
'@radix-ui/react-use-size': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7178 |
'@radix-ui/rect': 1.1.0
|
7179 |
+
react: 19.0.0
|
7180 |
+
react-dom: 19.0.0(react@19.0.0)
|
7181 |
optionalDependencies:
|
7182 |
+
'@types/react': 18.3.16
|
7183 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7184 |
|
7185 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7186 |
dependencies:
|
7187 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7188 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7189 |
+
react: 19.0.0
|
7190 |
+
react-dom: 19.0.0(react@19.0.0)
|
7191 |
optionalDependencies:
|
7192 |
+
'@types/react': 18.3.16
|
7193 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7194 |
|
7195 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7196 |
dependencies:
|
7197 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7198 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7199 |
+
react: 19.0.0
|
7200 |
+
react-dom: 19.0.0(react@19.0.0)
|
7201 |
optionalDependencies:
|
7202 |
+
'@types/react': 18.3.16
|
7203 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7204 |
|
7205 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7206 |
dependencies:
|
7207 |
+
'@radix-ui/react-slot': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7208 |
+
react: 19.0.0
|
7209 |
+
react-dom: 19.0.0(react@19.0.0)
|
7210 |
optionalDependencies:
|
7211 |
+
'@types/react': 18.3.16
|
7212 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7213 |
|
7214 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7215 |
dependencies:
|
7216 |
'@radix-ui/primitive': 1.1.0
|
7217 |
+
'@radix-ui/react-collection': 1.1.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7218 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7219 |
+
'@radix-ui/react-context': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7220 |
+
'@radix-ui/react-direction': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7221 |
+
'@radix-ui/react-id': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7222 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7223 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7224 |
+
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7225 |
+
react: 19.0.0
|
7226 |
+
react-dom: 19.0.0(react@19.0.0)
|
7227 |
optionalDependencies:
|
7228 |
+
'@types/react': 18.3.16
|
7229 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7230 |
|
7231 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7232 |
dependencies:
|
7233 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7234 |
+
react: 19.0.0
|
7235 |
+
react-dom: 19.0.0(react@19.0.0)
|
7236 |
optionalDependencies:
|
7237 |
+
'@types/react': 18.3.16
|
7238 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7239 |
|
7240 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7241 |
dependencies:
|
7242 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7243 |
+
react: 19.0.0
|
7244 |
optionalDependencies:
|
7245 |
+
'@types/react': 18.3.16
|
7246 |
|
7247 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7248 |
dependencies:
|
7249 |
'@radix-ui/primitive': 1.1.0
|
7250 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7251 |
+
'@radix-ui/react-context': 1.1.1(@types/[email protected].16)(react@19.0.0)
|
7252 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7253 |
+
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7254 |
+
'@radix-ui/react-use-previous': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7255 |
+
'@radix-ui/react-use-size': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7256 |
+
react: 19.0.0
|
7257 |
+
react-dom: 19.0.0(react@19.0.0)
|
7258 |
optionalDependencies:
|
7259 |
+
'@types/react': 18.3.16
|
7260 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7261 |
|
7262 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7263 |
dependencies:
|
7264 |
'@radix-ui/primitive': 1.1.0
|
7265 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7266 |
+
'@radix-ui/react-context': 1.1.1(@types/[email protected].16)(react@19.0.0)
|
7267 |
+
'@radix-ui/react-dismissable-layer': 1.1.1(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7268 |
+
'@radix-ui/react-id': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7269 |
+
'@radix-ui/react-popper': 1.2.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7270 |
+
'@radix-ui/react-portal': 1.1.2(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7271 |
+
'@radix-ui/react-presence': 1.1.1(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7272 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7273 |
+
'@radix-ui/react-slot': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7274 |
+
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7275 |
+
'@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7276 |
+
react: 19.0.0
|
7277 |
+
react-dom: 19.0.0(react@19.0.0)
|
7278 |
optionalDependencies:
|
7279 |
+
'@types/react': 18.3.16
|
7280 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7281 |
|
7282 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7283 |
dependencies:
|
7284 |
+
react: 19.0.0
|
7285 |
optionalDependencies:
|
7286 |
+
'@types/react': 18.3.16
|
7287 |
|
7288 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7289 |
dependencies:
|
7290 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7291 |
+
react: 19.0.0
|
7292 |
optionalDependencies:
|
7293 |
+
'@types/react': 18.3.16
|
7294 |
|
7295 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7296 |
dependencies:
|
7297 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7298 |
+
react: 19.0.0
|
7299 |
optionalDependencies:
|
7300 |
+
'@types/react': 18.3.16
|
7301 |
|
7302 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7303 |
dependencies:
|
7304 |
+
react: 19.0.0
|
7305 |
optionalDependencies:
|
7306 |
+
'@types/react': 18.3.16
|
7307 |
|
7308 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7309 |
dependencies:
|
7310 |
+
react: 19.0.0
|
7311 |
optionalDependencies:
|
7312 |
+
'@types/react': 18.3.16
|
7313 |
|
7314 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7315 |
dependencies:
|
7316 |
'@radix-ui/rect': 1.1.0
|
7317 |
+
react: 19.0.0
|
7318 |
optionalDependencies:
|
7319 |
+
'@types/react': 18.3.16
|
7320 |
|
7321 |
+
'@radix-ui/[email protected](@types/[email protected].16)(react@19.0.0)':
|
7322 |
dependencies:
|
7323 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected].16)(react@19.0.0)
|
7324 |
+
react: 19.0.0
|
7325 |
optionalDependencies:
|
7326 |
+
'@types/react': 18.3.16
|
7327 |
|
7328 |
+
'@radix-ui/[email protected](@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
|
7329 |
dependencies:
|
7330 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected].5(@types/[email protected]))(@types/[email protected].16)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7331 |
+
react: 19.0.0
|
7332 |
+
react-dom: 19.0.0(react@19.0.0)
|
7333 |
optionalDependencies:
|
7334 |
+
'@types/react': 18.3.16
|
7335 |
+
'@types/react-dom': 18.3.5(@types/[email protected])
|
7336 |
|
7337 |
'@radix-ui/[email protected]': {}
|
7338 |
|
|
|
7351 |
optionalDependencies:
|
7352 |
typescript: 5.7.2
|
7353 |
|
7354 |
+
'@remix-run/[email protected](@remix-run/[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected]))(@types/[email protected])([email protected])([email protected])([email protected](@types/[email protected])([email protected]))([email protected](@cloudflare/[email protected]))':
|
7355 |
dependencies:
|
7356 |
'@babel/core': 7.26.0
|
7357 |
'@babel/generator': 7.26.2
|
|
|
7364 |
'@mdx-js/mdx': 2.3.0
|
7365 |
'@npmcli/package-json': 4.0.1
|
7366 |
'@remix-run/node': 2.15.0([email protected])
|
7367 |
+
'@remix-run/react': 2.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected])
|
7368 |
'@remix-run/router': 1.21.0
|
7369 |
'@remix-run/server-runtime': 2.15.0([email protected])
|
7370 |
'@types/mdx': 2.0.13
|
|
|
7441 |
optionalDependencies:
|
7442 |
typescript: 5.7.2
|
7443 |
|
7444 |
+
'@remix-run/[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected])':
|
7445 |
dependencies:
|
7446 |
'@remix-run/router': 1.21.0
|
7447 |
'@remix-run/server-runtime': 2.15.0([email protected])
|
7448 |
+
react: 19.0.0
|
7449 |
+
react-dom: 19.0.0(react@19.0.0)
|
7450 |
+
react-router: 6.28.0(react@19.0.0)
|
7451 |
+
react-router-dom: 6.28.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
|
7452 |
turbo-stream: 2.4.0
|
7453 |
optionalDependencies:
|
7454 |
typescript: 5.7.2
|
|
|
7666 |
|
7667 |
'@types/[email protected]': {}
|
7668 |
|
7669 |
+
'@types/[email protected].5(@types/[email protected])':
|
7670 |
dependencies:
|
7671 |
+
'@types/react': 18.3.16
|
7672 |
|
7673 |
+
'@types/[email protected].16':
|
7674 |
dependencies:
|
7675 |
'@types/prop-types': 15.7.13
|
7676 |
csstype: 3.1.3
|
|
|
8128 |
clean-stack: 2.2.0
|
8129 |
indent-string: 4.0.0
|
8130 |
|
8131 | |
8132 |
dependencies:
|
8133 |
'@ai-sdk/provider': 0.0.26
|
8134 |
'@ai-sdk/provider-utils': 1.0.22([email protected])
|
8135 |
+
'@ai-sdk/react': 0.0.70(react@19.0.0)([email protected])
|
8136 |
'@ai-sdk/solid': 0.0.54([email protected])
|
8137 |
'@ai-sdk/svelte': 0.0.57([email protected])([email protected])
|
8138 |
'@ai-sdk/ui-utils': 0.0.50([email protected])
|
|
|
8144 |
secure-json-parse: 2.7.0
|
8145 |
zod-to-json-schema: 3.23.5([email protected])
|
8146 |
optionalDependencies:
|
8147 |
+
react: 19.0.0
|
8148 |
sswr: 2.1.0([email protected])
|
8149 |
svelte: 5.4.0
|
8150 |
zod: 3.23.8
|
|
|
9139 |
|
9140 | |
9141 |
|
9142 |
+
[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0):
|
9143 |
dependencies:
|
9144 |
tslib: 2.8.1
|
9145 |
optionalDependencies:
|
9146 |
+
react: 19.0.0
|
9147 |
+
react-dom: 19.0.0(react@19.0.0)
|
9148 |
|
9149 | |
9150 |
|
|
|
10945 |
iconv-lite: 0.4.24
|
10946 |
unpipe: 1.0.0
|
10947 |
|
10948 |
+
react-dom@19.0.0(react@19.0.0):
|
10949 |
dependencies:
|
10950 |
+
react: 19.0.0
|
10951 |
+
scheduler: 0.25.0
|
|
|
10952 |
|
10953 |
+
[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0):
|
10954 |
dependencies:
|
10955 |
+
react: 19.0.0
|
10956 |
+
react-dom: 19.0.0(react@19.0.0)
|
10957 |
|
10958 |
+
[email protected](@types/[email protected].16)(react@19.0.0):
|
10959 |
dependencies:
|
10960 |
'@types/hast': 3.0.4
|
10961 |
+
'@types/react': 18.3.16
|
10962 |
devlop: 1.1.0
|
10963 |
hast-util-to-jsx-runtime: 2.3.2
|
10964 |
html-url-attributes: 3.0.1
|
10965 |
mdast-util-to-hast: 13.2.0
|
10966 |
+
react: 19.0.0
|
10967 |
remark-parse: 11.0.0
|
10968 |
remark-rehype: 11.1.1
|
10969 |
unified: 11.0.5
|
|
|
10974 |
|
10975 | |
10976 |
|
10977 |
+
[email protected](@types/[email protected].16)(react@19.0.0):
|
10978 |
dependencies:
|
10979 |
+
react: 19.0.0
|
10980 |
+
react-style-singleton: 2.2.1(@types/[email protected].16)(react@19.0.0)
|
10981 |
tslib: 2.8.1
|
10982 |
optionalDependencies:
|
10983 |
+
'@types/react': 18.3.16
|
10984 |
|
10985 |
+
[email protected](@types/[email protected].16)(react@19.0.0):
|
10986 |
dependencies:
|
10987 |
+
react: 19.0.0
|
10988 |
+
react-remove-scroll-bar: 2.3.6(@types/[email protected].16)(react@19.0.0)
|
10989 |
+
react-style-singleton: 2.2.1(@types/[email protected].16)(react@19.0.0)
|
10990 |
tslib: 2.8.1
|
10991 |
+
use-callback-ref: 1.3.2(@types/[email protected].16)(react@19.0.0)
|
10992 |
+
use-sidecar: 1.1.2(@types/[email protected].16)(react@19.0.0)
|
10993 |
optionalDependencies:
|
10994 |
+
'@types/react': 18.3.16
|
10995 |
|
10996 |
+
[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0):
|
10997 |
dependencies:
|
10998 |
+
react: 19.0.0
|
10999 |
+
react-dom: 19.0.0(react@19.0.0)
|
11000 |
|
11001 |
+
[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0):
|
11002 |
dependencies:
|
11003 |
'@remix-run/router': 1.21.0
|
11004 |
+
react: 19.0.0
|
11005 |
+
react-dom: 19.0.0(react@19.0.0)
|
11006 |
+
react-router: 6.28.0(react@19.0.0)
|
11007 |
|
11008 |
+
[email protected](react@19.0.0):
|
11009 |
dependencies:
|
11010 |
'@remix-run/router': 1.21.0
|
11011 |
+
react: 19.0.0
|
11012 |
|
11013 |
+
[email protected](@types/[email protected].16)(react@19.0.0):
|
11014 |
dependencies:
|
11015 |
get-nonce: 1.0.1
|
11016 |
invariant: 2.2.4
|
11017 |
+
react: 19.0.0
|
11018 |
tslib: 2.8.1
|
11019 |
optionalDependencies:
|
11020 |
+
'@types/react': 18.3.16
|
11021 |
|
11022 |
+
[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0):
|
11023 |
dependencies:
|
11024 |
clsx: 2.1.1
|
11025 |
+
react: 19.0.0
|
11026 |
+
react-dom: 19.0.0(react@19.0.0)
|
11027 |
|
11028 |
+
react@19.0.0: {}
|
|
|
|
|
11029 |
|
11030 | |
11031 |
dependencies:
|
|
|
11142 |
mdast-util-to-markdown: 2.1.2
|
11143 |
unified: 11.0.5
|
11144 |
|
11145 |
+
[email protected](@remix-run/[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected]))(@remix-run/[email protected]([email protected]))(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
|
11146 |
dependencies:
|
11147 |
+
'@remix-run/react': 2.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected])
|
11148 |
'@remix-run/server-runtime': 2.15.0([email protected])
|
11149 |
+
react: 19.0.0
|
11150 |
+
react-dom: 19.0.0(react@19.0.0)
|
11151 |
|
11152 |
+
[email protected](@remix-run/[email protected](@cloudflare/[email protected])([email protected]))(@remix-run/[email protected]([email protected]))(@remix-run/[email protected](react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected]))(@remix-run/[email protected])(react@19.0.0)([email protected]):
|
11153 |
dependencies:
|
11154 |
type-fest: 4.30.0
|
11155 |
optionalDependencies:
|
11156 |
'@remix-run/cloudflare': 2.15.0(@cloudflare/[email protected])([email protected])
|
11157 |
'@remix-run/node': 2.15.0([email protected])
|
11158 |
+
'@remix-run/react': 2.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)([email protected])
|
11159 |
'@remix-run/router': 1.21.0
|
11160 |
+
react: 19.0.0
|
11161 |
zod: 3.23.8
|
11162 |
|
11163 | |
|
|
11336 |
sass-embedded-win32-ia32: 1.81.0
|
11337 |
sass-embedded-win32-x64: 1.81.0
|
11338 |
|
11339 |
+
scheduler@0.25.0: {}
|
|
|
|
|
11340 |
|
11341 | |
11342 |
|
|
|
11582 |
magic-string: 0.30.14
|
11583 |
zimmerframe: 1.1.2
|
11584 |
|
11585 |
+
[email protected](react@19.0.0):
|
11586 |
dependencies:
|
11587 |
client-only: 0.0.1
|
11588 |
+
react: 19.0.0
|
11589 |
+
use-sync-external-store: 1.2.2(react@19.0.0)
|
11590 |
|
11591 | |
11592 |
|
|
|
11883 |
punycode: 1.4.1
|
11884 |
qs: 6.13.1
|
11885 |
|
11886 |
+
[email protected](@types/[email protected].16)(react@19.0.0):
|
11887 |
dependencies:
|
11888 |
+
react: 19.0.0
|
11889 |
tslib: 2.8.1
|
11890 |
optionalDependencies:
|
11891 |
+
'@types/react': 18.3.16
|
11892 |
|
11893 |
+
[email protected](@types/[email protected].16)(react@19.0.0):
|
11894 |
dependencies:
|
11895 |
detect-node-es: 1.1.0
|
11896 |
+
react: 19.0.0
|
11897 |
tslib: 2.8.1
|
11898 |
optionalDependencies:
|
11899 |
+
'@types/react': 18.3.16
|
11900 |
|
11901 |
+
[email protected](react@19.0.0):
|
11902 |
dependencies:
|
11903 |
+
react: 19.0.0
|
11904 |
|
11905 | |
11906 |
|