-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "@theia/terminal",
"version": "1.34.0",
"description": "Theia - Terminal Extension",
"dependencies": {
"@theia/core": "1.34.0",
"@theia/editor": "1.34.0",
"@theia/filesystem": "1.34.0",
"@theia/process": "1.34.0",
"@theia/variable-resolver": "1.34.0",
"@theia/workspace": "1.34.0",
"xterm": "^4.16.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-search": "^0.8.2"
},
"publishConfig": {
"access": "public"
},
"theiaExtensions": [
{
"frontend": "lib/browser/terminal-frontend-module",
"secondaryWindow": "lib/browser/terminal-frontend-module",
"backend": "lib/node/terminal-backend-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.34.0"
},
"nyc": {
"extends": "../../configs/nyc.json"
}
}