-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathpackage.json
97 lines (97 loc) · 2.61 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@theia/plugin-ext",
"version": "1.27.0",
"description": "Theia - Plugin Extension",
"main": "lib/common/index.js",
"typings": "lib/common/index.d.ts",
"dependencies": {
"@theia/bulk-edit": "1.27.0",
"@theia/callhierarchy": "1.27.0",
"@theia/console": "1.27.0",
"@theia/core": "1.27.0",
"@theia/debug": "1.27.0",
"@theia/editor": "1.27.0",
"@theia/file-search": "1.27.0",
"@theia/filesystem": "1.27.0",
"@theia/markers": "1.27.0",
"@theia/messages": "1.27.0",
"@theia/monaco": "1.27.0",
"@theia/monaco-editor-core": "1.67.2",
"@theia/navigator": "1.27.0",
"@theia/output": "1.27.0",
"@theia/plugin": "1.27.0",
"@theia/preferences": "1.27.0",
"@theia/scm": "1.27.0",
"@theia/search-in-workspace": "1.27.0",
"@theia/task": "1.27.0",
"@theia/terminal": "1.27.0",
"@theia/timeline": "1.27.0",
"@theia/variable-resolver": "1.27.0",
"@theia/workspace": "1.27.0",
"@types/mime": "^2.0.1",
"decompress": "^4.2.1",
"escape-html": "^1.0.3",
"filenamify": "^4.1.0",
"is-electron": "^2.2.0",
"jsonc-parser": "^2.2.0",
"lodash.clonedeep": "^4.5.0",
"macaddress": "^0.2.9",
"mime": "^2.4.4",
"ps-tree": "^1.2.0",
"request": "^2.82.0",
"semver": "^5.4.1",
"uuid": "^8.0.0",
"vhost": "^3.0.2",
"vscode-debugprotocol": "^1.32.0",
"vscode-proxy-agent": "^0.11.0",
"vscode-textmate": "^7.0.1"
},
"publishConfig": {
"access": "public"
},
"theiaExtensions": [
{
"backend": "lib/plugin-ext-backend-module",
"backendElectron": "lib/plugin-ext-backend-electron-module",
"frontend": "lib/plugin-ext-frontend-module"
},
{
"frontendElectron": "lib/plugin-ext-frontend-electron-module"
}
],
"keywords": [
"theia-extension"
],
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-theia/theia.git"
},
"bugs": {
"url": "https://github.com/eclipse-theia/theia/issues"
},
"homepage": "https://github.com/eclipse-theia/theia",
"files": [
"lib",
"src"
],
"scripts": {
"build": "theiaext build",
"clean": "theiaext clean",
"compile": "theiaext compile",
"lint": "theiaext lint",
"test": "theiaext test",
"watch": "theiaext watch"
},
"devDependencies": {
"@theia/ext-scripts": "1.27.0",
"@types/decompress": "^4.2.2",
"@types/escape-html": "^0.0.20",
"@types/lodash.clonedeep": "^4.5.3",
"@types/ps-tree": "^1.1.0",
"@types/request": "^2.0.3"
},
"nyc": {
"extends": "../../configs/nyc.json"
}
}