-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
{
"name": "@theia/debug",
"version": "1.27.0",
"description": "Theia - Debug Extension",
"dependencies": {
"@theia/console": "1.27.0",
"@theia/core": "1.27.0",
"@theia/editor": "1.27.0",
"@theia/filesystem": "1.27.0",
"@theia/markers": "1.27.0",
"@theia/monaco": "1.27.0",
"@theia/monaco-editor-core": "1.67.2",
"@theia/output": "1.27.0",
"@theia/process": "1.27.0",
"@theia/task": "1.27.0",
"@theia/terminal": "1.27.0",
"@theia/variable-resolver": "1.27.0",
"@theia/workspace": "1.27.0",
"jsonc-parser": "^2.2.0",
"mkdirp": "^0.5.0",
"p-debounce": "^2.1.0",
"requestretry": "^7.0.0",
"tar": "^4.0.0",
"unzip-stream": "^0.3.0",
"vscode-debugprotocol": "^1.32.0"
},
"publishConfig": {
"access": "public"
},
"theiaExtensions": [
{
"frontend": "lib/browser/debug-frontend-module",
"backend": "lib/node/debug-backend-module"
}
],
"keywords": [
"theia-extension",
"debug"
],
"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",
"bin": {
"download-debug-adapters": "./bin/download-adapters.js"
},
"files": [
"bin",
"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"
},
"nyc": {
"extends": "../../configs/nyc.json"
}
}