deploy: current vibn theia state
Some checks failed
Playwright Tests / Playwright Tests (ubuntu-22.04, Node.js 22.x) (push) Has been cancelled
3PP License Check / 3PP License Check (11, 22.x, ubuntu-22.04) (push) Has been cancelled
Publish packages to NPM / Perform Publishing (push) Has been cancelled

Made-with: Cursor
This commit is contained in:
2026-02-27 12:01:08 -08:00
commit 8bb5110148
3782 changed files with 640947 additions and 0 deletions

View File

@@ -0,0 +1,123 @@
{
"private": true,
"name": "@theia/example-electron",
"productName": "Theia Electron Example",
"version": "1.68.0",
"main": "lib/backend/electron-main.js",
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
"theia": {
"target": "electron",
"frontend": {
"config": {
"applicationName": "Theia Electron Example",
"reloadOnReconnect": true,
"electron": {
"splashScreenOptions": {
"content": "resources/theia-logo.svg",
"height": 90
}
}
}
},
"backend": {
"config": {
"frontendConnectionTimeout": -1
}
}
},
"dependencies": {
"@theia/ai-anthropic": "1.68.0",
"@theia/ai-chat": "1.68.0",
"@theia/ai-chat-ui": "1.68.0",
"@theia/ai-claude-code": "1.68.0",
"@theia/ai-code-completion": "1.68.0",
"@theia/ai-codex": "1.68.0",
"@theia/ai-copilot": "1.68.0",
"@theia/ai-core": "1.68.0",
"@theia/ai-core-ui": "1.68.0",
"@theia/ai-editor": "1.68.0",
"@theia/ai-google": "1.68.0",
"@theia/ai-history": "1.68.0",
"@theia/ai-huggingface": "1.68.0",
"@theia/ai-llamafile": "1.68.0",
"@theia/ai-ollama": "1.68.0",
"@theia/ai-openai": "1.68.0",
"@theia/ai-scanoss": "1.68.0",
"@theia/ai-terminal": "1.68.0",
"@theia/api-provider-sample": "1.68.0",
"@theia/bulk-edit": "1.68.0",
"@theia/callhierarchy": "1.68.0",
"@theia/collaboration": "1.68.0",
"@theia/console": "1.68.0",
"@theia/core": "1.68.0",
"@theia/debug": "1.68.0",
"@theia/dev-container": "1.68.0",
"@theia/editor": "1.68.0",
"@theia/editor-preview": "1.68.0",
"@theia/electron": "1.68.0",
"@theia/external-terminal": "1.68.0",
"@theia/file-search": "1.68.0",
"@theia/filesystem": "1.68.0",
"@theia/getting-started": "1.68.0",
"@theia/keymaps": "1.68.0",
"@theia/markers": "1.68.0",
"@theia/memory-inspector": "1.68.0",
"@theia/messages": "1.68.0",
"@theia/metrics": "1.68.0",
"@theia/mini-browser": "1.68.0",
"@theia/monaco": "1.68.0",
"@theia/navigator": "1.68.0",
"@theia/outline-view": "1.68.0",
"@theia/output": "1.68.0",
"@theia/plugin-dev": "1.68.0",
"@theia/plugin-ext": "1.68.0",
"@theia/plugin-ext-headless": "1.68.0",
"@theia/plugin-ext-vscode": "1.68.0",
"@theia/preferences": "1.68.0",
"@theia/preview": "1.68.0",
"@theia/process": "1.68.0",
"@theia/property-view": "1.68.0",
"@theia/remote": "1.68.0",
"@theia/remote-wsl": "1.68.0",
"@theia/scanoss": "1.68.0",
"@theia/scm": "1.68.0",
"@theia/scm-extra": "1.68.0",
"@theia/search-in-workspace": "1.68.0",
"@theia/secondary-window": "1.68.0",
"@theia/task": "1.68.0",
"@theia/terminal": "1.68.0",
"@theia/terminal-manager": "1.68.0",
"@theia/timeline": "1.68.0",
"@theia/toolbar": "1.68.0",
"@theia/typehierarchy": "1.68.0",
"@theia/userstorage": "1.68.0",
"@theia/variable-resolver": "1.68.0",
"@theia/vsx-registry": "1.68.0",
"@theia/workspace": "1.68.0"
},
"scripts": {
"build": "theiaext build && npm run -s bundle",
"bundle": "npm run rebuild && theia build --mode development",
"bundle:production": "npm run rebuild && theia build --mode production",
"clean": "theiaext clean",
"compile": "tsc -b",
"lint": "theiaext lint",
"rebuild": "theia rebuild:electron --cacheRoot ../..",
"start": "theia start --plugins=local-dir:../../plugins --ovsx-router-config=../ovsx-router-config.json",
"start:debug": "npm run -s start -- --log-level=debug --remote-debugging-port=9222",
"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": "electron-mocha --timeout 60000 \"./lib/test/**/*.espec.js\"",
"watch": "concurrently --kill-others -n tsc,bundle -c red,blue \"tsc -b -w --preserveWatchOutput\" \"npm run -s watch:bundle\"",
"watch:bundle": "theia build --watch --mode development",
"watch:compile": "tsc -b -w",
"package": "npm run bundle:production && electron-builder",
"package:mac": "npm run bundle:production && electron-builder --mac",
"publish": "npm run bundle:production && electron-builder --mac --publish always",
"release": "npm run bundle:production && electron-builder --mac --publish always"
},
"devDependencies": {
"@theia/cli": "1.68.0",
"electron": "38.4.0",
"electron-builder": "^25.1.8"
}
}