@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
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://turbo.build/schema.json",
|
|
3
|
+
"tasks": {
|
|
4
|
+
"dev": {
|
|
5
|
+
"cache": false,
|
|
6
|
+
"persistent": true
|
|
7
|
+
},
|
|
8
|
+
"build": {
|
|
9
|
+
"dependsOn": ["^build"],
|
|
10
|
+
"outputs": ["dist/**"]
|
|
11
|
+
},
|
|
12
|
+
"typecheck": {
|
|
13
|
+
"dependsOn": ["^typecheck"]
|
|
14
|
+
},
|
|
15
|
+
"lint": {}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"@almadar/core": "^2.1.0",
|
|
12
12
|
"@almadar/evaluator": "^2.0.0",
|
|
13
13
|
"@almadar/patterns": "^2.0.0",
|
|
14
|
-
"@almadar/ui": ">=2.
|
|
14
|
+
"@almadar/ui": ">=2.48.6",
|
|
15
15
|
"@monaco-editor/react": "^4.7.0",
|
|
16
16
|
"@tanstack/react-query": "^5.67.3",
|
|
17
17
|
"firebase": "^11.4.0",
|
|
@@ -92,33 +92,58 @@
|
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
"node_modules/@almadar/evaluator": {
|
|
95
|
-
"version": "2.
|
|
96
|
-
"resolved": "https://registry.npmjs.org/@almadar/evaluator/-/evaluator-2.
|
|
97
|
-
"integrity": "sha512-
|
|
95
|
+
"version": "2.8.0",
|
|
96
|
+
"resolved": "https://registry.npmjs.org/@almadar/evaluator/-/evaluator-2.8.0.tgz",
|
|
97
|
+
"integrity": "sha512-Ih7kXTAi32yNjRgkhAdqigq0EfAUgErR5vOqiiurIW07J0qRK5hp9MkNtZUU+fTCvOVSrvPhEc3OAGTUa2F6AQ==",
|
|
98
98
|
"license": "BSL-1.1",
|
|
99
99
|
"dependencies": {
|
|
100
|
-
"@almadar/core": ">=2.
|
|
100
|
+
"@almadar/core": ">=4.2.0",
|
|
101
101
|
"@almadar/operators": ">=2.1.3"
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
|
+
"node_modules/@almadar/evaluator/node_modules/@almadar/core": {
|
|
105
|
+
"version": "4.8.1",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/@almadar/core/-/core-4.8.1.tgz",
|
|
107
|
+
"integrity": "sha512-hrTIgHKf+bYtTOuKVhTIJfh3QbKnkv9VxZB1ghCE1bBrp+itlr2xSQ5s6u1s8FFa6q2D93D9/H/ZEgNeAUpBQg==",
|
|
108
|
+
"license": "BSL-1.1",
|
|
109
|
+
"dependencies": {
|
|
110
|
+
"@almadar/operators": ">=2.1.3",
|
|
111
|
+
"@almadar/patterns": ">=2.8.7",
|
|
112
|
+
"zod": "^3.22.0"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
104
115
|
"node_modules/@almadar/operators": {
|
|
105
116
|
"version": "2.1.3",
|
|
106
117
|
"resolved": "https://registry.npmjs.org/@almadar/operators/-/operators-2.1.3.tgz",
|
|
107
118
|
"integrity": "sha512-0wjRClcWT/DcYtmnTku/IIXWGCLzMzai/a/KwP4NorkqjDIEY9+vmAui4qB6rePhkT2aOfLb4sP8uX7vvyG7nw=="
|
|
108
119
|
},
|
|
109
120
|
"node_modules/@almadar/patterns": {
|
|
110
|
-
"version": "2.
|
|
111
|
-
"resolved": "https://registry.npmjs.org/@almadar/patterns/-/patterns-2.
|
|
112
|
-
"integrity": "sha512-
|
|
113
|
-
"license": "BSL-1.1"
|
|
121
|
+
"version": "2.14.0",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@almadar/patterns/-/patterns-2.14.0.tgz",
|
|
123
|
+
"integrity": "sha512-tn3yE+clGDP/VM6YAzEagjPPIvX1lXPVK3BF9avbIjNC9GeeGRwgOYgSywVLKfk4g6ufHthPIgDPPPSEbVp3Pg==",
|
|
124
|
+
"license": "BSL-1.1",
|
|
125
|
+
"dependencies": {
|
|
126
|
+
"@almadar/core": ">=4.2.0"
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"node_modules/@almadar/patterns/node_modules/@almadar/core": {
|
|
130
|
+
"version": "4.8.1",
|
|
131
|
+
"resolved": "https://registry.npmjs.org/@almadar/core/-/core-4.8.1.tgz",
|
|
132
|
+
"integrity": "sha512-hrTIgHKf+bYtTOuKVhTIJfh3QbKnkv9VxZB1ghCE1bBrp+itlr2xSQ5s6u1s8FFa6q2D93D9/H/ZEgNeAUpBQg==",
|
|
133
|
+
"license": "BSL-1.1",
|
|
134
|
+
"dependencies": {
|
|
135
|
+
"@almadar/operators": ">=2.1.3",
|
|
136
|
+
"@almadar/patterns": ">=2.8.7",
|
|
137
|
+
"zod": "^3.22.0"
|
|
138
|
+
}
|
|
114
139
|
},
|
|
115
140
|
"node_modules/@almadar/runtime": {
|
|
116
|
-
"version": "
|
|
117
|
-
"resolved": "https://registry.npmjs.org/@almadar/runtime/-/runtime-
|
|
118
|
-
"integrity": "sha512-
|
|
141
|
+
"version": "3.2.1",
|
|
142
|
+
"resolved": "https://registry.npmjs.org/@almadar/runtime/-/runtime-3.2.1.tgz",
|
|
143
|
+
"integrity": "sha512-AoP8d4BvhX2MV00VcbUIjHMicmum/bta/2q4OQCI0fTqJ0y+Ml4fTMxWeYyQAPsQcwl6H6qESfLZVQFObFTbPQ==",
|
|
119
144
|
"license": "BSL-1.1",
|
|
120
145
|
"dependencies": {
|
|
121
|
-
"@almadar/core": ">=
|
|
146
|
+
"@almadar/core": ">=4.8.0",
|
|
122
147
|
"@almadar/evaluator": ">=2.5.4",
|
|
123
148
|
"@almadar/operators": ">=2.1.3",
|
|
124
149
|
"@faker-js/faker": "^9.3.0"
|
|
@@ -127,23 +152,72 @@
|
|
|
127
152
|
"express": "^4.0.0"
|
|
128
153
|
}
|
|
129
154
|
},
|
|
130
|
-
"node_modules/@almadar/
|
|
131
|
-
"version": "
|
|
132
|
-
"resolved": "https://registry.npmjs.org/@almadar/
|
|
133
|
-
"integrity": "sha512-
|
|
155
|
+
"node_modules/@almadar/runtime/node_modules/@almadar/core": {
|
|
156
|
+
"version": "4.8.1",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/@almadar/core/-/core-4.8.1.tgz",
|
|
158
|
+
"integrity": "sha512-hrTIgHKf+bYtTOuKVhTIJfh3QbKnkv9VxZB1ghCE1bBrp+itlr2xSQ5s6u1s8FFa6q2D93D9/H/ZEgNeAUpBQg==",
|
|
134
159
|
"license": "BSL-1.1",
|
|
135
160
|
"dependencies": {
|
|
136
|
-
"@almadar/
|
|
137
|
-
"@almadar/
|
|
161
|
+
"@almadar/operators": ">=2.1.3",
|
|
162
|
+
"@almadar/patterns": ">=2.8.7",
|
|
163
|
+
"zod": "^3.22.0"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"node_modules/@almadar/std": {
|
|
167
|
+
"version": "6.4.0",
|
|
168
|
+
"resolved": "https://registry.npmjs.org/@almadar/std/-/std-6.4.0.tgz",
|
|
169
|
+
"integrity": "sha512-138rUIfcgMSbHZHyFjwbsdDTRcZy8d4jTU4cGT0L1rLIcsry3lcYwVCGzOp4cthA/UNYlHMCBaWArHsgjSJQMQ==",
|
|
170
|
+
"license": "BSL-1.1",
|
|
171
|
+
"dependencies": {
|
|
172
|
+
"@almadar/core": ">=4.7.0",
|
|
173
|
+
"@almadar/operators": ">=2.1.3"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"node_modules/@almadar/std/node_modules/@almadar/core": {
|
|
177
|
+
"version": "4.8.1",
|
|
178
|
+
"resolved": "https://registry.npmjs.org/@almadar/core/-/core-4.8.1.tgz",
|
|
179
|
+
"integrity": "sha512-hrTIgHKf+bYtTOuKVhTIJfh3QbKnkv9VxZB1ghCE1bBrp+itlr2xSQ5s6u1s8FFa6q2D93D9/H/ZEgNeAUpBQg==",
|
|
180
|
+
"license": "BSL-1.1",
|
|
181
|
+
"dependencies": {
|
|
182
|
+
"@almadar/operators": ">=2.1.3",
|
|
138
183
|
"@almadar/patterns": ">=2.8.7",
|
|
139
|
-
"
|
|
184
|
+
"zod": "^3.22.0"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"node_modules/@almadar/syntax": {
|
|
188
|
+
"version": "1.2.1",
|
|
189
|
+
"resolved": "https://registry.npmjs.org/@almadar/syntax/-/syntax-1.2.1.tgz",
|
|
190
|
+
"integrity": "sha512-wd1pmaG8rY2Yp2MScHEurDg3XnJ7xBS92y7bzxNV+pVE2p/I1fW6ywat/weGxpaq8sk7Pq7sFo4iy2H1SyFj/g==",
|
|
191
|
+
"license": "BSL-1.1",
|
|
192
|
+
"dependencies": {
|
|
193
|
+
"@almadar/core": ">=2.1.0",
|
|
194
|
+
"@almadar/operators": ">=2.1.0",
|
|
195
|
+
"@almadar/patterns": ">=2.0.0"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"node_modules/@almadar/ui": {
|
|
199
|
+
"version": "2.60.1",
|
|
200
|
+
"resolved": "https://registry.npmjs.org/@almadar/ui/-/ui-2.60.1.tgz",
|
|
201
|
+
"integrity": "sha512-5ziigEJjLvBMMeqYMi9Dq/ygOBrE0vf91zoevmRhe1pQ7YByBfSpQ+eqQpY57tH1Gx+GVPCgP/sJxft8qL2agA==",
|
|
202
|
+
"license": "BSL-1.1",
|
|
203
|
+
"dependencies": {
|
|
204
|
+
"@almadar/core": ">=4.8.0",
|
|
205
|
+
"@almadar/evaluator": ">=2.8.0",
|
|
206
|
+
"@almadar/patterns": ">=2.10.0",
|
|
207
|
+
"@almadar/runtime": ">=3.2.1",
|
|
208
|
+
"@almadar/std": ">=6.3.0",
|
|
209
|
+
"@almadar/syntax": ">=1.2.1",
|
|
210
|
+
"@xyflow/react": "12.10.1",
|
|
140
211
|
"clsx": "^2.1.0",
|
|
141
212
|
"elkjs": "0.11.1",
|
|
213
|
+
"hastscript": "^9.0.0",
|
|
142
214
|
"leaflet": "1.9.4",
|
|
143
215
|
"lucide-react": "^0.344.0",
|
|
216
|
+
"parse-entities": "^4.0.0",
|
|
144
217
|
"react-leaflet": "^4.2.1",
|
|
145
218
|
"react-markdown": "^9.0.0",
|
|
146
219
|
"react-syntax-highlighter": "^16.1.0",
|
|
220
|
+
"refractor": "^5.0.0",
|
|
147
221
|
"rehype-katex": "^7.0.0",
|
|
148
222
|
"remark-gfm": "^4.0.0",
|
|
149
223
|
"remark-math": "^6.0.0",
|
|
@@ -160,6 +234,17 @@
|
|
|
160
234
|
"three": "^0.160.0"
|
|
161
235
|
}
|
|
162
236
|
},
|
|
237
|
+
"node_modules/@almadar/ui/node_modules/@almadar/core": {
|
|
238
|
+
"version": "4.8.1",
|
|
239
|
+
"resolved": "https://registry.npmjs.org/@almadar/core/-/core-4.8.1.tgz",
|
|
240
|
+
"integrity": "sha512-hrTIgHKf+bYtTOuKVhTIJfh3QbKnkv9VxZB1ghCE1bBrp+itlr2xSQ5s6u1s8FFa6q2D93D9/H/ZEgNeAUpBQg==",
|
|
241
|
+
"license": "BSL-1.1",
|
|
242
|
+
"dependencies": {
|
|
243
|
+
"@almadar/operators": ">=2.1.3",
|
|
244
|
+
"@almadar/patterns": ">=2.8.7",
|
|
245
|
+
"zod": "^3.22.0"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
163
248
|
"node_modules/@asamuzakjp/css-color": {
|
|
164
249
|
"version": "3.2.0",
|
|
165
250
|
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz",
|
|
@@ -2785,6 +2870,55 @@
|
|
|
2785
2870
|
"@babel/types": "^7.28.2"
|
|
2786
2871
|
}
|
|
2787
2872
|
},
|
|
2873
|
+
"node_modules/@types/d3-color": {
|
|
2874
|
+
"version": "3.1.3",
|
|
2875
|
+
"resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
|
|
2876
|
+
"integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
|
|
2877
|
+
"license": "MIT"
|
|
2878
|
+
},
|
|
2879
|
+
"node_modules/@types/d3-drag": {
|
|
2880
|
+
"version": "3.0.7",
|
|
2881
|
+
"resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz",
|
|
2882
|
+
"integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==",
|
|
2883
|
+
"license": "MIT",
|
|
2884
|
+
"dependencies": {
|
|
2885
|
+
"@types/d3-selection": "*"
|
|
2886
|
+
}
|
|
2887
|
+
},
|
|
2888
|
+
"node_modules/@types/d3-interpolate": {
|
|
2889
|
+
"version": "3.0.4",
|
|
2890
|
+
"resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
|
|
2891
|
+
"integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
|
|
2892
|
+
"license": "MIT",
|
|
2893
|
+
"dependencies": {
|
|
2894
|
+
"@types/d3-color": "*"
|
|
2895
|
+
}
|
|
2896
|
+
},
|
|
2897
|
+
"node_modules/@types/d3-selection": {
|
|
2898
|
+
"version": "3.0.11",
|
|
2899
|
+
"resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz",
|
|
2900
|
+
"integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==",
|
|
2901
|
+
"license": "MIT"
|
|
2902
|
+
},
|
|
2903
|
+
"node_modules/@types/d3-transition": {
|
|
2904
|
+
"version": "3.0.9",
|
|
2905
|
+
"resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz",
|
|
2906
|
+
"integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==",
|
|
2907
|
+
"license": "MIT",
|
|
2908
|
+
"dependencies": {
|
|
2909
|
+
"@types/d3-selection": "*"
|
|
2910
|
+
}
|
|
2911
|
+
},
|
|
2912
|
+
"node_modules/@types/d3-zoom": {
|
|
2913
|
+
"version": "3.0.8",
|
|
2914
|
+
"resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz",
|
|
2915
|
+
"integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==",
|
|
2916
|
+
"license": "MIT",
|
|
2917
|
+
"dependencies": {
|
|
2918
|
+
"@types/d3-interpolate": "*",
|
|
2919
|
+
"@types/d3-selection": "*"
|
|
2920
|
+
}
|
|
2921
|
+
},
|
|
2788
2922
|
"node_modules/@types/debug": {
|
|
2789
2923
|
"version": "4.1.13",
|
|
2790
2924
|
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
|
|
@@ -3230,6 +3364,66 @@
|
|
|
3230
3364
|
"integrity": "sha512-RPmm6kgRbI8e98zSD3RVACvnuktIja5+yLgDAkTmxLr90BEwdTXRQWNLF3ETTTyH/8mKhznZuN5AveXYFEsMGQ==",
|
|
3231
3365
|
"license": "BSD-3-Clause"
|
|
3232
3366
|
},
|
|
3367
|
+
"node_modules/@xyflow/react": {
|
|
3368
|
+
"version": "12.10.1",
|
|
3369
|
+
"resolved": "https://registry.npmjs.org/@xyflow/react/-/react-12.10.1.tgz",
|
|
3370
|
+
"integrity": "sha512-5eSWtIK/+rkldOuFbOOz44CRgQRjtS9v5nufk77DV+XBnfCGL9HAQ8PG00o2ZYKqkEU/Ak6wrKC95Tu+2zuK3Q==",
|
|
3371
|
+
"license": "MIT",
|
|
3372
|
+
"dependencies": {
|
|
3373
|
+
"@xyflow/system": "0.0.75",
|
|
3374
|
+
"classcat": "^5.0.3",
|
|
3375
|
+
"zustand": "^4.4.0"
|
|
3376
|
+
},
|
|
3377
|
+
"peerDependencies": {
|
|
3378
|
+
"react": ">=17",
|
|
3379
|
+
"react-dom": ">=17"
|
|
3380
|
+
}
|
|
3381
|
+
},
|
|
3382
|
+
"node_modules/@xyflow/react/node_modules/zustand": {
|
|
3383
|
+
"version": "4.5.7",
|
|
3384
|
+
"resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz",
|
|
3385
|
+
"integrity": "sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==",
|
|
3386
|
+
"license": "MIT",
|
|
3387
|
+
"dependencies": {
|
|
3388
|
+
"use-sync-external-store": "^1.2.2"
|
|
3389
|
+
},
|
|
3390
|
+
"engines": {
|
|
3391
|
+
"node": ">=12.7.0"
|
|
3392
|
+
},
|
|
3393
|
+
"peerDependencies": {
|
|
3394
|
+
"@types/react": ">=16.8",
|
|
3395
|
+
"immer": ">=9.0.6",
|
|
3396
|
+
"react": ">=16.8"
|
|
3397
|
+
},
|
|
3398
|
+
"peerDependenciesMeta": {
|
|
3399
|
+
"@types/react": {
|
|
3400
|
+
"optional": true
|
|
3401
|
+
},
|
|
3402
|
+
"immer": {
|
|
3403
|
+
"optional": true
|
|
3404
|
+
},
|
|
3405
|
+
"react": {
|
|
3406
|
+
"optional": true
|
|
3407
|
+
}
|
|
3408
|
+
}
|
|
3409
|
+
},
|
|
3410
|
+
"node_modules/@xyflow/system": {
|
|
3411
|
+
"version": "0.0.75",
|
|
3412
|
+
"resolved": "https://registry.npmjs.org/@xyflow/system/-/system-0.0.75.tgz",
|
|
3413
|
+
"integrity": "sha512-iXs+AGFLi8w/VlAoc/iSxk+CxfT6o64Uw/k0CKASOPqjqz6E0rb5jFZgJtXGZCpfQI6OQpu5EnumP5fGxQheaQ==",
|
|
3414
|
+
"license": "MIT",
|
|
3415
|
+
"dependencies": {
|
|
3416
|
+
"@types/d3-drag": "^3.0.7",
|
|
3417
|
+
"@types/d3-interpolate": "^3.0.4",
|
|
3418
|
+
"@types/d3-selection": "^3.0.10",
|
|
3419
|
+
"@types/d3-transition": "^3.0.8",
|
|
3420
|
+
"@types/d3-zoom": "^3.0.8",
|
|
3421
|
+
"d3-drag": "^3.0.0",
|
|
3422
|
+
"d3-interpolate": "^3.0.1",
|
|
3423
|
+
"d3-selection": "^3.0.0",
|
|
3424
|
+
"d3-zoom": "^3.0.0"
|
|
3425
|
+
}
|
|
3426
|
+
},
|
|
3233
3427
|
"node_modules/accepts": {
|
|
3234
3428
|
"version": "1.3.8",
|
|
3235
3429
|
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
|
@@ -3845,6 +4039,12 @@
|
|
|
3845
4039
|
"node": ">= 6"
|
|
3846
4040
|
}
|
|
3847
4041
|
},
|
|
4042
|
+
"node_modules/classcat": {
|
|
4043
|
+
"version": "5.0.5",
|
|
4044
|
+
"resolved": "https://registry.npmjs.org/classcat/-/classcat-5.0.5.tgz",
|
|
4045
|
+
"integrity": "sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==",
|
|
4046
|
+
"license": "MIT"
|
|
4047
|
+
},
|
|
3848
4048
|
"node_modules/cliui": {
|
|
3849
4049
|
"version": "8.0.1",
|
|
3850
4050
|
"resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
|
|
@@ -7593,9 +7793,9 @@
|
|
|
7593
7793
|
"license": "MIT"
|
|
7594
7794
|
},
|
|
7595
7795
|
"node_modules/path-to-regexp": {
|
|
7596
|
-
"version": "0.1.
|
|
7597
|
-
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.
|
|
7598
|
-
"integrity": "sha512-
|
|
7796
|
+
"version": "0.1.13",
|
|
7797
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
|
|
7798
|
+
"integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
|
|
7599
7799
|
"license": "MIT"
|
|
7600
7800
|
},
|
|
7601
7801
|
"node_modules/pathe": {
|
|
@@ -8686,13 +8886,13 @@
|
|
|
8686
8886
|
}
|
|
8687
8887
|
},
|
|
8688
8888
|
"node_modules/side-channel-list": {
|
|
8689
|
-
"version": "1.0.
|
|
8690
|
-
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.
|
|
8691
|
-
"integrity": "sha512-
|
|
8889
|
+
"version": "1.0.1",
|
|
8890
|
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
|
|
8891
|
+
"integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
|
|
8692
8892
|
"license": "MIT",
|
|
8693
8893
|
"dependencies": {
|
|
8694
8894
|
"es-errors": "^1.3.0",
|
|
8695
|
-
"object-inspect": "^1.13.
|
|
8895
|
+
"object-inspect": "^1.13.4"
|
|
8696
8896
|
},
|
|
8697
8897
|
"engines": {
|
|
8698
8898
|
"node": ">= 0.4"
|
|
@@ -5548,6 +5548,7 @@
|
|
|
5548
5548
|
"integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
|
|
5549
5549
|
"dev": true,
|
|
5550
5550
|
"license": "MIT",
|
|
5551
|
+
"peer": true,
|
|
5551
5552
|
"dependencies": {
|
|
5552
5553
|
"esbuild": "^0.21.3",
|
|
5553
5554
|
"postcss": "^8.4.43",
|