-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.23 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
57
58
{
"name": "vscode-error-central",
"description": "Error Central Extension for VS Code",
"version": "0.0.1",
"publisher": "error-central",
"license": "MIT",
"keywords": [
"ec",
"error",
"central",
"error-central"
],
"repository": {
"type": "git",
"url": "https://github.com/error-central/error-central.git"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:errorCentral.start",
"onWebviewPanel:errorCentral"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "errorCentral.start",
"title": "Start error central session",
"category": "Error Central"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -w -p ./"
},
"dependencies": {
"@types/tail": "^1.2.1",
"axios": "^0.19.0",
"tail": "^2.0.3",
"vscode-helpers": "^4.0.1",
"react": "^16.8.6"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^10.5.2",
"tslint": "^5.16.0",
"typescript": "^3.5.1",
"@types/vscode": "^1.32.0",
"typescript": "^3.1.6"
}
}