@almadar/orb 4.1.0 → 4.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/orb",
3
- "version": "4.1.0",
3
+ "version": "4.3.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": "4.1.0",
53
- "@almadar/orb-darwin-arm64": "4.1.0",
54
- "@almadar/orb-linux-x64": "4.1.0",
55
- "@almadar/orb-linux-arm64": "4.1.0",
56
- "@almadar/orb-windows-x64": "4.1.0"
52
+ "@almadar/orb-darwin-x64": "4.3.0",
53
+ "@almadar/orb-darwin-arm64": "4.3.0",
54
+ "@almadar/orb-linux-x64": "4.3.0",
55
+ "@almadar/orb-linux-arm64": "4.3.0",
56
+ "@almadar/orb-windows-x64": "4.3.0"
57
57
  }
58
58
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/shell",
3
- "version": "2.1.7",
3
+ "version": "2.5.0",
4
4
  "private": false,
5
5
  "description": "Minimal full-stack shell template for Almadar applications",
6
6
  "packageManager": "pnpm@10.30.3",
@@ -9,7 +9,7 @@
9
9
  "build": "pnpm run -r build",
10
10
  "typecheck": "turbo run typecheck",
11
11
  "lint": "turbo run lint",
12
- "prepare": "git config core.hooksPath .githooks"
12
+ "prepare": "git rev-parse --git-dir > /dev/null 2>&1 && git config core.hooksPath .githooks || true"
13
13
  },
14
14
  "devDependencies": {
15
15
  "concurrently": "^9.2.1",
@@ -13,10 +13,11 @@
13
13
  "test:watch": "vitest"
14
14
  },
15
15
  "dependencies": {
16
- "@almadar/ui": ">=2.15.5",
17
- "@almadar/evaluator": "^2.0.0",
18
- "@almadar/patterns": "^2.0.0",
19
- "@almadar/core": "^2.1.0",
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",
@@ -33,7 +34,12 @@
33
34
  "monaco-editor": "^0.52.2",
34
35
  "leaflet": "^1.9.4",
35
36
  "react-leaflet": "^4.2.1",
36
- "lucide-react": "^0.344.0"
37
+ "lucide-react": "^0.344.0",
38
+ "three": "^0.160.0",
39
+ "@react-three/fiber": "^9.0.0",
40
+ "@react-three/drei": "^9.92.0",
41
+ "@react-three/postprocessing": "^3.0.0",
42
+ "postprocessing": "^6.39.0"
37
43
  },
38
44
  "devDependencies": {
39
45
  "@almadar/eslint-plugin": ">=2.3.0",
@@ -52,4 +58,4 @@
52
58
  "vite": "^6.2.1",
53
59
  "vitest": "^2.1.9"
54
60
  }
55
- }
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>
@@ -4,7 +4,5 @@ import App from './App';
4
4
  import './index.css';
5
5
 
6
6
  ReactDOM.createRoot(document.getElementById('root')!).render(
7
- <React.StrictMode>
8
- <App />
9
- </React.StrictMode>
7
+ <App />
10
8
  );
@@ -19,6 +19,7 @@ export default defineConfig(({ mode }) => {
19
19
  '@app/shared': path.resolve(__dirname, '../shared/src'),
20
20
  '@shared': path.resolve(__dirname, '../shared/src'),
21
21
  },
22
+ dedupe: ['react', 'react-dom', '@almadar/ui'],
22
23
  },
23
24
 
24
25
  server: {
@@ -13,10 +13,10 @@
13
13
  "test:watch": "vitest"
14
14
  },
15
15
  "dependencies": {
16
- "@almadar/server": "^2.0.2",
17
- "@almadar/evaluator": "^2.0.0",
18
- "@almadar/core": "^2.1.0",
19
- "@almadar/integrations": ">=2.1.0",
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",