@almadar/orb 4.2.0 → 5.0.0
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/package.json +6 -6
- package/shells/almadar-shell/package.json +1 -1
- package/shells/almadar-shell/packages/client/package.json +6 -5
- package/shells/almadar-shell/packages/client/src/App.tsx +3 -0
- package/shells/almadar-shell/packages/server/package.json +4 -4
- package/shells/almadar-shell/pnpm-lock.yaml +69 -75
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/orb",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Orb CLI - Compile Orbital schemas to full-stack applications",
|
|
5
5
|
"license": "BSL-1.1",
|
|
6
6
|
"repository": {
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"node": ">=16.0.0"
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"@almadar/orb-darwin-x64": "
|
|
53
|
-
"@almadar/orb-darwin-arm64": "
|
|
54
|
-
"@almadar/orb-linux-x64": "
|
|
55
|
-
"@almadar/orb-linux-arm64": "
|
|
56
|
-
"@almadar/orb-windows-x64": "
|
|
52
|
+
"@almadar/orb-darwin-x64": "5.0.0",
|
|
53
|
+
"@almadar/orb-darwin-arm64": "5.0.0",
|
|
54
|
+
"@almadar/orb-linux-x64": "5.0.0",
|
|
55
|
+
"@almadar/orb-linux-arm64": "5.0.0",
|
|
56
|
+
"@almadar/orb-windows-x64": "5.0.0"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -13,10 +13,11 @@
|
|
|
13
13
|
"test:watch": "vitest"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@almadar/ui": ">=2.
|
|
17
|
-
"@almadar/
|
|
18
|
-
"@almadar/
|
|
19
|
-
"@almadar/
|
|
16
|
+
"@almadar/ui": ">=2.34.1",
|
|
17
|
+
"@almadar/syntax": ">=1.1.0",
|
|
18
|
+
"@almadar/evaluator": ">=2.6.0",
|
|
19
|
+
"@almadar/patterns": ">=2.8.12",
|
|
20
|
+
"@almadar/core": ">=2.9.0",
|
|
20
21
|
"firebase": "^11.4.0",
|
|
21
22
|
"@tanstack/react-query": "^5.67.3",
|
|
22
23
|
"react": "^19.0.0",
|
|
@@ -57,4 +58,4 @@
|
|
|
57
58
|
"vite": "^6.2.1",
|
|
58
59
|
"vitest": "^2.1.9"
|
|
59
60
|
}
|
|
60
|
-
}
|
|
61
|
+
}
|
|
@@ -16,6 +16,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
|
16
16
|
import { ThemeProvider, UISlotProvider } from '@almadar/ui/context';
|
|
17
17
|
import { UISlotComponent, NotifyListener } from '@almadar/ui/components';
|
|
18
18
|
import {
|
|
19
|
+
EntityStoreProvider,
|
|
19
20
|
EventBusProvider,
|
|
20
21
|
VerificationProvider,
|
|
21
22
|
} from '@almadar/ui/providers';
|
|
@@ -48,6 +49,7 @@ function App() {
|
|
|
48
49
|
<I18nProvider value={i18nValue}>
|
|
49
50
|
<QueryClientProvider client={queryClient}>
|
|
50
51
|
<ThemeProvider>
|
|
52
|
+
<EntityStoreProvider>
|
|
51
53
|
<EventBusProvider>
|
|
52
54
|
<VerificationProvider>
|
|
53
55
|
<UISlotProvider>
|
|
@@ -72,6 +74,7 @@ function App() {
|
|
|
72
74
|
</UISlotProvider>
|
|
73
75
|
</VerificationProvider>
|
|
74
76
|
</EventBusProvider>
|
|
77
|
+
</EntityStoreProvider>
|
|
75
78
|
</ThemeProvider>
|
|
76
79
|
</QueryClientProvider>
|
|
77
80
|
</I18nProvider>
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"test:watch": "vitest"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@almadar/server": "
|
|
17
|
-
"@almadar/evaluator": "
|
|
18
|
-
"@almadar/core": "
|
|
19
|
-
"@almadar/integrations": ">=2.
|
|
16
|
+
"@almadar/server": ">=2.1.5",
|
|
17
|
+
"@almadar/evaluator": ">=2.6.0",
|
|
18
|
+
"@almadar/core": ">=2.9.0",
|
|
19
|
+
"@almadar/integrations": ">=2.3.0",
|
|
20
20
|
"cors": "^2.8.5",
|
|
21
21
|
"dotenv": "^16.4.7",
|
|
22
22
|
"express": "^4.21.2",
|
|
@@ -23,17 +23,20 @@ importers:
|
|
|
23
23
|
packages/client:
|
|
24
24
|
dependencies:
|
|
25
25
|
'@almadar/core':
|
|
26
|
-
specifier:
|
|
27
|
-
version: 2.
|
|
26
|
+
specifier: '>=2.9.0'
|
|
27
|
+
version: 2.9.0
|
|
28
28
|
'@almadar/evaluator':
|
|
29
|
-
specifier:
|
|
30
|
-
version: 2.
|
|
29
|
+
specifier: '>=2.6.0'
|
|
30
|
+
version: 2.6.0
|
|
31
31
|
'@almadar/patterns':
|
|
32
|
-
specifier:
|
|
33
|
-
version: 2.8.
|
|
32
|
+
specifier: '>=2.8.12'
|
|
33
|
+
version: 2.8.12
|
|
34
|
+
'@almadar/syntax':
|
|
35
|
+
specifier: '>=1.1.0'
|
|
36
|
+
version: 1.1.0
|
|
34
37
|
'@almadar/ui':
|
|
35
|
-
specifier: '>=2.
|
|
36
|
-
version: 2.
|
|
38
|
+
specifier: '>=2.34.1'
|
|
39
|
+
version: 2.34.1(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.91.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)
|
|
37
40
|
'@monaco-editor/react':
|
|
38
41
|
specifier: ^4.7.0
|
|
39
42
|
version: 4.7.0(monaco-editor@0.52.2)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
|
@@ -150,17 +153,17 @@ importers:
|
|
|
150
153
|
packages/server:
|
|
151
154
|
dependencies:
|
|
152
155
|
'@almadar/core':
|
|
153
|
-
specifier:
|
|
154
|
-
version: 2.
|
|
156
|
+
specifier: '>=2.9.0'
|
|
157
|
+
version: 2.9.0
|
|
155
158
|
'@almadar/evaluator':
|
|
156
|
-
specifier:
|
|
157
|
-
version: 2.
|
|
159
|
+
specifier: '>=2.6.0'
|
|
160
|
+
version: 2.6.0
|
|
158
161
|
'@almadar/integrations':
|
|
159
|
-
specifier: '>=2.
|
|
160
|
-
version: 2.
|
|
162
|
+
specifier: '>=2.3.0'
|
|
163
|
+
version: 2.3.0(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.19.0)
|
|
161
164
|
'@almadar/server':
|
|
162
|
-
specifier:
|
|
163
|
-
version: 2.1.
|
|
165
|
+
specifier: '>=2.1.5'
|
|
166
|
+
version: 2.1.5(express@4.22.1)
|
|
164
167
|
cors:
|
|
165
168
|
specifier: ^2.8.5
|
|
166
169
|
version: 2.8.6
|
|
@@ -223,25 +226,19 @@ packages:
|
|
|
223
226
|
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
224
227
|
engines: {node: '>=10'}
|
|
225
228
|
|
|
226
|
-
'@almadar/core@2.
|
|
227
|
-
resolution: {integrity: sha512-
|
|
228
|
-
|
|
229
|
-
'@almadar/core@2.7.0':
|
|
230
|
-
resolution: {integrity: sha512-g4ItaEcrTpcMUjMcQ8Ke2NdKYKYqy5zxGW01UQhAFtB310MJVjnmQ9oG6EzuSPPkM+STu1T6yqf6uEchS4dc9Q==}
|
|
229
|
+
'@almadar/core@2.9.0':
|
|
230
|
+
resolution: {integrity: sha512-T7bZ8/j2dhrr8apjlgwcjbYaUtNvd1vqdMVhtCL7DXayRcaZA4qSbr7r3cP7kVf9i1mEVL7bad8d12DOiNvpHw==}
|
|
231
231
|
|
|
232
232
|
'@almadar/eslint-plugin@2.5.0':
|
|
233
233
|
resolution: {integrity: sha512-rt5ATRUHyhke7yCBn5qUXyjKDEQaFXs8wqOWtd/Yh5IuuMn9p2Q7UupYUzfCwLmBXBYjwLxpat/A7En4lWrcFA==}
|
|
234
234
|
peerDependencies:
|
|
235
235
|
eslint: '>=8.0.0'
|
|
236
236
|
|
|
237
|
-
'@almadar/evaluator@2.
|
|
238
|
-
resolution: {integrity: sha512-
|
|
239
|
-
|
|
240
|
-
'@almadar/evaluator@2.5.6':
|
|
241
|
-
resolution: {integrity: sha512-CaCvPCFerOfN0/YtHB/JtkgmTh/j00UKBEnb/nZWrctOI2uw8S81KiIqMBpXNfxkSE0nU9xKz5Jx466FbGTTgg==}
|
|
237
|
+
'@almadar/evaluator@2.6.0':
|
|
238
|
+
resolution: {integrity: sha512-gr9xpaxYxTFZ0vBvGliITo7xbq11vb1HvfNldIJlyVd9kFiWGrygOT6XWZkXH72mwDZwhxazSYLVXRD7e1eZeg==}
|
|
242
239
|
|
|
243
|
-
'@almadar/integrations@2.
|
|
244
|
-
resolution: {integrity: sha512-
|
|
240
|
+
'@almadar/integrations@2.3.0':
|
|
241
|
+
resolution: {integrity: sha512-ovUYloVbXzKhwoKPYZFRj466fE9d+/5rO8XF20uiHgVv+bzAzfyqM0qBpUbJAmoXgOQFqv3s3Vlv48jfE9c3ow==}
|
|
245
242
|
|
|
246
243
|
'@almadar/llm@2.5.0':
|
|
247
244
|
resolution: {integrity: sha512-BywM6Lz4T57zvWHd5BD0SRSEx+mtW3oaL8icoSSpnjikS0urGdRRfSprF+vtqNpu/MXEsCTYHpNXFqv+Dq+Obw==}
|
|
@@ -251,25 +248,19 @@ packages:
|
|
|
251
248
|
'@almadar/core':
|
|
252
249
|
optional: true
|
|
253
250
|
|
|
254
|
-
'@almadar/operators@2.1.1':
|
|
255
|
-
resolution: {integrity: sha512-DxyB2CAU7dmxQPM+T17xtIAN7MT+DWXzM/SqM/1us1F4oDEsG5R0DKXwy9WLO5kpLaxlBTMPwGTz4wyaXnS9pA==}
|
|
256
|
-
|
|
257
251
|
'@almadar/operators@2.1.3':
|
|
258
252
|
resolution: {integrity: sha512-0wjRClcWT/DcYtmnTku/IIXWGCLzMzai/a/KwP4NorkqjDIEY9+vmAui4qB6rePhkT2aOfLb4sP8uX7vvyG7nw==}
|
|
259
253
|
|
|
260
|
-
'@almadar/patterns@2.8.
|
|
261
|
-
resolution: {integrity: sha512-
|
|
262
|
-
|
|
263
|
-
'@almadar/patterns@2.8.11':
|
|
264
|
-
resolution: {integrity: sha512-QSRezI/VtwjWc3LgHCENL+U/2kvdIbF5dLKyDAqkAmOfQpEs9sZg8kwlzSGzTs22e19hf5PrEyVG2zquF4/YVA==}
|
|
254
|
+
'@almadar/patterns@2.8.12':
|
|
255
|
+
resolution: {integrity: sha512-v18xfyvbOCSEt7TmZ0QrJqeuEPuBVRUXGFw4kl7HYF5gHH9YELLAvgrAKgtr/HD7YLYmkVQEstILBOnRfB4lAA==}
|
|
265
256
|
|
|
266
257
|
'@almadar/runtime@2.1.1':
|
|
267
258
|
resolution: {integrity: sha512-4OaBp+BsXeXPJSJ2H78k352PpRtUjK4NH3CM9jLJ8Kni9dPEAZdlTFS0/pLQqskiFZPz68NnbZg+I+/KHTrJ7w==}
|
|
268
259
|
peerDependencies:
|
|
269
260
|
express: ^4.0.0
|
|
270
261
|
|
|
271
|
-
'@almadar/server@2.1.
|
|
272
|
-
resolution: {integrity: sha512-
|
|
262
|
+
'@almadar/server@2.1.5':
|
|
263
|
+
resolution: {integrity: sha512-phncLEABsWgbksjXPwFCyG56F69sqXqc1FD0eE0R+WRYNyxMQh/zfUo7eengBif5lpXRaazE8J8+veKpEq2NuA==}
|
|
273
264
|
peerDependencies:
|
|
274
265
|
'@almadar-io/agent': '>=2.0.1'
|
|
275
266
|
express: ^4.0.0
|
|
@@ -277,8 +268,14 @@ packages:
|
|
|
277
268
|
'@almadar-io/agent':
|
|
278
269
|
optional: true
|
|
279
270
|
|
|
280
|
-
'@almadar/
|
|
281
|
-
resolution: {integrity: sha512-
|
|
271
|
+
'@almadar/std@3.6.1':
|
|
272
|
+
resolution: {integrity: sha512-0gBUaungcYj4LFM1T0j70TE43nWflbTFSGMHIOVczWhN/3Kjt9/5oAycGg8inSz6XaAuRiBUy+njPO1T4yJLdw==}
|
|
273
|
+
|
|
274
|
+
'@almadar/syntax@1.1.0':
|
|
275
|
+
resolution: {integrity: sha512-y062uC4EG/IudJXIaeT3ReVpJnmYolUpGtr9bFeqMTCdaFMAW1dkvD8kaB1Ui1xj33oW3ZG2RvTdsrpDbgcJzg==}
|
|
276
|
+
|
|
277
|
+
'@almadar/ui@2.34.1':
|
|
278
|
+
resolution: {integrity: sha512-uUOEZWQGgwFVO4GcEiXqtqFNqUenQbvoLUJZa8J04lA0S7b9C0HvZDSIW4PiJbWyHPkSvusuhSFQScUnJc20Aw==}
|
|
282
279
|
peerDependencies:
|
|
283
280
|
'@react-three/drei': ^9.92.0 || ^10.0.0
|
|
284
281
|
'@react-three/fiber': ^9.0.0
|
|
@@ -4152,16 +4149,10 @@ snapshots:
|
|
|
4152
4149
|
|
|
4153
4150
|
'@alloc/quick-lru@5.2.0': {}
|
|
4154
4151
|
|
|
4155
|
-
'@almadar/core@2.
|
|
4156
|
-
dependencies:
|
|
4157
|
-
'@almadar/operators': 2.1.1
|
|
4158
|
-
'@almadar/patterns': 2.8.1
|
|
4159
|
-
zod: 3.25.76
|
|
4160
|
-
|
|
4161
|
-
'@almadar/core@2.7.0':
|
|
4152
|
+
'@almadar/core@2.9.0':
|
|
4162
4153
|
dependencies:
|
|
4163
4154
|
'@almadar/operators': 2.1.3
|
|
4164
|
-
'@almadar/patterns': 2.8.
|
|
4155
|
+
'@almadar/patterns': 2.8.12
|
|
4165
4156
|
zod: 3.25.76
|
|
4166
4157
|
|
|
4167
4158
|
'@almadar/eslint-plugin@2.5.0(eslint@10.0.0(jiti@1.21.7))':
|
|
@@ -4169,21 +4160,16 @@ snapshots:
|
|
|
4169
4160
|
eslint: 10.0.0(jiti@1.21.7)
|
|
4170
4161
|
jsonc-eslint-parser: 3.1.0
|
|
4171
4162
|
|
|
4172
|
-
'@almadar/evaluator@2.
|
|
4163
|
+
'@almadar/evaluator@2.6.0':
|
|
4173
4164
|
dependencies:
|
|
4174
|
-
'@almadar/core': 2.
|
|
4175
|
-
'@almadar/operators': 2.1.1
|
|
4176
|
-
|
|
4177
|
-
'@almadar/evaluator@2.5.6':
|
|
4178
|
-
dependencies:
|
|
4179
|
-
'@almadar/core': 2.7.0
|
|
4165
|
+
'@almadar/core': 2.9.0
|
|
4180
4166
|
'@almadar/operators': 2.1.3
|
|
4181
4167
|
|
|
4182
|
-
'@almadar/integrations@2.
|
|
4168
|
+
'@almadar/integrations@2.3.0(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.19.0)':
|
|
4183
4169
|
dependencies:
|
|
4184
|
-
'@almadar/core': 2.
|
|
4185
|
-
'@almadar/llm': 2.5.0(@almadar/core@2.
|
|
4186
|
-
'@almadar/patterns': 2.8.
|
|
4170
|
+
'@almadar/core': 2.9.0
|
|
4171
|
+
'@almadar/llm': 2.5.0(@almadar/core@2.9.0)(@opentelemetry/api@1.9.0)(ws@8.19.0)
|
|
4172
|
+
'@almadar/patterns': 2.8.12
|
|
4187
4173
|
'@sendgrid/mail': 8.1.6
|
|
4188
4174
|
dotenv: 16.6.1
|
|
4189
4175
|
googleapis: 144.0.0
|
|
@@ -4202,7 +4188,7 @@ snapshots:
|
|
|
4202
4188
|
- supports-color
|
|
4203
4189
|
- ws
|
|
4204
4190
|
|
|
4205
|
-
'@almadar/llm@2.5.0(@almadar/core@2.
|
|
4191
|
+
'@almadar/llm@2.5.0(@almadar/core@2.9.0)(@opentelemetry/api@1.9.0)(ws@8.19.0)':
|
|
4206
4192
|
dependencies:
|
|
4207
4193
|
'@anthropic-ai/sdk': 0.52.0
|
|
4208
4194
|
'@langchain/anthropic': 1.3.25(@langchain/core@1.1.35(@opentelemetry/api@1.9.0)(openai@6.32.0(ws@8.19.0)(zod@3.25.76))(ws@8.19.0))
|
|
@@ -4211,32 +4197,28 @@ snapshots:
|
|
|
4211
4197
|
openai: 6.32.0(ws@8.19.0)(zod@3.25.76)
|
|
4212
4198
|
zod: 3.25.76
|
|
4213
4199
|
optionalDependencies:
|
|
4214
|
-
'@almadar/core': 2.
|
|
4200
|
+
'@almadar/core': 2.9.0
|
|
4215
4201
|
transitivePeerDependencies:
|
|
4216
4202
|
- '@opentelemetry/api'
|
|
4217
4203
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
4218
4204
|
- '@opentelemetry/sdk-trace-base'
|
|
4219
4205
|
- ws
|
|
4220
4206
|
|
|
4221
|
-
'@almadar/operators@2.1.1': {}
|
|
4222
|
-
|
|
4223
4207
|
'@almadar/operators@2.1.3': {}
|
|
4224
4208
|
|
|
4225
|
-
'@almadar/patterns@2.8.
|
|
4226
|
-
|
|
4227
|
-
'@almadar/patterns@2.8.11': {}
|
|
4209
|
+
'@almadar/patterns@2.8.12': {}
|
|
4228
4210
|
|
|
4229
4211
|
'@almadar/runtime@2.1.1(express@4.22.1)':
|
|
4230
4212
|
dependencies:
|
|
4231
|
-
'@almadar/core': 2.
|
|
4232
|
-
'@almadar/evaluator': 2.
|
|
4233
|
-
'@almadar/operators': 2.1.
|
|
4213
|
+
'@almadar/core': 2.9.0
|
|
4214
|
+
'@almadar/evaluator': 2.6.0
|
|
4215
|
+
'@almadar/operators': 2.1.3
|
|
4234
4216
|
'@faker-js/faker': 9.9.0
|
|
4235
4217
|
express: 4.22.1
|
|
4236
4218
|
|
|
4237
|
-
'@almadar/server@2.1.
|
|
4219
|
+
'@almadar/server@2.1.5(express@4.22.1)':
|
|
4238
4220
|
dependencies:
|
|
4239
|
-
'@almadar/core': 2.
|
|
4221
|
+
'@almadar/core': 2.9.0
|
|
4240
4222
|
'@faker-js/faker': 9.9.0
|
|
4241
4223
|
cors: 2.8.6
|
|
4242
4224
|
dotenv: 16.6.1
|
|
@@ -4251,12 +4233,24 @@ snapshots:
|
|
|
4251
4233
|
- supports-color
|
|
4252
4234
|
- utf-8-validate
|
|
4253
4235
|
|
|
4254
|
-
'@almadar/
|
|
4236
|
+
'@almadar/std@3.6.1':
|
|
4237
|
+
dependencies:
|
|
4238
|
+
'@almadar/core': 2.9.0
|
|
4239
|
+
'@almadar/operators': 2.1.3
|
|
4240
|
+
|
|
4241
|
+
'@almadar/syntax@1.1.0':
|
|
4242
|
+
dependencies:
|
|
4243
|
+
'@almadar/core': 2.9.0
|
|
4244
|
+
'@almadar/operators': 2.1.3
|
|
4245
|
+
'@almadar/patterns': 2.8.12
|
|
4246
|
+
|
|
4247
|
+
'@almadar/ui@2.34.1(@react-three/drei@9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4)))(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@react-three/postprocessing@3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1))(@tanstack/react-query@5.91.2(react@19.2.4))(@types/react@19.2.14)(express@4.22.1)(react-dom@19.2.4(react@19.2.4))(react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(three@0.160.1)':
|
|
4255
4248
|
dependencies:
|
|
4256
|
-
'@almadar/core': 2.
|
|
4257
|
-
'@almadar/evaluator': 2.
|
|
4258
|
-
'@almadar/patterns': 2.8.
|
|
4249
|
+
'@almadar/core': 2.9.0
|
|
4250
|
+
'@almadar/evaluator': 2.6.0
|
|
4251
|
+
'@almadar/patterns': 2.8.12
|
|
4259
4252
|
'@almadar/runtime': 2.1.1(express@4.22.1)
|
|
4253
|
+
'@almadar/std': 3.6.1
|
|
4260
4254
|
'@react-three/drei': 9.122.0(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/react@19.2.14)(@types/three@0.183.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)(use-sync-external-store@1.6.0(react@19.2.4))
|
|
4261
4255
|
'@react-three/fiber': 9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1)
|
|
4262
4256
|
'@react-three/postprocessing': 3.0.4(@react-three/fiber@9.5.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(three@0.160.1))(@types/three@0.183.1)(react@19.2.4)(three@0.160.1)
|