-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.19 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
{
"private": true,
"engines": {
"node": ">=18",
"npm": ">=8"
},
"scripts": {
"build:browser": "npm --prefix documentation-generation run build && npm --prefix browser-app run bundle",
"build:electron": "npm --prefix documentation-generation run build && npm --prefix codeProseWidget run build && npm --prefix electron-app run bundle",
"pack:electron": "npm run build:electron && npm --prefix electron-app run pack",
"dist:electron": "npm run build:electron && npm --prefix electron-app run dist",
"prepare": "lerna run prepare",
"start:browser": "npm --prefix browser-app start",
"start:electron": "npm --prefix electron-app start",
"watch:browser": "lerna run --parallel watch --ignore electron-app",
"watch:electron": "lerna run --parallel watch --ignore browser-app",
"postinstall": "theia check:theia-version && patch-package"
},
"devDependencies": {
"lerna": "2.4.0",
"ts-loader": "^9.5.1",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"workspaces": [
"browser-app",
"electron-app",
"codeProseWidget",
"documentation-generation"
],
"overrides": {
"@theia/core": "1.63.3",
"@theia/editor": "1.63.3",
"@theia/filesystem": "1.63.3",
"@theia/markers": "1.63.3",
"@theia/messages": "1.63.3",
"@theia/navigator": "1.63.3",
"@theia/preferences": "1.63.3",
"@theia/process": "1.63.3",
"@theia/terminal": "1.63.3",
"@theia/workspace": "1.63.3",
"@theia/monaco": "1.63.3",
"@theia/ai-core": "1.63.3",
"@theia/ai-mcp": "1.63.3",
"@theia/application-package": "1.63.3",
"@theia/bulk-edit": "1.63.3",
"@theia/callhierarchy": "1.63.3",
"@theia/console": "1.63.3",
"@theia/debug": "1.63.3",
"@theia/editor-preview": "1.63.3",
"@theia/file-search": "1.63.3",
"@theia/notebook": "1.63.3",
"@theia/outline-view": "1.63.3",
"@theia/output": "1.63.3",
"@theia/plugin": "1.63.3",
"@theia/plugin-ext": "1.63.3",
"@theia/request": "1.63.3",
"@theia/scm": "1.63.3",
"@theia/search-in-workspace": "1.63.3",
"@theia/task": "1.63.3",
"@theia/test": "1.63.3",
"@theia/timeline": "1.63.3",
"@theia/typehierarchy": "1.63.3",
"@theia/userstorage": "1.63.3",
"@theia/variable-resolver": "1.63.3",
"@theia/vsx-registry": "1.63.3",
"@theia/cli": "1.63.3",
"@theia/application-manager": "1.63.3",
"@theia/ffmpeg": "1.63.3",
"@theia/localization-manager": "1.63.3",
"@theia/native-webpack-plugin": "1.63.3",
"@theia/ovsx-client": "1.63.3",
"@theia/electron": "1.63.3",
"@theia/collaboration": "1.63.3",
"@theia/dev-container": "1.63.3",
"@theia/external-terminal": "1.63.3",
"@theia/getting-started": "1.63.3",
"@theia/keymaps": "1.63.3",
"@theia/memory-inspector": "1.63.3",
"@theia/metrics": "1.63.3",
"@theia/mini-browser": "1.63.3",
"@theia/preview": "1.63.3",
"@theia/property-view": "1.63.3",
"@theia/remote": "1.63.3",
"@theia/remote-wsl": "1.63.3",
"@theia/scanoss": "1.63.3",
"@theia/secondary-window": "1.63.3",
"@theia/toolbar": "1.63.3"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.864.0",
"@google/genai": "^0.3.1"
}
}