forked from che-incubator/che-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.36 KB
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": "terminal",
"displayName": "%displayName%",
"description": "%description%",
"publisher": "eclipse-che",
"license": "EPL-2.0",
"version": "0.0.1",
"engines": {
"vscode": "^1.72.0"
},
"icon": "images/eclipse-che-logo.png",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"category": "%category%",
"command": "che-terminal.new",
"shortTitle": "%new.shortTitle%",
"title": "%new.title%"
}
]
},
"scripts": {
"compile": "gulp compile-extension:che-terminal",
"watch": "gulp watch-extension:che-terminal",
"vscode:prepublish": "npm run compile",
"lint:fix": "eslint --fix --cache=true --no-error-on-unmatched-pattern=true \"{src,tests}/**/*.{ts,tsx}\"",
"license:generate": "podman run --rm -t -v $PWD:/workspace/project quay.io/che-incubator/dash-licenses:next"
},
"dependencies": {
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"vscode-nls": "^5.2.0",
"ws": "8.21.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/ws": "8.5.14"
},
"repository": {
"type": "git",
"url": "https://github.com/che-incubator/che-code.git"
}
}