|
| 1 | +{ |
| 2 | + "private": true, |
| 3 | + "name": "@theia/Dockside", |
| 4 | + "version": "1.56.0", |
| 5 | + "license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0", |
| 6 | + "theia": { |
| 7 | + "frontend": { |
| 8 | + "config": { |
| 9 | + "applicationName": "Theia for Dockside from NewsNow Labs", |
| 10 | + "warnOnPotentiallyInsecureHostPattern": false, |
| 11 | + "preferences": { |
| 12 | + "files.enableTrash": false, |
| 13 | + "security.workspace.trust.enabled": false |
| 14 | + }, |
| 15 | + "reloadOnReconnect": true |
| 16 | + } |
| 17 | + }, |
| 18 | + "backend": { |
| 19 | + "config": { |
| 20 | + "resolveSystemPlugins": false, |
| 21 | + "frontendConnectionTimeout": 3000 |
| 22 | + } |
| 23 | + } |
| 24 | + }, |
| 25 | + "dependencies": { |
| 26 | + "@theia/ai-chat": "1.56.0", |
| 27 | + "@theia/ai-chat-ui": "1.56.0", |
| 28 | + "@theia/ai-code-completion": "1.56.0", |
| 29 | + "@theia/ai-core": "1.56.0", |
| 30 | + "@theia/ai-history": "1.56.0", |
| 31 | + "@theia/ai-huggingface": "1.56.0", |
| 32 | + "@theia/ai-llamafile": "1.56.0", |
| 33 | + "@theia/ai-ollama": "1.56.0", |
| 34 | + "@theia/ai-openai": "1.56.0", |
| 35 | + "@theia/ai-terminal": "1.56.0", |
| 36 | + "@theia/ai-workspace-agent": "1.56.0", |
| 37 | + "@theia/bulk-edit": "1.56.0", |
| 38 | + "@theia/callhierarchy": "1.56.0", |
| 39 | + "@theia/collaboration": "1.56.0", |
| 40 | + "@theia/console": "1.56.0", |
| 41 | + "@theia/core": "1.56.0", |
| 42 | + "@theia/debug": "1.56.0", |
| 43 | + "@theia/editor": "1.56.0", |
| 44 | + "@theia/editor-preview": "1.56.0", |
| 45 | + "@theia/file-search": "1.56.0", |
| 46 | + "@theia/filesystem": "1.56.0", |
| 47 | + "@theia/getting-started": "1.56.0", |
| 48 | + "@theia/git": "1.56.0", |
| 49 | + "@theia/keymaps": "1.56.0", |
| 50 | + "@theia/markers": "1.56.0", |
| 51 | + "@theia/messages": "1.56.0", |
| 52 | + "@theia/metrics": "1.56.0", |
| 53 | + "@theia/mini-browser": "1.56.0", |
| 54 | + "@theia/monaco": "1.56.0", |
| 55 | + "@theia/navigator": "1.56.0", |
| 56 | + "@theia/notebook": "1.56.0", |
| 57 | + "@theia/outline-view": "1.56.0", |
| 58 | + "@theia/output": "1.56.0", |
| 59 | + "@theia/plugin-dev": "1.56.0", |
| 60 | + "@theia/plugin-ext": "1.56.0", |
| 61 | + "@theia/plugin-ext-headless": "1.56.0", |
| 62 | + "@theia/plugin-ext-vscode": "1.56.0", |
| 63 | + "@theia/plugin-metrics": "1.56.0", |
| 64 | + "@theia/preferences": "1.56.0", |
| 65 | + "@theia/preview": "1.56.0", |
| 66 | + "@theia/process": "1.56.0", |
| 67 | + "@theia/property-view": "1.56.0", |
| 68 | + "@theia/remote": "1.56.0", |
| 69 | + "@theia/scm": "1.56.0", |
| 70 | + "@theia/scm-extra": "1.56.0", |
| 71 | + "@theia/search-in-workspace": "1.56.0", |
| 72 | + "@theia/secondary-window": "1.56.0", |
| 73 | + "@theia/task": "1.56.0", |
| 74 | + "@theia/terminal": "1.56.0", |
| 75 | + "@theia/timeline": "1.56.0", |
| 76 | + "@theia/toolbar": "1.56.0", |
| 77 | + "@theia/typehierarchy": "1.56.0", |
| 78 | + "@theia/userstorage": "1.56.0", |
| 79 | + "@theia/variable-resolver": "1.56.0", |
| 80 | + "@theia/vsx-registry": "1.56.0", |
| 81 | + "@theia/workspace": "1.56.0" |
| 82 | + }, |
| 83 | + "scripts": { |
| 84 | + "clean": "theia clean", |
| 85 | + "build": "yarn compile && yarn bundle", |
| 86 | + "bundle": "theia build --mode development", |
| 87 | + "compile": "tsc -b", |
| 88 | + "coverage": "yarn test --test-coverage && yarn coverage:report", |
| 89 | + "coverage:clean": "rimraf .nyc_output && rimraf coverage", |
| 90 | + "coverage:report": "nyc report --reporter=html", |
| 91 | + "rebuild": "theia rebuild:browser --cacheRoot ../..", |
| 92 | + "prepare": "yarn run clean && yarn production", |
| 93 | + "production": "theia build --mode production", |
| 94 | + "start": "yarn rebuild && theia start --plugins=local-dir:../../plugins", |
| 95 | + "start:debug": "yarn start --log-level=debug", |
| 96 | + "start:watch": "concurrently --kill-others -n tsc,bundle,run -c red,yellow,green \"tsc -b -w --preserveWatchOutput\" \"yarn watch:bundle\" \"yarn start\"", |
| 97 | + "test": "yarn rebuild && theia test . --plugins=local-dir:../../plugins --test-spec=../api-tests/**/*.spec.js", |
| 98 | + "test:debug": "yarn test --test-inspect", |
| 99 | + "watch": "concurrently --kill-others -n tsc,bundle -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"yarn watch:bundle\"", |
| 100 | + "watch:bundle": "theia build --watch --mode development", |
| 101 | + "watch:compile": "tsc -b -w", |
| 102 | + "postinstall": "patch-package --error-on-fail" |
| 103 | + }, |
| 104 | + "devDependencies": { |
| 105 | + "@theia/cli": "1.56.0", |
| 106 | + "patch-package": "^6.2.2", |
| 107 | + "postinstall-postinstall": "^2.1.0" |
| 108 | + } |
| 109 | +} |
0 commit comments