-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "tclb-helper",
"displayName": "TCLB Helper Extension",
"description": "This package helps edit XML config files for TCLB",
"version": "0.1.0",
"publisher": "cfd-go",
"repository": "https://github.com/CFD-GO/TCLB_vscode",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"title": "Enable CodeLens",
"command": "tclb-helper.enableCodeLens",
"category": "CodeLens Sample"
},
{
"title": "Disable Codelens",
"command": "tclb-helper.disableCodeLens",
"category": "CodeLens Sample"
}
],
"configuration": {
"properties": {
"tclb-helper.enableCodeLens": {
"type": "boolean",
"default": true
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "13.9.8",
"@types/vscode": "1.43.0",
"tslint": "6.1.0",
"typescript": "3.8.3"
}
}