@motiadev/workbench 0.3.1-beta.88-406962 → 0.3.1-beta.88-490801
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/dist/src/App.js +16 -1
- package/dist/src/components/endpoints/endpoint-call.js +1 -1
- package/dist/src/components/endpoints/json-editor.js +5 -7
- package/dist/src/components/flow/flow-tab-menu-item.js +1 -1
- package/dist/src/components/header/header.js +1 -1
- package/dist/src/components/observability/traces-groups.js +1 -1
- package/dist/src/publicComponents/base-node/base-handle.d.ts +0 -1
- package/dist/src/publicComponents/base-node/base-handle.js +1 -1
- package/dist/src/publicComponents/base-node/base-node.js +1 -1
- package/dist/src/publicComponents/event-node.d.ts +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +27 -28
package/package.json
CHANGED
|
@@ -1,9 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@motiadev/workbench",
|
|
3
3
|
"description": "A web-based interface for building and managing Motia workflows.",
|
|
4
|
-
"version": "0.3.1-beta.88-
|
|
4
|
+
"version": "0.3.1-beta.88-490801",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"dependencies": {
|
|
7
|
+
"@monaco-editor/react": "^4.6.1",
|
|
8
|
+
"@radix-ui/react-collapsible": "^1.1.10",
|
|
9
|
+
"@radix-ui/react-dialog": "^1.1.13",
|
|
10
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
11
|
+
"@radix-ui/react-label": "^2.1.6",
|
|
12
|
+
"@radix-ui/react-navigation-menu": "^1.2.13",
|
|
13
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
14
|
+
"@radix-ui/react-select": "^2.2.4",
|
|
15
|
+
"@radix-ui/react-separator": "^1.1.6",
|
|
16
|
+
"@radix-ui/react-slot": "^1.2.2",
|
|
17
|
+
"@radix-ui/react-switch": "^1.2.4",
|
|
18
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
19
|
+
"@radix-ui/react-tooltip": "^1.2.6",
|
|
20
|
+
"@xyflow/react": "^12.6.4",
|
|
21
|
+
"dagre": "^0.8.5",
|
|
22
|
+
"date-fns": "^4.1.0",
|
|
23
|
+
"fast-deep-equal": "^3.1.3",
|
|
24
|
+
"json-schema": "^0.4.0",
|
|
25
|
+
"lucide-react": "^0.510.0",
|
|
26
|
+
"react-use-resizable": "^0.2.0",
|
|
27
|
+
"react18-json-view": "^0.2.9",
|
|
28
|
+
"zustand": "^5.0.6",
|
|
7
29
|
"@tailwindcss/postcss": "^4.1.7",
|
|
8
30
|
"@vitejs/plugin-react": "^4.4.1",
|
|
9
31
|
"autoprefixer": "^10.4.21",
|
|
@@ -17,32 +39,11 @@
|
|
|
17
39
|
"tw-animate-css": "^1.2.9",
|
|
18
40
|
"typescript": "~5.8.3",
|
|
19
41
|
"typescript-eslint": "^8.32.1",
|
|
20
|
-
"vite": "^6.3.5"
|
|
42
|
+
"vite": "^6.3.5",
|
|
43
|
+
"@motiadev/stream-client-react": "0.3.1-beta.88-490801",
|
|
44
|
+
"@motiadev/ui": "0.3.1-beta.88-490801"
|
|
21
45
|
},
|
|
22
46
|
"devDependencies": {
|
|
23
|
-
"recharts": "^2.15.3",
|
|
24
|
-
"@xyflow/react": "^12.6.4",
|
|
25
|
-
"react-use-resizable": "^0.2.0",
|
|
26
|
-
"react18-json-view": "^0.2.9",
|
|
27
|
-
"zustand": "^5.0.6",
|
|
28
|
-
"json-schema": "^0.4.0",
|
|
29
|
-
"lucide-react": "^0.510.0",
|
|
30
|
-
"dagre": "^0.8.5",
|
|
31
|
-
"date-fns": "^4.1.0",
|
|
32
|
-
"fast-deep-equal": "^3.1.3",
|
|
33
|
-
"@monaco-editor/react": "^4.6.1",
|
|
34
|
-
"@radix-ui/react-collapsible": "^1.1.10",
|
|
35
|
-
"@radix-ui/react-dialog": "^1.1.13",
|
|
36
|
-
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
37
|
-
"@radix-ui/react-label": "^2.1.6",
|
|
38
|
-
"@radix-ui/react-navigation-menu": "^1.2.13",
|
|
39
|
-
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
40
|
-
"@radix-ui/react-select": "^2.2.4",
|
|
41
|
-
"@radix-ui/react-separator": "^1.1.6",
|
|
42
|
-
"@radix-ui/react-slot": "^1.2.2",
|
|
43
|
-
"@radix-ui/react-switch": "^1.2.4",
|
|
44
|
-
"@radix-ui/react-tabs": "^1.1.12",
|
|
45
|
-
"@radix-ui/react-tooltip": "^1.2.6",
|
|
46
47
|
"@testing-library/jest-dom": "^6.6.3",
|
|
47
48
|
"@testing-library/react": "^16.1.0",
|
|
48
49
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -55,9 +56,7 @@
|
|
|
55
56
|
"@types/react-dom": "^19.1.5",
|
|
56
57
|
"jest": "^29.7.0",
|
|
57
58
|
"jest-environment-jsdom": "^29.7.0",
|
|
58
|
-
"ts-jest": "^29.3.4"
|
|
59
|
-
"@motiadev/stream-client-react": "0.3.1-beta.88-406962",
|
|
60
|
-
"@motiadev/ui": "0.3.1-beta.88-406962"
|
|
59
|
+
"ts-jest": "^29.3.4"
|
|
61
60
|
},
|
|
62
61
|
"scripts": {
|
|
63
62
|
"lint": "pnpm run lint:ts && pnpm run lint:tsx",
|