@almadar/orb 4.3.0 → 4.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +57 -19
- package/bin/{almadar → orb} +30 -24
- package/package.json +9 -9
- package/scripts/postinstall.js +25 -15
- package/shells/almadar-shell/package.json +1 -1
- package/shells/almadar-shell/packages/client/package.json +6 -6
- package/shells/almadar-shell/packages/client/src/App.tsx +0 -3
- package/shells/almadar-shell/packages/server/package.json +6 -5
- package/shells/almadar-shell/packages/shared/package.json +1 -0
- package/shells/almadar-shell/packages/shared/pnpm-lock.yaml +22 -0
- package/shells/almadar-shell/pnpm-lock.yaml +97 -85
- package/shells/almadar-shell-hono/LICENSE +72 -0
- package/shells/almadar-shell-hono/README.md +25 -0
- package/shells/almadar-shell-hono/locales/en.json +120 -0
- package/shells/almadar-shell-hono/package.json +31 -0
- package/shells/almadar-shell-hono/packages/client/eslint.config.cjs +23 -0
- package/shells/almadar-shell-hono/packages/client/index.html +13 -0
- package/shells/almadar-shell-hono/packages/client/package-lock.json +9750 -0
- package/shells/almadar-shell-hono/packages/client/package.json +61 -0
- package/shells/almadar-shell-hono/packages/client/postcss.config.js +6 -0
- package/shells/almadar-shell-hono/packages/client/src/App.tsx +84 -0
- package/shells/almadar-shell-hono/packages/client/src/config/firebase.ts +37 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/AuthContext.tsx +139 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/authService.ts +83 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/components/Login.tsx +218 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/components/ProtectedRoute.tsx +27 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/components/UserProfile.tsx +68 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/components/index.ts +3 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/index.ts +13 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/types.ts +24 -0
- package/shells/almadar-shell-hono/packages/client/src/index.css +35 -0
- package/shells/almadar-shell-hono/packages/client/src/main.tsx +8 -0
- package/shells/almadar-shell-hono/packages/client/src/navigation/index.ts +55 -0
- package/shells/almadar-shell-hono/packages/client/src/pages/index.ts +12 -0
- package/shells/almadar-shell-hono/packages/client/tailwind-preset.cjs +259 -0
- package/shells/almadar-shell-hono/packages/client/tailwind.config.js +21 -0
- package/shells/almadar-shell-hono/packages/client/tsconfig.json +33 -0
- package/shells/almadar-shell-hono/packages/client/vite.config.ts +50 -0
- package/shells/almadar-shell-hono/packages/server/eslint.config.cjs +19 -0
- package/shells/almadar-shell-hono/packages/server/package.json +38 -0
- package/shells/almadar-shell-hono/packages/server/pnpm-lock.yaml +4665 -0
- package/shells/almadar-shell-hono/packages/server/src/app.ts +31 -0
- package/shells/almadar-shell-hono/packages/server/src/index.ts +31 -0
- package/shells/almadar-shell-hono/packages/server/src/routes.ts +12 -0
- package/shells/almadar-shell-hono/packages/server/src/serve.ts +45 -0
- package/shells/almadar-shell-hono/packages/server/tsconfig.json +23 -0
- package/shells/almadar-shell-hono/packages/shared/package.json +25 -0
- package/shells/almadar-shell-hono/packages/shared/pnpm-lock.yaml +919 -0
- package/shells/almadar-shell-hono/packages/shared/src/index.ts +2 -0
- package/shells/almadar-shell-hono/packages/shared/tsconfig.json +17 -0
- package/shells/almadar-shell-hono/packages/shared/tsup.config.ts +10 -0
- package/shells/almadar-shell-hono/pnpm-lock.yaml +9426 -0
- package/shells/almadar-shell-hono/pnpm-workspace.yaml +2 -0
- package/shells/almadar-shell-hono/tsup.config.ts +13 -0
- package/shells/almadar-shell-hono/turbo.json +17 -0
- package/shells/almadar-shell-hono/vitest.config.ts +8 -0
- package/shells/orb-shell/README.md +1 -1
- package/shells/orb-shell/packages/client/package-lock.json +227 -27
- package/shells/orb-shell/packages/client/package.json +1 -1
- package/shells/orb-shell/packages/server/package-lock.json +1 -0
- package/shells/orb-shell/pnpm-lock.yaml +196 -10
|
@@ -23,20 +23,20 @@ importers:
|
|
|
23
23
|
packages/client:
|
|
24
24
|
dependencies:
|
|
25
25
|
'@almadar/core':
|
|
26
|
-
specifier: '>=
|
|
27
|
-
version:
|
|
26
|
+
specifier: '>=5.8.0'
|
|
27
|
+
version: 5.8.0
|
|
28
28
|
'@almadar/evaluator':
|
|
29
|
-
specifier: '>=2.
|
|
30
|
-
version: 2.
|
|
29
|
+
specifier: '>=2.9.2'
|
|
30
|
+
version: 2.9.2
|
|
31
31
|
'@almadar/patterns':
|
|
32
|
-
specifier: '>=2.
|
|
33
|
-
version: 2.
|
|
32
|
+
specifier: '>=2.18.1'
|
|
33
|
+
version: 2.18.1
|
|
34
34
|
'@almadar/syntax':
|
|
35
|
-
specifier: '>=1.
|
|
36
|
-
version: 1.
|
|
35
|
+
specifier: '>=1.4.0'
|
|
36
|
+
version: 1.4.0
|
|
37
37
|
'@almadar/ui':
|
|
38
|
-
specifier: '>=
|
|
39
|
-
version:
|
|
38
|
+
specifier: '>=4.4.1'
|
|
39
|
+
version: 4.4.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)
|
|
40
40
|
'@monaco-editor/react':
|
|
41
41
|
specifier: ^4.7.0
|
|
42
42
|
version: 4.7.0(monaco-editor@0.52.2)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
|
@@ -105,8 +105,8 @@ importers:
|
|
|
105
105
|
version: 5.0.12(@types/react@19.2.14)(react@19.2.4)(use-sync-external-store@1.6.0(react@19.2.4))
|
|
106
106
|
devDependencies:
|
|
107
107
|
'@almadar/eslint-plugin':
|
|
108
|
-
specifier: '>=2.
|
|
109
|
-
version: 2.
|
|
108
|
+
specifier: '>=2.8.0'
|
|
109
|
+
version: 2.8.0(eslint@10.0.0(jiti@1.21.7))
|
|
110
110
|
'@testing-library/jest-dom':
|
|
111
111
|
specifier: ^6.6.3
|
|
112
112
|
version: 6.9.1
|
|
@@ -153,17 +153,20 @@ importers:
|
|
|
153
153
|
packages/server:
|
|
154
154
|
dependencies:
|
|
155
155
|
'@almadar/core':
|
|
156
|
-
specifier: '>=
|
|
157
|
-
version:
|
|
156
|
+
specifier: '>=5.8.0'
|
|
157
|
+
version: 5.8.0
|
|
158
158
|
'@almadar/evaluator':
|
|
159
|
-
specifier: '>=2.
|
|
160
|
-
version: 2.
|
|
159
|
+
specifier: '>=2.9.2'
|
|
160
|
+
version: 2.9.2
|
|
161
161
|
'@almadar/integrations':
|
|
162
|
-
specifier: '>=2.
|
|
163
|
-
version: 2.
|
|
162
|
+
specifier: '>=2.6.1'
|
|
163
|
+
version: 2.6.1(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.19.0)
|
|
164
|
+
'@almadar/runtime':
|
|
165
|
+
specifier: '>=4.13.2'
|
|
166
|
+
version: 4.13.2(express@4.22.1)
|
|
164
167
|
'@almadar/server':
|
|
165
|
-
specifier: '>=2.
|
|
166
|
-
version: 2.
|
|
168
|
+
specifier: '>=2.5.0'
|
|
169
|
+
version: 2.5.0(express@4.22.1)
|
|
167
170
|
cors:
|
|
168
171
|
specifier: ^2.8.5
|
|
169
172
|
version: 2.8.6
|
|
@@ -181,8 +184,8 @@ importers:
|
|
|
181
184
|
version: 3.25.76
|
|
182
185
|
devDependencies:
|
|
183
186
|
'@almadar/eslint-plugin':
|
|
184
|
-
specifier: '>=2.
|
|
185
|
-
version: 2.
|
|
187
|
+
specifier: '>=2.8.0'
|
|
188
|
+
version: 2.8.0(eslint@10.0.0(jiti@1.21.7))
|
|
186
189
|
'@types/cors':
|
|
187
190
|
specifier: ^2.8.17
|
|
188
191
|
version: 2.8.19
|
|
@@ -213,6 +216,9 @@ importers:
|
|
|
213
216
|
|
|
214
217
|
packages/shared:
|
|
215
218
|
dependencies:
|
|
219
|
+
'@almadar/core':
|
|
220
|
+
specifier: '>=5.8.0'
|
|
221
|
+
version: 5.8.0
|
|
216
222
|
zod:
|
|
217
223
|
specifier: ^3.22.0
|
|
218
224
|
version: 3.25.76
|
|
@@ -226,58 +232,58 @@ packages:
|
|
|
226
232
|
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
227
233
|
engines: {node: '>=10'}
|
|
228
234
|
|
|
229
|
-
'@almadar/core@
|
|
230
|
-
resolution: {integrity: sha512-
|
|
235
|
+
'@almadar/core@5.8.0':
|
|
236
|
+
resolution: {integrity: sha512-gOpnEev/pO4cm5GeUyzq4cgzrEvS8lsSLPfT7TEXc9hroAJU8fxv9anF+68AhPfnlfxYGQXFJTS268Th31fMxA==}
|
|
231
237
|
|
|
232
|
-
'@almadar/eslint-plugin@2.
|
|
233
|
-
resolution: {integrity: sha512-
|
|
238
|
+
'@almadar/eslint-plugin@2.8.0':
|
|
239
|
+
resolution: {integrity: sha512-8abtGsVP+YBaUEchSfGfQV3ZHEPtWt+4Swtu3P0AFofr+OMSfHLnor4aIwULzag+nHD9FQ7cQkVCTfBVgTHgiw==}
|
|
234
240
|
peerDependencies:
|
|
235
241
|
eslint: '>=8.0.0'
|
|
236
242
|
|
|
237
|
-
'@almadar/evaluator@2.
|
|
238
|
-
resolution: {integrity: sha512-
|
|
243
|
+
'@almadar/evaluator@2.9.2':
|
|
244
|
+
resolution: {integrity: sha512-yzhTtWbhvqCS/FoAK/pIyVuDV+8QwC/Csfcs/tUJOwq7fGHBhKwOrxgRqK/DNp1g7p2W/yvRPqQMUJVK1ynTQA==}
|
|
239
245
|
|
|
240
|
-
'@almadar/integrations@2.
|
|
241
|
-
resolution: {integrity: sha512-
|
|
246
|
+
'@almadar/integrations@2.6.1':
|
|
247
|
+
resolution: {integrity: sha512-Op7D1ivNwKeHYcNxbAbyvGUuX1fjHs2NGqBzK9VIOCiWJeodNUJscEUDHTFu9wdUxVdoo663Jfdl4vcWvvtIaQ==}
|
|
242
248
|
|
|
243
|
-
'@almadar/llm@2.
|
|
244
|
-
resolution: {integrity: sha512-
|
|
249
|
+
'@almadar/llm@2.9.1':
|
|
250
|
+
resolution: {integrity: sha512-8RIDz2iCcKD3Yl16vBebeUF9pr6aZr5YGjtpIqO8NlTXNJ/xJhz//Qb5GPBnr9IvYUM7DUhsS6y+4d4cl6qK4A==}
|
|
245
251
|
peerDependencies:
|
|
246
|
-
'@almadar/core': '>=
|
|
252
|
+
'@almadar/core': '>=4.8.1'
|
|
247
253
|
peerDependenciesMeta:
|
|
248
254
|
'@almadar/core':
|
|
249
255
|
optional: true
|
|
250
256
|
|
|
251
|
-
'@almadar/
|
|
252
|
-
resolution: {integrity: sha512-
|
|
253
|
-
|
|
254
|
-
'@almadar/patterns@2.8.12':
|
|
255
|
-
resolution: {integrity: sha512-v18xfyvbOCSEt7TmZ0QrJqeuEPuBVRUXGFw4kl7HYF5gHH9YELLAvgrAKgtr/HD7YLYmkVQEstILBOnRfB4lAA==}
|
|
257
|
+
'@almadar/patterns@2.18.1':
|
|
258
|
+
resolution: {integrity: sha512-IKrd17SYkSfG0sw5lJbs0fUAcxlomvw2uLO7ijKj+trHkQAcWfg1vMzodWfrPT/SZW7JL4X1Ufa7GoZGmZusmQ==}
|
|
256
259
|
|
|
257
|
-
'@almadar/runtime@
|
|
258
|
-
resolution: {integrity: sha512-
|
|
260
|
+
'@almadar/runtime@4.13.2':
|
|
261
|
+
resolution: {integrity: sha512-VX1PxzEi8MefRIfoWctEyBPH8zQi32OVhSII7EsvUY067YZ7qmFe6BW5Y4mPASGu0knXp3DoPXkMeNjf9qsZTQ==}
|
|
259
262
|
peerDependencies:
|
|
260
263
|
express: ^4.0.0
|
|
261
264
|
|
|
262
|
-
'@almadar/server@2.
|
|
263
|
-
resolution: {integrity: sha512-
|
|
265
|
+
'@almadar/server@2.5.0':
|
|
266
|
+
resolution: {integrity: sha512-x5iklAtKXjAyAQsu2LTkIkbi9U9xqpgxMQzzuOVzsvDKBaBhrIdTsqOt0qtG9tC5EV05cp4+SgehZo1JcR5/Wg==}
|
|
264
267
|
peerDependencies:
|
|
265
|
-
'@almadar-io/agent': '>=
|
|
268
|
+
'@almadar-io/agent': '>=5.5.6'
|
|
266
269
|
express: ^4.0.0
|
|
267
270
|
peerDependenciesMeta:
|
|
268
271
|
'@almadar-io/agent':
|
|
269
272
|
optional: true
|
|
270
273
|
|
|
271
|
-
'@almadar/std@
|
|
272
|
-
resolution: {integrity: sha512-
|
|
274
|
+
'@almadar/std@7.2.0':
|
|
275
|
+
resolution: {integrity: sha512-Gs+1GyDEYxTW+mSf4HDKAmCSzbCFGtKKzwF083prTtlvAieYA0zBoGC3XH6MI0i1deARPTbpTV+PAhVArLzDaQ==}
|
|
276
|
+
|
|
277
|
+
'@almadar/std@8.4.2':
|
|
278
|
+
resolution: {integrity: sha512-cz48Ck/+hT9QpHoC1V9aBaTBaUPO797lNSzpNfLSHWb2JuOKkmioY45rMZTDOodHD2Qt2nUkc56BPQ4adlt7gw==}
|
|
273
279
|
|
|
274
|
-
'@almadar/syntax@1.
|
|
275
|
-
resolution: {integrity: sha512-
|
|
280
|
+
'@almadar/syntax@1.4.0':
|
|
281
|
+
resolution: {integrity: sha512-r79cxWTDykcnBpWzWV1foHufBMWcgf/88AFT/lRAxyeIJIkwYA5lQjIJIonWh8z4adgSQw3rtl/KjlCy3mG+Uw==}
|
|
276
282
|
|
|
277
|
-
'@almadar/ui@
|
|
278
|
-
resolution: {integrity: sha512-
|
|
283
|
+
'@almadar/ui@4.4.1':
|
|
284
|
+
resolution: {integrity: sha512-4pvNGBMd+Lexdyw1BEV04xR48ACn0WNz2m0Yr0hyHOGOBv2dWxpmfEdXyTEs/r5WarMyrp4WaoaesN1We784OQ==}
|
|
279
285
|
peerDependencies:
|
|
280
|
-
'@react-three/drei': ^
|
|
286
|
+
'@react-three/drei': ^10.7.7
|
|
281
287
|
'@react-three/fiber': ^9.0.0
|
|
282
288
|
'@react-three/postprocessing': ^3.0.0
|
|
283
289
|
'@tanstack/react-query': ^5.0.0
|
|
@@ -4149,27 +4155,26 @@ snapshots:
|
|
|
4149
4155
|
|
|
4150
4156
|
'@alloc/quick-lru@5.2.0': {}
|
|
4151
4157
|
|
|
4152
|
-
'@almadar/core@
|
|
4158
|
+
'@almadar/core@5.8.0':
|
|
4153
4159
|
dependencies:
|
|
4154
|
-
'@almadar/
|
|
4155
|
-
'@almadar/patterns': 2.8.12
|
|
4160
|
+
'@almadar/patterns': 2.18.1
|
|
4156
4161
|
zod: 3.25.76
|
|
4157
4162
|
|
|
4158
|
-
'@almadar/eslint-plugin@2.
|
|
4163
|
+
'@almadar/eslint-plugin@2.8.0(eslint@10.0.0(jiti@1.21.7))':
|
|
4159
4164
|
dependencies:
|
|
4160
4165
|
eslint: 10.0.0(jiti@1.21.7)
|
|
4161
4166
|
jsonc-eslint-parser: 3.1.0
|
|
4162
4167
|
|
|
4163
|
-
'@almadar/evaluator@2.
|
|
4168
|
+
'@almadar/evaluator@2.9.2':
|
|
4164
4169
|
dependencies:
|
|
4165
|
-
'@almadar/core':
|
|
4166
|
-
'@almadar/
|
|
4170
|
+
'@almadar/core': 5.8.0
|
|
4171
|
+
'@almadar/std': 7.2.0
|
|
4167
4172
|
|
|
4168
|
-
'@almadar/integrations@2.
|
|
4173
|
+
'@almadar/integrations@2.6.1(@opentelemetry/api@1.9.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(ws@8.19.0)':
|
|
4169
4174
|
dependencies:
|
|
4170
|
-
'@almadar/core':
|
|
4171
|
-
'@almadar/llm': 2.
|
|
4172
|
-
'@almadar/patterns': 2.
|
|
4175
|
+
'@almadar/core': 5.8.0
|
|
4176
|
+
'@almadar/llm': 2.9.1(@almadar/core@5.8.0)(@opentelemetry/api@1.9.0)(ws@8.19.0)
|
|
4177
|
+
'@almadar/patterns': 2.18.1
|
|
4173
4178
|
'@sendgrid/mail': 8.1.6
|
|
4174
4179
|
dotenv: 16.6.1
|
|
4175
4180
|
googleapis: 144.0.0
|
|
@@ -4188,7 +4193,7 @@ snapshots:
|
|
|
4188
4193
|
- supports-color
|
|
4189
4194
|
- ws
|
|
4190
4195
|
|
|
4191
|
-
'@almadar/llm@2.
|
|
4196
|
+
'@almadar/llm@2.9.1(@almadar/core@5.8.0)(@opentelemetry/api@1.9.0)(ws@8.19.0)':
|
|
4192
4197
|
dependencies:
|
|
4193
4198
|
'@anthropic-ai/sdk': 0.52.0
|
|
4194
4199
|
'@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))
|
|
@@ -4197,28 +4202,28 @@ snapshots:
|
|
|
4197
4202
|
openai: 6.32.0(ws@8.19.0)(zod@3.25.76)
|
|
4198
4203
|
zod: 3.25.76
|
|
4199
4204
|
optionalDependencies:
|
|
4200
|
-
'@almadar/core':
|
|
4205
|
+
'@almadar/core': 5.8.0
|
|
4201
4206
|
transitivePeerDependencies:
|
|
4202
4207
|
- '@opentelemetry/api'
|
|
4203
4208
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
4204
4209
|
- '@opentelemetry/sdk-trace-base'
|
|
4205
4210
|
- ws
|
|
4206
4211
|
|
|
4207
|
-
'@almadar/
|
|
4208
|
-
|
|
4209
|
-
|
|
4212
|
+
'@almadar/patterns@2.18.1':
|
|
4213
|
+
dependencies:
|
|
4214
|
+
'@almadar/core': 5.8.0
|
|
4210
4215
|
|
|
4211
|
-
'@almadar/runtime@
|
|
4216
|
+
'@almadar/runtime@4.13.2(express@4.22.1)':
|
|
4212
4217
|
dependencies:
|
|
4213
|
-
'@almadar/core':
|
|
4214
|
-
'@almadar/evaluator': 2.
|
|
4215
|
-
'@almadar/
|
|
4218
|
+
'@almadar/core': 5.8.0
|
|
4219
|
+
'@almadar/evaluator': 2.9.2
|
|
4220
|
+
'@almadar/std': 8.4.2
|
|
4216
4221
|
'@faker-js/faker': 9.9.0
|
|
4217
4222
|
express: 4.22.1
|
|
4218
4223
|
|
|
4219
|
-
'@almadar/server@2.
|
|
4224
|
+
'@almadar/server@2.5.0(express@4.22.1)':
|
|
4220
4225
|
dependencies:
|
|
4221
|
-
'@almadar/core':
|
|
4226
|
+
'@almadar/core': 5.8.0
|
|
4222
4227
|
'@faker-js/faker': 9.9.0
|
|
4223
4228
|
cors: 2.8.6
|
|
4224
4229
|
dotenv: 16.6.1
|
|
@@ -4233,24 +4238,28 @@ snapshots:
|
|
|
4233
4238
|
- supports-color
|
|
4234
4239
|
- utf-8-validate
|
|
4235
4240
|
|
|
4236
|
-
'@almadar/std@
|
|
4241
|
+
'@almadar/std@7.2.0':
|
|
4237
4242
|
dependencies:
|
|
4238
|
-
'@almadar/core':
|
|
4239
|
-
'@almadar/operators': 2.1.3
|
|
4243
|
+
'@almadar/core': 5.8.0
|
|
4240
4244
|
|
|
4241
|
-
'@almadar/
|
|
4245
|
+
'@almadar/std@8.4.2':
|
|
4242
4246
|
dependencies:
|
|
4243
|
-
'@almadar/core':
|
|
4244
|
-
'@almadar/operators': 2.1.3
|
|
4245
|
-
'@almadar/patterns': 2.8.12
|
|
4247
|
+
'@almadar/core': 5.8.0
|
|
4246
4248
|
|
|
4247
|
-
'@almadar/
|
|
4249
|
+
'@almadar/syntax@1.4.0':
|
|
4248
4250
|
dependencies:
|
|
4249
|
-
'@almadar/core':
|
|
4250
|
-
'@almadar/
|
|
4251
|
-
'@almadar/
|
|
4252
|
-
|
|
4253
|
-
|
|
4251
|
+
'@almadar/core': 5.8.0
|
|
4252
|
+
'@almadar/patterns': 2.18.1
|
|
4253
|
+
'@almadar/std': 8.4.2
|
|
4254
|
+
|
|
4255
|
+
'@almadar/ui@4.4.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)':
|
|
4256
|
+
dependencies:
|
|
4257
|
+
'@almadar/core': 5.8.0
|
|
4258
|
+
'@almadar/evaluator': 2.9.2
|
|
4259
|
+
'@almadar/patterns': 2.18.1
|
|
4260
|
+
'@almadar/runtime': 4.13.2(express@4.22.1)
|
|
4261
|
+
'@almadar/std': 8.4.2
|
|
4262
|
+
'@almadar/syntax': 1.4.0
|
|
4254
4263
|
'@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))
|
|
4255
4264
|
'@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)
|
|
4256
4265
|
'@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)
|
|
@@ -4258,14 +4267,17 @@ snapshots:
|
|
|
4258
4267
|
'@xyflow/react': 12.10.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
|
4259
4268
|
clsx: 2.1.1
|
|
4260
4269
|
elkjs: 0.11.1
|
|
4270
|
+
hastscript: 9.0.1
|
|
4261
4271
|
leaflet: 1.9.4
|
|
4262
4272
|
lucide-react: 0.344.0(react@19.2.4)
|
|
4273
|
+
parse-entities: 4.0.2
|
|
4263
4274
|
react: 19.2.4
|
|
4264
4275
|
react-dom: 19.2.4(react@19.2.4)
|
|
4265
4276
|
react-leaflet: 4.2.1(leaflet@1.9.4)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
|
4266
4277
|
react-markdown: 9.1.0(@types/react@19.2.14)(react@19.2.4)
|
|
4267
4278
|
react-router-dom: 7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
|
|
4268
4279
|
react-syntax-highlighter: 16.1.1(react@19.2.4)
|
|
4280
|
+
refractor: 5.0.0
|
|
4269
4281
|
rehype-katex: 7.0.1
|
|
4270
4282
|
remark-gfm: 4.0.1
|
|
4271
4283
|
remark-math: 6.0.0
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Business Source License 1.1
|
|
2
|
+
|
|
3
|
+
Parameters
|
|
4
|
+
|
|
5
|
+
Licensor: Almadar FZE
|
|
6
|
+
Licensed Work: KFlow Builder / Almadar
|
|
7
|
+
The Licensed Work is (c) 2025-2026 Almadar FZE.
|
|
8
|
+
Additional Use Grant: You may make production use of the Licensed Work for
|
|
9
|
+
non-commercial purposes and for internal evaluation.
|
|
10
|
+
Production use for commercial purposes requires a
|
|
11
|
+
commercial license from the Licensor.
|
|
12
|
+
Change Date: 2030-02-01
|
|
13
|
+
Change License: Apache License, Version 2.0
|
|
14
|
+
|
|
15
|
+
Terms
|
|
16
|
+
|
|
17
|
+
The Licensor hereby grants you the right to copy, modify, create derivative
|
|
18
|
+
works, redistribute, and make non-production use of the Licensed Work. The
|
|
19
|
+
Licensor may make an Additional Use Grant, above, permitting limited
|
|
20
|
+
production use.
|
|
21
|
+
|
|
22
|
+
Effective on the Change Date, or the fourth anniversary of the first publicly
|
|
23
|
+
available distribution of a specific version of the Licensed Work under this
|
|
24
|
+
License, whichever comes first, the Licensor hereby grants you rights under
|
|
25
|
+
the terms of the Change License, and the rights granted in the paragraph
|
|
26
|
+
above terminate.
|
|
27
|
+
|
|
28
|
+
If your use of the Licensed Work does not comply with the requirements
|
|
29
|
+
currently in effect as described in this License, you must purchase a
|
|
30
|
+
commercial license from the Licensor, its affiliated entities, or authorized
|
|
31
|
+
resellers, or you must refrain from using the Licensed Work.
|
|
32
|
+
|
|
33
|
+
All copies of the original and modified Licensed Work, and derivative works
|
|
34
|
+
of the Licensed Work, are subject to this License. This License applies
|
|
35
|
+
separately for each version of the Licensed Work and the Change Date may vary
|
|
36
|
+
for each version of the Licensed Work released by Licensor.
|
|
37
|
+
|
|
38
|
+
You must conspicuously display this License on each original or modified copy
|
|
39
|
+
of the Licensed Work. If you receive the Licensed Work in original or
|
|
40
|
+
modified form from a third party, the terms and conditions set forth in this
|
|
41
|
+
License apply to your use of that work.
|
|
42
|
+
|
|
43
|
+
Any use of the Licensed Work in violation of this License will automatically
|
|
44
|
+
terminate your rights under this License for the current and all other
|
|
45
|
+
versions of the Licensed Work.
|
|
46
|
+
|
|
47
|
+
This License does not grant you any right in any trademark or logo of
|
|
48
|
+
Licensor or its affiliates (provided that you may use a trademark or logo of
|
|
49
|
+
Licensor as expressly required by this License).
|
|
50
|
+
|
|
51
|
+
TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
|
|
52
|
+
AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
|
|
53
|
+
EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
|
|
54
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
|
|
55
|
+
TITLE.
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
|
|
60
|
+
"Business Source License" is a trademark of MariaDB Corporation Ab.
|
|
61
|
+
|
|
62
|
+
ADDITIONAL TERMS:
|
|
63
|
+
|
|
64
|
+
Documentation (builder/packages/website/docs/) is licensed under CC BY 4.0.
|
|
65
|
+
|
|
66
|
+
TRADEMARKS:
|
|
67
|
+
|
|
68
|
+
"Orbital", "KFlow", "Almadar", and the Almadar logo are trademarks of
|
|
69
|
+
Almadar FZE. You may not use these trademarks without prior written
|
|
70
|
+
permission from Almadar FZE.
|
|
71
|
+
|
|
72
|
+
For licensing inquiries: licensing@almadar.io
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @almadar/shell
|
|
2
|
+
|
|
3
|
+
> Minimal full-stack shell template for Almadar applications
|
|
4
|
+
|
|
5
|
+
Part of the [Almadar](https://github.com/almadar-io/almadar) platform.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @almadar/shell
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { /* ... */ } from '@almadar/shell';
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## API
|
|
20
|
+
|
|
21
|
+
<!-- Document public exports here -->
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
BSL 1.1 (Business Source License). Converts to Apache 2.0 on 2030-02-01. Non-production use is free.
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$meta": { "locale": "en", "direction": "ltr" },
|
|
3
|
+
|
|
4
|
+
"common.save": "Save",
|
|
5
|
+
"common.cancel": "Cancel",
|
|
6
|
+
"common.delete": "Delete",
|
|
7
|
+
"common.close": "Close",
|
|
8
|
+
"common.confirm": "Are you sure?",
|
|
9
|
+
"common.create": "Create",
|
|
10
|
+
"common.edit": "Edit",
|
|
11
|
+
"common.view": "View",
|
|
12
|
+
"common.add": "Add",
|
|
13
|
+
"common.remove": "Remove",
|
|
14
|
+
"common.search": "Search...",
|
|
15
|
+
"common.filter": "Filter",
|
|
16
|
+
"common.actions": "Actions",
|
|
17
|
+
"common.yes": "Yes",
|
|
18
|
+
"common.no": "No",
|
|
19
|
+
"common.ok": "OK",
|
|
20
|
+
"common.done": "Done",
|
|
21
|
+
"common.apply": "Apply",
|
|
22
|
+
"common.reset": "Reset",
|
|
23
|
+
"common.refresh": "Refresh",
|
|
24
|
+
"common.export": "Export",
|
|
25
|
+
"common.import": "Import",
|
|
26
|
+
"common.copy": "Copy",
|
|
27
|
+
"common.settings": "Settings",
|
|
28
|
+
|
|
29
|
+
"nav.previous": "Previous",
|
|
30
|
+
"nav.next": "Next",
|
|
31
|
+
"nav.back": "Back",
|
|
32
|
+
"nav.home": "Home",
|
|
33
|
+
|
|
34
|
+
"form.submit": "Submit",
|
|
35
|
+
"form.saving": "Saving...",
|
|
36
|
+
"form.required": "This field is required",
|
|
37
|
+
"form.invalidEmail": "Enter a valid email address",
|
|
38
|
+
"form.selectPlaceholder": "Select {{label}}...",
|
|
39
|
+
"form.searchPlaceholder": "Search {{entity}}...",
|
|
40
|
+
|
|
41
|
+
"table.empty.title": "No items found",
|
|
42
|
+
"table.empty.description": "No items to display.",
|
|
43
|
+
"table.search.placeholder": "Search...",
|
|
44
|
+
"table.pagination.showing": "Showing {{start}} to {{end}} of {{total}} results",
|
|
45
|
+
"table.pagination.page": "Page {{page}} of {{totalPages}}",
|
|
46
|
+
"table.bulk.selected": "{{count}} selected",
|
|
47
|
+
"table.loading": "Loading...",
|
|
48
|
+
|
|
49
|
+
"status.loading": "Loading...",
|
|
50
|
+
"status.scheduled": "Scheduled",
|
|
51
|
+
"status.inProgress": "In Progress",
|
|
52
|
+
"status.completed": "Completed",
|
|
53
|
+
"status.cancelled": "Cancelled",
|
|
54
|
+
"status.pending": "Pending",
|
|
55
|
+
"status.active": "Active",
|
|
56
|
+
"status.inactive": "Inactive",
|
|
57
|
+
"status.draft": "Draft",
|
|
58
|
+
"status.archived": "Archived",
|
|
59
|
+
|
|
60
|
+
"error.generic": "Something went wrong",
|
|
61
|
+
"error.retry": "Try again",
|
|
62
|
+
"error.notFound": "Not found",
|
|
63
|
+
"error.loadFailed": "Failed to load: {{message}}",
|
|
64
|
+
"error.configMissing": "Configuration not found for: {{id}}",
|
|
65
|
+
|
|
66
|
+
"common.loading": "Loading...",
|
|
67
|
+
"common.showMore": "Show More",
|
|
68
|
+
"common.showLess": "Show Less",
|
|
69
|
+
"common.noResults": "No results found",
|
|
70
|
+
"common.saveChanges": "Save Changes",
|
|
71
|
+
"common.retry": "Retry",
|
|
72
|
+
"common.open": "Open",
|
|
73
|
+
"common.back": "Back",
|
|
74
|
+
|
|
75
|
+
"empty.noItems": "No items",
|
|
76
|
+
"empty.noData": "No data available",
|
|
77
|
+
"empty.noItemsYet": "No items yet",
|
|
78
|
+
"empty.noItemsAdded": "No items added yet",
|
|
79
|
+
"empty.noOptionsFound": "No options found",
|
|
80
|
+
|
|
81
|
+
"list.addItemPlaceholder": "Add new item...",
|
|
82
|
+
|
|
83
|
+
"error.occurred": "An error occurred",
|
|
84
|
+
"error.failedToLoad": "Failed to load data",
|
|
85
|
+
|
|
86
|
+
"wizard.back": "Back",
|
|
87
|
+
"wizard.next": "Next",
|
|
88
|
+
"wizard.complete": "Complete",
|
|
89
|
+
"wizard.stepOf": "Step {{current}} of {{total}}",
|
|
90
|
+
|
|
91
|
+
"pagination.previous": "Previous",
|
|
92
|
+
"pagination.next": "Next",
|
|
93
|
+
"pagination.total": "Total:",
|
|
94
|
+
"pagination.show": "Show:",
|
|
95
|
+
"pagination.goTo": "Go to:",
|
|
96
|
+
"pagination.go": "Go",
|
|
97
|
+
|
|
98
|
+
"auth.signIn": "Sign in",
|
|
99
|
+
"auth.signOut": "Sign out",
|
|
100
|
+
|
|
101
|
+
"dialog.confirm": "Confirm",
|
|
102
|
+
"dialog.cancel": "Cancel",
|
|
103
|
+
"dialog.loading": "Loading...",
|
|
104
|
+
"dialog.delete.title": "Delete {{item}}?",
|
|
105
|
+
"dialog.delete.message": "This action cannot be undone.",
|
|
106
|
+
|
|
107
|
+
"trait.availableActions": "Available Actions",
|
|
108
|
+
"trait.transitions": "Transitions",
|
|
109
|
+
"trait.availableNow": "Available now",
|
|
110
|
+
|
|
111
|
+
"book.startReading": "Start Reading",
|
|
112
|
+
"book.tableOfContents": "Table of Contents",
|
|
113
|
+
"book.partNumber": "Part {{number}}",
|
|
114
|
+
"book.print": "Print",
|
|
115
|
+
"book.previousPage": "Previous page",
|
|
116
|
+
"book.nextPage": "Next page",
|
|
117
|
+
|
|
118
|
+
"quiz.showAnswer": "Show answer",
|
|
119
|
+
"quiz.hideAnswer": "Hide answer"
|
|
120
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@almadar/shell-hono",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"private": true,
|
|
5
|
+
"description": "Minimal full-stack shell template for Almadar applications (Hono server)",
|
|
6
|
+
"workspaces": [
|
|
7
|
+
"packages/*"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "concurrently -n client,server -c blue,green \"bun --filter @app/client dev\" \"bun --filter @app/server dev\"",
|
|
11
|
+
"build": "bun run --filter @app/shared build && bun run --filter @app/client build && bun run --filter @app/server build",
|
|
12
|
+
"serve": "bun run packages/server/src/serve.ts",
|
|
13
|
+
"typecheck": "turbo run typecheck",
|
|
14
|
+
"lint": "turbo run lint",
|
|
15
|
+
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && git config core.hooksPath .githooks || true"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"concurrently": "^9.2.1",
|
|
19
|
+
"turbo": "^2.8.17"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/almadar-io/almadar-shell-hono.git"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const tsParser = require("@typescript-eslint/parser");
|
|
3
|
+
const almadarPlugin = require("@almadar/eslint-plugin");
|
|
4
|
+
|
|
5
|
+
module.exports = [
|
|
6
|
+
{ ignores: ["dist/**", "node_modules/**", "**/*.test.ts", "**/*.test.tsx"] },
|
|
7
|
+
{
|
|
8
|
+
files: ["src/**/*.ts", "src/**/*.tsx"],
|
|
9
|
+
languageOptions: {
|
|
10
|
+
parser: tsParser,
|
|
11
|
+
parserOptions: {
|
|
12
|
+
ecmaFeatures: { jsx: true },
|
|
13
|
+
ecmaVersion: "latest",
|
|
14
|
+
sourceType: "module",
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
plugins: { almadar: almadarPlugin },
|
|
18
|
+
rules: {
|
|
19
|
+
"almadar/no-as-any": "error",
|
|
20
|
+
"almadar/no-import-generated": "error",
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Almadar App</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="root"></div>
|
|
11
|
+
<script type="module" src="/src/main.tsx"></script>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|