-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 1.98 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
72
73
74
75
76
77
78
79
80
{
"name": "wdl-devtools",
"displayName": "WDL DevTools",
"description": "Advanced development tools for Workflow Description Language",
"publisher": "broadinstitute",
"repository": {
"type": "git",
"url": "https://github.com/broadinstitute/wdl-ide"
},
"version": "0.0.1",
"icon": "images/openwdl.png",
"private": true,
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Programming Languages",
"Debuggers"
],
"activationEvents": [
"onLanguage:wdl"
],
"contributes": {
"keybindings": [
{
"command": "editor.action.codeAction",
"key": "shift+alt+enter",
"when": "editorFocus && editorLangId == 'wdl'",
"args": {
"kind": "wdl.run"
}
}
],
"configuration": {
"title": "WDL Language Server Configuration",
"properties": {
"wdl.pythonPath": {
"type": "string",
"description": "Path to Python 3 executable",
"default": "python3",
"scope": "application"
},
"wdl.cromwell.url": {
"type": "string",
"description": "Base URL of the Cromwell API",
"pattern": "^https?://[\\w.-]+(:\\d+)?[/\\w.-]*$",
"default": "http://localhost:8000",
"scope": "application"
},
"wdl.cromwell.pollSec": {
"type": "integer",
"description": "Polling interval of Cromwell API, in seconds",
"minimum": 5,
"default": 5,
"scope": "application"
}
}
}
},
"main": "./out/extension",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vsce": "vsce",
"vscode:prepublish": "npm run compile"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/vscode": "^1.56.0",
"@vscode/vsce": "^2.26.0",
"eslint": "^9.1.1",
"typescript": "^5.4.5"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"extensionDependencies": [
"broadinstitute.wdl"
]
}