-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsharedPackages.ts
More file actions
95 lines (86 loc) · 2.21 KB
/
Copy pathsharedPackages.ts
File metadata and controls
95 lines (86 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
* The canonical list of package names shared between the Omniview host app
* and plugins. Every entry here corresponds to an entry in the host's
* shared_dependencies.ts.
*
* IMPORTANT: Keep this list in sync with:
* /ui/features/plugins/api/shared_dependencies.ts
*
* After modifying this list, run:
* pnpm --filter @omniviewdev/vite-plugin generate-shims
*/
export const SHARED_PACKAGES: readonly string[] = [
// Emotion
'@emotion/react',
'@emotion/styled',
// MUI Material
'@mui/material',
'@mui/material/utils',
'@mui/material/styles',
'@mui/material/Box',
'@mui/material/Grid',
'@mui/material/GlobalStyles',
'@mui/material/CssBaseline',
'@mui/material/CircularProgress',
'@mui/material/LinearProgress',
'@mui/material/Divider',
'@mui/icons-material',
'@mui/x-charts',
// @omniviewdev/ui design system
'@omniviewdev/ui',
'@omniviewdev/ui/buttons',
'@omniviewdev/ui/inputs',
'@omniviewdev/ui/feedback',
'@omniviewdev/ui/typography',
'@omniviewdev/ui/overlays',
'@omniviewdev/ui/navigation',
'@omniviewdev/ui/table',
'@omniviewdev/ui/layout',
'@omniviewdev/ui/domain',
'@omniviewdev/ui/charts',
'@omniviewdev/ui/editors',
'@omniviewdev/ui/types',
'@omniviewdev/ui/theme',
'@omniviewdev/ui/menus',
'@omniviewdev/ui/sidebars',
'@omniviewdev/ui/cells',
// React
'react',
'react/jsx-runtime',
'react/jsx-dev-runtime',
'react/compiler-runtime',
'react-router-dom',
'react-dom',
'react-icons',
'react-icons/lu',
'react-icons/si',
// Monaco
'monaco-editor',
'monaco-types',
'monaco-yaml',
'@monaco-editor/react',
// Tanstack
'@tanstack/react-query',
'@tanstack/react-table',
'@tanstack/react-virtual',
// Omniview
'@omniviewdev/runtime',
'@omniviewdev/runtime/api',
'@omniviewdev/runtime/runtime',
'@omniviewdev/runtime/models',
// @omniviewdev npm packages (base-ui, ai-ui, editors)
'@omniviewdev/base-ui',
'@omniviewdev/base-ui/styles.css',
'@omniviewdev/ai-ui',
'@omniviewdev/ai-ui/styles.css',
'@omniviewdev/editors',
'@omniviewdev/editors/styles.css',
// DND Kit
'@dnd-kit/core',
'@dnd-kit/modifiers',
'@dnd-kit/sortable',
'@dnd-kit/utilities',
// Utilities
'date-fns',
'yaml',
] as const;