forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.9 KB
/
package.json
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
{
"private": true,
"name": "@theia/example-browser",
"version": "1.19.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"theia": {
"frontend": {
"config": {
"applicationName": "Theia Browser Example",
"preferences": {
"files.enableTrash": false
}
}
},
"backend": {
"config": {
"resolveSystemPlugins": false
}
}
},
"dependencies": {
"@theia/api-samples": "1.19.0",
"@theia/bulk-edit": "1.19.0",
"@theia/callhierarchy": "1.19.0",
"@theia/console": "1.19.0",
"@theia/core": "1.19.0",
"@theia/debug": "1.19.0",
"@theia/editor": "1.19.0",
"@theia/editor-preview": "1.19.0",
"@theia/file-search": "1.19.0",
"@theia/filesystem": "1.19.0",
"@theia/getting-started": "1.19.0",
"@theia/git": "1.19.0",
"@theia/keymaps": "1.19.0",
"@theia/markers": "1.19.0",
"@theia/messages": "1.19.0",
"@theia/metrics": "1.19.0",
"@theia/mini-browser": "1.19.0",
"@theia/monaco": "1.19.0",
"@theia/navigator": "1.19.0",
"@theia/outline-view": "1.19.0",
"@theia/output": "1.19.0",
"@theia/plugin-dev": "1.19.0",
"@theia/plugin-ext": "1.19.0",
"@theia/plugin-ext-vscode": "1.19.0",
"@theia/plugin-metrics": "1.19.0",
"@theia/preferences": "1.19.0",
"@theia/preview": "1.19.0",
"@theia/process": "1.19.0",
"@theia/property-view": "1.19.0",
"@theia/scm": "1.19.0",
"@theia/scm-extra": "1.19.0",
"@theia/search-in-workspace": "1.19.0",
"@theia/task": "1.19.0",
"@theia/terminal": "1.19.0",
"@theia/timeline": "1.19.0",
"@theia/typehierarchy": "1.19.0",
"@theia/userstorage": "1.19.0",
"@theia/variable-resolver": "1.19.0",
"@theia/vsx-registry": "1.19.0",
"@theia/workspace": "1.19.0"
},
"scripts": {
"clean": "theia clean",
"build": "yarn compile && yarn bundle",
"bundle": "theia build --mode development",
"compile": "tsc -b",
"coverage": "yarn test --test-coverage && yarn coverage:report",
"coverage:clean": "rimraf .nyc_output && rimraf coverage",
"coverage:report": "nyc report --reporter=html",
"rebuild": "theia rebuild:browser --cacheRoot ../..",
"start": "yarn rebuild && theia start --plugins=local-dir:../../plugins",
"start:debug": "yarn start --log-level=debug",
"start:watch": "concurrently --kill-others -n tsc,bundle,run -c red,yellow,green \"tsc -b -w --preserveWatchOutput\" \"yarn watch:bundle\" \"yarn start\"",
"test": "yarn rebuild && theia test . --plugins=local-dir:../../plugins --test-spec=../api-tests/**/*.spec.js",
"test:debug": "yarn test --test-inspect",
"watch": "concurrently --kill-others -n tsc,bundle -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"yarn watch:bundle\"",
"watch:bundle": "theia build --watch --mode development",
"watch:compile": "tsc -b -w"
},
"devDependencies": {
"@theia/cli": "1.19.0"
}
}