@almadar/cli-linux-x64 1.8.0 → 1.9.1
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/almadar +0 -0
- package/package.json +1 -1
- package/shells/almadar-shell/package.json +2 -2
- package/shells/almadar-shell/packages/client/package.json +3 -1
- package/shells/almadar-shell/packages/client/src/App.tsx +5 -0
- package/shells/almadar-shell/packages/client/src/index.css +31 -2
- package/shells/almadar-shell/packages/client/tsconfig.json +1 -1
- package/shells/almadar-shell/pnpm-lock.yaml +88 -6
package/almadar
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/shell",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Minimal full-stack shell template for Almadar applications",
|
|
6
|
-
"packageManager": "pnpm@
|
|
6
|
+
"packageManager": "pnpm@10.30.3",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"dev": "npx concurrently -n client,server -c blue,green \"pnpm --filter @almadar/shell-client dev\" \"pnpm --filter @almadar/shell-server dev\"",
|
|
9
9
|
"build": "pnpm run -r build",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"test:watch": "vitest"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@almadar/ui": "^2.
|
|
16
|
+
"@almadar/ui": "^2.6.0",
|
|
17
17
|
"@almadar/evaluator": "^2.0.0",
|
|
18
18
|
"@almadar/patterns": "^2.0.0",
|
|
19
19
|
"@almadar/core": "^2.1.0",
|
|
@@ -31,6 +31,8 @@
|
|
|
31
31
|
"react-force-graph-2d": "^1.25.5",
|
|
32
32
|
"@monaco-editor/react": "^4.7.0",
|
|
33
33
|
"monaco-editor": "^0.52.2",
|
|
34
|
+
"leaflet": "^1.9.4",
|
|
35
|
+
"react-leaflet": "^4.2.1",
|
|
34
36
|
"lucide-react": "^0.344.0"
|
|
35
37
|
},
|
|
36
38
|
"devDependencies": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
import { BrowserRouter, Routes, Route } from 'react-router-dom';
|
|
15
15
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
16
16
|
import { ThemeProvider, UISlotProvider } from '@almadar/ui/context';
|
|
17
|
+
import { UISlotComponent, NotifyListener } from '@almadar/ui/components';
|
|
17
18
|
import {
|
|
18
19
|
EventBusProvider,
|
|
19
20
|
VerificationProvider,
|
|
@@ -60,6 +61,10 @@ function App() {
|
|
|
60
61
|
{/* {{GENERATED_ROUTES}} */}
|
|
61
62
|
<Route path="/" element={<div>Welcome to Almadar</div>} />
|
|
62
63
|
</Routes>
|
|
64
|
+
{/* Portal slots rendered by compiled trait views via CompiledPortal */}
|
|
65
|
+
{/* Toast notifications (non-overlapping, always safe to render here) */}
|
|
66
|
+
<UISlotComponent slot="toast" portal />
|
|
67
|
+
<NotifyListener />
|
|
63
68
|
</BrowserRouter>
|
|
64
69
|
</NavigationProvider>
|
|
65
70
|
</UISlotProvider>
|
|
@@ -1,6 +1,35 @@
|
|
|
1
|
+
/* Import Almadar theme - @import must precede @tailwind directives */
|
|
2
|
+
@import '@almadar/ui/themes/almadar.css';
|
|
3
|
+
|
|
1
4
|
@tailwind base;
|
|
2
5
|
@tailwind components;
|
|
3
6
|
@tailwind utilities;
|
|
4
7
|
|
|
5
|
-
/*
|
|
6
|
-
|
|
8
|
+
/* Page-level layout: padding and max-width for main content area */
|
|
9
|
+
.ui-slot-main {
|
|
10
|
+
padding: 1.5rem 1rem;
|
|
11
|
+
max-width: 80rem;
|
|
12
|
+
margin-left: auto;
|
|
13
|
+
margin-right: auto;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@media (min-width: 768px) {
|
|
17
|
+
.ui-slot-main {
|
|
18
|
+
padding: 1.5rem 1.5rem;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@media (min-width: 1024px) {
|
|
23
|
+
.ui-slot-main {
|
|
24
|
+
padding: 2rem 2rem;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/* Global transition baseline: smooth state changes on interactive elements */
|
|
29
|
+
button,
|
|
30
|
+
a,
|
|
31
|
+
[role="button"],
|
|
32
|
+
[data-entity-row],
|
|
33
|
+
[data-interactive] {
|
|
34
|
+
transition: all var(--transition-normal, 250ms) var(--transition-timing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
35
|
+
}
|
|
@@ -27,8 +27,8 @@ importers:
|
|
|
27
27
|
specifier: ^2.0.0
|
|
28
28
|
version: 2.0.1
|
|
29
29
|
'@almadar/ui':
|
|
30
|
-
specifier: ^2.
|
|
31
|
-
version: 2.
|
|
30
|
+
specifier: ^2.6.0
|
|
31
|
+
version: 2.6.0(@react-three/drei@10.7.7(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@types/react@18.3.28)(@types/three@0.183.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@tanstack/react-query@5.90.21(react@18.3.1))(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react-router-dom@7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(three@0.160.1)
|
|
32
32
|
'@monaco-editor/react':
|
|
33
33
|
specifier: ^4.7.0
|
|
34
34
|
version: 4.7.0(monaco-editor@0.52.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
@@ -38,6 +38,9 @@ importers:
|
|
|
38
38
|
firebase:
|
|
39
39
|
specifier: ^11.4.0
|
|
40
40
|
version: 11.10.0
|
|
41
|
+
leaflet:
|
|
42
|
+
specifier: ^1.9.4
|
|
43
|
+
version: 1.9.4
|
|
41
44
|
lucide-react:
|
|
42
45
|
specifier: ^0.344.0
|
|
43
46
|
version: 0.344.0(react@18.3.1)
|
|
@@ -53,6 +56,9 @@ importers:
|
|
|
53
56
|
react-force-graph-2d:
|
|
54
57
|
specifier: ^1.25.5
|
|
55
58
|
version: 1.29.1(react@18.3.1)
|
|
59
|
+
react-leaflet:
|
|
60
|
+
specifier: ^4.2.1
|
|
61
|
+
version: 4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
56
62
|
react-markdown:
|
|
57
63
|
specifier: ^9.0.1
|
|
58
64
|
version: 9.1.0(@types/react@18.3.28)(react@18.3.1)
|
|
@@ -241,8 +247,8 @@ packages:
|
|
|
241
247
|
'@almadar/std@2.1.1':
|
|
242
248
|
resolution: {integrity: sha512-VL1BetWOMWXAv8+vQzX72+LrXz+CFdhcqJyoQKkBzUDzSX7YAJ0ojUXG1R1bHU5XLHvRTHl4LTZnXxUaNHpI1w==}
|
|
243
249
|
|
|
244
|
-
'@almadar/ui@2.
|
|
245
|
-
resolution: {integrity: sha512-
|
|
250
|
+
'@almadar/ui@2.6.0':
|
|
251
|
+
resolution: {integrity: sha512-o4MS75RjQtc9dF4yog5ZliYq3t1i8nyZUiGilcWCdGGpg2FEwkx/Toe4mEveVsasfFNuootYRQ5uDSWpvTCNxQ==}
|
|
246
252
|
peerDependencies:
|
|
247
253
|
'@react-three/drei': ^9.92.0 || ^10.0.0
|
|
248
254
|
'@react-three/fiber': ^8.15.0
|
|
@@ -1312,6 +1318,13 @@ packages:
|
|
|
1312
1318
|
react: ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1313
1319
|
react-dom: ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1314
1320
|
|
|
1321
|
+
'@react-leaflet/core@2.1.0':
|
|
1322
|
+
resolution: {integrity: sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==}
|
|
1323
|
+
peerDependencies:
|
|
1324
|
+
leaflet: ^1.9.0
|
|
1325
|
+
react: ^18.0.0
|
|
1326
|
+
react-dom: ^18.0.0
|
|
1327
|
+
|
|
1315
1328
|
'@react-three/drei@10.7.7':
|
|
1316
1329
|
resolution: {integrity: sha512-ff+J5iloR0k4tC++QtD/j9u3w5fzfgFAWDtAGQah9pF2B1YgOq/5JxqY0/aVoQG5r3xSZz0cv5tk2YuBob4xEQ==}
|
|
1317
1330
|
peerDependencies:
|
|
@@ -1385,66 +1398,79 @@ packages:
|
|
|
1385
1398
|
resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
|
|
1386
1399
|
cpu: [arm]
|
|
1387
1400
|
os: [linux]
|
|
1401
|
+
libc: [glibc]
|
|
1388
1402
|
|
|
1389
1403
|
'@rollup/rollup-linux-arm-musleabihf@4.59.0':
|
|
1390
1404
|
resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
|
|
1391
1405
|
cpu: [arm]
|
|
1392
1406
|
os: [linux]
|
|
1407
|
+
libc: [musl]
|
|
1393
1408
|
|
|
1394
1409
|
'@rollup/rollup-linux-arm64-gnu@4.59.0':
|
|
1395
1410
|
resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
|
|
1396
1411
|
cpu: [arm64]
|
|
1397
1412
|
os: [linux]
|
|
1413
|
+
libc: [glibc]
|
|
1398
1414
|
|
|
1399
1415
|
'@rollup/rollup-linux-arm64-musl@4.59.0':
|
|
1400
1416
|
resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
|
|
1401
1417
|
cpu: [arm64]
|
|
1402
1418
|
os: [linux]
|
|
1419
|
+
libc: [musl]
|
|
1403
1420
|
|
|
1404
1421
|
'@rollup/rollup-linux-loong64-gnu@4.59.0':
|
|
1405
1422
|
resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
|
|
1406
1423
|
cpu: [loong64]
|
|
1407
1424
|
os: [linux]
|
|
1425
|
+
libc: [glibc]
|
|
1408
1426
|
|
|
1409
1427
|
'@rollup/rollup-linux-loong64-musl@4.59.0':
|
|
1410
1428
|
resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
|
|
1411
1429
|
cpu: [loong64]
|
|
1412
1430
|
os: [linux]
|
|
1431
|
+
libc: [musl]
|
|
1413
1432
|
|
|
1414
1433
|
'@rollup/rollup-linux-ppc64-gnu@4.59.0':
|
|
1415
1434
|
resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
|
|
1416
1435
|
cpu: [ppc64]
|
|
1417
1436
|
os: [linux]
|
|
1437
|
+
libc: [glibc]
|
|
1418
1438
|
|
|
1419
1439
|
'@rollup/rollup-linux-ppc64-musl@4.59.0':
|
|
1420
1440
|
resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
|
|
1421
1441
|
cpu: [ppc64]
|
|
1422
1442
|
os: [linux]
|
|
1443
|
+
libc: [musl]
|
|
1423
1444
|
|
|
1424
1445
|
'@rollup/rollup-linux-riscv64-gnu@4.59.0':
|
|
1425
1446
|
resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
|
|
1426
1447
|
cpu: [riscv64]
|
|
1427
1448
|
os: [linux]
|
|
1449
|
+
libc: [glibc]
|
|
1428
1450
|
|
|
1429
1451
|
'@rollup/rollup-linux-riscv64-musl@4.59.0':
|
|
1430
1452
|
resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
|
|
1431
1453
|
cpu: [riscv64]
|
|
1432
1454
|
os: [linux]
|
|
1455
|
+
libc: [musl]
|
|
1433
1456
|
|
|
1434
1457
|
'@rollup/rollup-linux-s390x-gnu@4.59.0':
|
|
1435
1458
|
resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
|
|
1436
1459
|
cpu: [s390x]
|
|
1437
1460
|
os: [linux]
|
|
1461
|
+
libc: [glibc]
|
|
1438
1462
|
|
|
1439
1463
|
'@rollup/rollup-linux-x64-gnu@4.59.0':
|
|
1440
1464
|
resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
|
|
1441
1465
|
cpu: [x64]
|
|
1442
1466
|
os: [linux]
|
|
1467
|
+
libc: [glibc]
|
|
1443
1468
|
|
|
1444
1469
|
'@rollup/rollup-linux-x64-musl@4.59.0':
|
|
1445
1470
|
resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
|
|
1446
1471
|
cpu: [x64]
|
|
1447
1472
|
os: [linux]
|
|
1473
|
+
libc: [musl]
|
|
1448
1474
|
|
|
1449
1475
|
'@rollup/rollup-openbsd-x64@4.59.0':
|
|
1450
1476
|
resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
|
|
@@ -3003,9 +3029,29 @@ packages:
|
|
|
3003
3029
|
openai:
|
|
3004
3030
|
optional: true
|
|
3005
3031
|
|
|
3032
|
+
langsmith@0.5.9:
|
|
3033
|
+
resolution: {integrity: sha512-mT88HlYTz7IZzVJP/OM7D6PAR3kzcbPGjYDJpx64ua9WiJXFqQx6YKewxIIxkVSZCb9I/9TiYvPYfZ4rawOdEg==}
|
|
3034
|
+
peerDependencies:
|
|
3035
|
+
'@opentelemetry/api': '*'
|
|
3036
|
+
'@opentelemetry/exporter-trace-otlp-proto': '*'
|
|
3037
|
+
'@opentelemetry/sdk-trace-base': '*'
|
|
3038
|
+
openai: '*'
|
|
3039
|
+
peerDependenciesMeta:
|
|
3040
|
+
'@opentelemetry/api':
|
|
3041
|
+
optional: true
|
|
3042
|
+
'@opentelemetry/exporter-trace-otlp-proto':
|
|
3043
|
+
optional: true
|
|
3044
|
+
'@opentelemetry/sdk-trace-base':
|
|
3045
|
+
optional: true
|
|
3046
|
+
openai:
|
|
3047
|
+
optional: true
|
|
3048
|
+
|
|
3006
3049
|
leac@0.6.0:
|
|
3007
3050
|
resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==}
|
|
3008
3051
|
|
|
3052
|
+
leaflet@1.9.4:
|
|
3053
|
+
resolution: {integrity: sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==}
|
|
3054
|
+
|
|
3009
3055
|
levn@0.4.1:
|
|
3010
3056
|
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
3011
3057
|
engines: {node: '>= 0.8.0'}
|
|
@@ -3665,6 +3711,13 @@ packages:
|
|
|
3665
3711
|
peerDependencies:
|
|
3666
3712
|
react: '>=16.13.1'
|
|
3667
3713
|
|
|
3714
|
+
react-leaflet@4.2.1:
|
|
3715
|
+
resolution: {integrity: sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==}
|
|
3716
|
+
peerDependencies:
|
|
3717
|
+
leaflet: ^1.9.0
|
|
3718
|
+
react: ^18.0.0
|
|
3719
|
+
react-dom: ^18.0.0
|
|
3720
|
+
|
|
3668
3721
|
react-markdown@9.1.0:
|
|
3669
3722
|
resolution: {integrity: sha512-xaijuJB0kzGiUdG7nc2MOMDUDBWPyGAjZtUrow9XxUeua8IqeP+VlIfAZ3bphpcLTnSZXz6z9jcVC/TCwbfgdw==}
|
|
3670
3723
|
peerDependencies:
|
|
@@ -4703,7 +4756,7 @@ snapshots:
|
|
|
4703
4756
|
'@almadar/core': 2.1.3
|
|
4704
4757
|
'@almadar/operators': 2.0.3
|
|
4705
4758
|
|
|
4706
|
-
'@almadar/ui@2.
|
|
4759
|
+
'@almadar/ui@2.6.0(@react-three/drei@10.7.7(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@types/react@18.3.28)(@types/three@0.183.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@tanstack/react-query@5.90.21(react@18.3.1))(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react-router-dom@7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(three@0.160.1)':
|
|
4707
4760
|
dependencies:
|
|
4708
4761
|
'@almadar/core': 2.1.3
|
|
4709
4762
|
'@almadar/evaluator': 2.1.1
|
|
@@ -4712,9 +4765,11 @@ snapshots:
|
|
|
4712
4765
|
'@react-three/fiber': 8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1)
|
|
4713
4766
|
'@tanstack/react-query': 5.90.21(react@18.3.1)
|
|
4714
4767
|
clsx: 2.1.1
|
|
4768
|
+
leaflet: 1.9.4
|
|
4715
4769
|
lucide-react: 0.344.0(react@18.3.1)
|
|
4716
4770
|
react: 18.3.1
|
|
4717
4771
|
react-dom: 18.3.1(react@18.3.1)
|
|
4772
|
+
react-leaflet: 4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
4718
4773
|
react-markdown: 9.1.0(@types/react@18.3.28)(react@18.3.1)
|
|
4719
4774
|
react-router-dom: 7.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
4720
4775
|
react-syntax-highlighter: 16.1.1(react@18.3.1)
|
|
@@ -5756,6 +5811,12 @@ snapshots:
|
|
|
5756
5811
|
react-dom: 18.3.1(react@18.3.1)
|
|
5757
5812
|
react-promise-suspense: 0.3.4
|
|
5758
5813
|
|
|
5814
|
+
'@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
5815
|
+
dependencies:
|
|
5816
|
+
leaflet: 1.9.4
|
|
5817
|
+
react: 18.3.1
|
|
5818
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
5819
|
+
|
|
5759
5820
|
'@react-three/drei@10.7.7(@react-three/fiber@8.18.0(@types/react@18.3.28)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1))(@types/react@18.3.28)(@types/three@0.183.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(three@0.160.1)':
|
|
5760
5821
|
dependencies:
|
|
5761
5822
|
'@babel/runtime': 7.28.6
|
|
@@ -7747,7 +7808,7 @@ snapshots:
|
|
|
7747
7808
|
'@langchain/core': 1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
|
|
7748
7809
|
'@langchain/langgraph': 1.2.0(@langchain/core@1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@3.25.76)
|
|
7749
7810
|
'@langchain/langgraph-checkpoint': 1.0.0(@langchain/core@1.1.30(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76)))
|
|
7750
|
-
langsmith: 0.5.
|
|
7811
|
+
langsmith: 0.5.9(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76))
|
|
7751
7812
|
uuid: 10.0.0
|
|
7752
7813
|
zod: 3.25.76
|
|
7753
7814
|
transitivePeerDependencies:
|
|
@@ -7782,8 +7843,22 @@ snapshots:
|
|
|
7782
7843
|
'@opentelemetry/api': 1.9.0
|
|
7783
7844
|
openai: 6.25.0(ws@8.19.0)(zod@3.25.76)
|
|
7784
7845
|
|
|
7846
|
+
langsmith@0.5.9(@opentelemetry/api@1.9.0)(openai@6.25.0(ws@8.19.0)(zod@3.25.76)):
|
|
7847
|
+
dependencies:
|
|
7848
|
+
'@types/uuid': 10.0.0
|
|
7849
|
+
chalk: 5.6.2
|
|
7850
|
+
console-table-printer: 2.15.0
|
|
7851
|
+
p-queue: 6.6.2
|
|
7852
|
+
semver: 7.7.4
|
|
7853
|
+
uuid: 10.0.0
|
|
7854
|
+
optionalDependencies:
|
|
7855
|
+
'@opentelemetry/api': 1.9.0
|
|
7856
|
+
openai: 6.25.0(ws@8.19.0)(zod@3.25.76)
|
|
7857
|
+
|
|
7785
7858
|
leac@0.6.0: {}
|
|
7786
7859
|
|
|
7860
|
+
leaflet@1.9.4: {}
|
|
7861
|
+
|
|
7787
7862
|
levn@0.4.1:
|
|
7788
7863
|
dependencies:
|
|
7789
7864
|
prelude-ls: 1.2.1
|
|
@@ -8615,6 +8690,13 @@ snapshots:
|
|
|
8615
8690
|
jerrypick: 1.1.2
|
|
8616
8691
|
react: 18.3.1
|
|
8617
8692
|
|
|
8693
|
+
react-leaflet@4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
|
|
8694
|
+
dependencies:
|
|
8695
|
+
'@react-leaflet/core': 2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
8696
|
+
leaflet: 1.9.4
|
|
8697
|
+
react: 18.3.1
|
|
8698
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
8699
|
+
|
|
8618
8700
|
react-markdown@9.1.0(@types/react@18.3.28)(react@18.3.1):
|
|
8619
8701
|
dependencies:
|
|
8620
8702
|
'@types/hast': 3.0.4
|