forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.34 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
{
"private": true,
"name": "@theia/example-electron",
"version": "0.9.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"theia": {
"target": "electron",
"frontend": {
"config": {
"applicationName": "Theia Electron Example"
}
}
},
"dependencies": {
"@theia/callhierarchy": "^0.9.0",
"@theia/console": "^0.9.0",
"@theia/core": "^0.9.0",
"@theia/cpp": "^0.9.0",
"@theia/debug": "^0.9.0",
"@theia/debug-nodejs": "^0.9.0",
"@theia/editor": "^0.9.0",
"@theia/editor-preview": "^0.9.0",
"@theia/editorconfig": "^0.9.0",
"@theia/file-search": "^0.9.0",
"@theia/filesystem": "^0.9.0",
"@theia/getting-started": "^0.9.0",
"@theia/git": "^0.9.0",
"@theia/java": "^0.9.0",
"@theia/java-debug": "^0.9.0",
"@theia/json": "^0.9.0",
"@theia/keymaps": "^0.9.0",
"@theia/languages": "^0.9.0",
"@theia/markers": "^0.9.0",
"@theia/merge-conflicts": "^0.9.0",
"@theia/messages": "^0.9.0",
"@theia/metrics": "^0.9.0",
"@theia/mini-browser": "^0.9.0",
"@theia/monaco": "^0.9.0",
"@theia/navigator": "^0.9.0",
"@theia/outline-view": "^0.9.0",
"@theia/output": "^0.9.0",
"@theia/plugin-dev": "^0.9.0",
"@theia/plugin-ext": "^0.9.0",
"@theia/plugin-ext-vscode": "^0.9.0",
"@theia/preferences": "^0.9.0",
"@theia/preview": "^0.9.0",
"@theia/process": "^0.9.0",
"@theia/python": "^0.9.0",
"@theia/search-in-workspace": "^0.9.0",
"@theia/task": "^0.9.0",
"@theia/terminal": "^0.9.0",
"@theia/textmate-grammars": "^0.9.0",
"@theia/tslint": "^0.9.0",
"@theia/typehierarchy": "^0.9.0",
"@theia/typescript": "^0.9.0",
"@theia/userstorage": "^0.9.0",
"@theia/variable-resolver": "^0.9.0",
"@theia/workspace": "^0.9.0"
},
"scripts": {
"prepare": "yarn run clean && yarn build",
"clean": "theia clean",
"build": "theiaext compile && theia build --mode development",
"watch": "concurrently -n compile,bundle \"theiaext watch --preserveWatchOutput\" \"theia build --watch --mode development\"",
"start": "theia start --plugins=local-dir:../../plugins",
"start:debug": "yarn start --log-level=debug",
"test": "electron-mocha --timeout 60000 \"./lib/test/**/*.espec.js\"",
"test:ui": "wdio wdio.conf.js"
},
"devDependencies": {
"@theia/cli": "^0.9.0"
}
}