-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.28 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 4.28 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"private": true,
"name": "IDE",
"version": "1.67.0",
"license": "MIT",
"theia": {
"frontend": {
"config": {
"applicationName": "IDE",
"preferences": {
"files.enableTrash": false,
"security.workspace.trust.enabled": false
},
"reloadOnReconnect": true
}
},
"backend": {
"config": {
"frontendConnectionTimeout": 3000
}
}
},
"theiaPluginsDir": "../plugins",
"dependencies": {
"@theia/ai-anthropic": "1.67.0",
"@theia/ai-chat": "1.67.0",
"@theia/ai-chat-ui": "1.67.0",
"@theia/ai-claude-code": "1.67.0",
"@theia/ai-code-completion": "1.67.0",
"@theia/ai-codex": "1.67.0",
"@theia/ai-core": "1.67.0",
"@theia/ai-core-ui": "1.67.0",
"@theia/ai-editor": "1.67.0",
"@theia/ai-google": "1.67.0",
"@theia/ai-history": "1.67.0",
"@theia/ai-huggingface": "1.67.0",
"@theia/ai-ide": "1.67.0",
"@theia/ai-llamafile": "1.67.0",
"@theia/ai-mcp": "1.67.0",
"@theia/ai-mcp-server": "1.67.0",
"@theia/ai-mcp-ui": "1.67.0",
"@theia/ai-ollama": "1.67.0",
"@theia/ai-openai": "1.67.0",
"@theia/ai-scanoss": "1.67.0",
"@theia/ai-terminal": "1.67.0",
"@theia/ai-vercel-ai": "1.67.0",
"@theia/bulk-edit": "1.67.0",
"@theia/callhierarchy": "1.67.0",
"@theia/collaboration": "1.67.0",
"@theia/console": "1.67.0",
"@theia/core": "1.67.0",
"@theia/debug": "1.67.0",
"@theia/dev-container": "1.67.0",
"@theia/editor": "1.67.0",
"@theia/editor-preview": "1.67.0",
"@theia/file-search": "1.67.0",
"@theia/filesystem": "1.67.0",
"@theia/getting-started": "1.67.0",
"@theia/keymaps": "1.67.0",
"@theia/markers": "1.67.0",
"@theia/memory-inspector": "1.67.0",
"@theia/messages": "1.67.0",
"@theia/metrics": "1.67.0",
"@theia/mini-browser": "1.67.0",
"@theia/monaco": "1.67.0",
"@theia/navigator": "1.67.0",
"@theia/notebook": "1.67.0",
"@theia/outline-view": "1.67.0",
"@theia/output": "1.67.0",
"@theia/plugin-dev": "1.67.0",
"@theia/plugin-ext": "1.67.0",
"@theia/plugin-ext-headless": "1.67.0",
"@theia/plugin-ext-vscode": "1.67.0",
"@theia/plugin-metrics": "1.67.0",
"@theia/preferences": "1.67.0",
"@theia/preview": "1.67.0",
"@theia/process": "1.67.0",
"@theia/property-view": "1.67.0",
"@theia/remote": "1.67.0",
"@theia/scanoss": "1.67.0",
"@theia/scm": "1.67.0",
"@theia/scm-extra": "1.67.0",
"@theia/search-in-workspace": "1.67.0",
"@theia/secondary-window": "1.67.0",
"@theia/task": "1.67.0",
"@theia/terminal": "1.67.0",
"@theia/terminal-manager": "1.67.0",
"@theia/test": "1.67.0",
"@theia/timeline": "1.67.0",
"@theia/toolbar": "1.67.0",
"@theia/typehierarchy": "1.67.0",
"@theia/userstorage": "1.67.0",
"@theia/variable-resolver": "1.67.0",
"@theia/vsx-registry": "1.67.0",
"@theia/workspace": "1.67.0"
},
"scripts": {
"clean": "theiaext clean",
"build": "theiaext build && npm run -s bundle",
"build:production": "theiaext build && npm run -s bundle:production",
"bundle": "npm run rebuild && theia build --mode development",
"bundle:production": "npm run rebuild && theia build --mode production",
"compile": "tsc -b",
"coverage": "npm run -s test -- --test-coverage && npm run -s coverage:report",
"coverage:clean": "rimraf .nyc_output && rimraf coverage",
"coverage:report": "nyc report --reporter=html",
"rebuild": "theia rebuild:browser --cacheRoot ..",
"start": "theia start --plugins=local-dir:../plugins --hostname=0.0.0.0",
"start:debug": "npm run -s start -- --log-level=debug",
"start:watch": "concurrently --kill-others -n tsc,bundle,run -c red,yellow,green \"tsc -b -w --preserveWatchOutput\" \"npm run -s watch:bundle\" \"npm run -s start\"",
"test": "theia test . --plugins=local-dir:../plugins --test-spec=../api-tests/**/*.spec.js",
"test:debug": "npm run -s test -- --test-inspect",
"watch": "concurrently --kill-others -n tsc,bundle -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"npm run -s watch:bundle\"",
"watch:bundle": "theia build --watch --mode development",
"watch:compile": "tsc -b -w"
},
"devDependencies": {
"@theia/cli": "1.67.0",
"@theia/native-webpack-plugin": "1.67.0"
}
}