-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.17 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "sprocket-vscode",
"displayName": "Sprocket",
"publisher": "stjude-rust-labs",
"description": "Workflow Definition Language (WDL) support for Visual Studio Code",
"icon": "assets/sprocket-logo-square.png",
"repository": {
"type": "git",
"url": "https://github.com/stjude-rust-labs/sprocket-vscode"
},
"version": "0.6.0",
"engines": {
"vscode": "^1.91.0"
},
"license": "SEE LICENSE IN LICENSE-APACHE",
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"WDL",
"Workflow Description Language",
"Bioinformatics"
],
"preview": true,
"main": "./dist/extension.js",
"activationEvents": [],
"contributes": {
"languages": [
{
"id": "wdl",
"extensions": [
".wdl"
],
"aliases": [
"WDL",
"Workflow Definition Language"
],
"icon": {
"light": "./assets/icon.png",
"dark": "./assets/icon.png"
},
"configuration": "./wdl-language-configuration.json"
}
],
"grammars": [
{
"language": "wdl",
"scopeName": "source.wdl",
"path": "./syntaxes/wdl.tmGrammar.json",
"embeddedLanguages": {
"meta.embedded.block.shellscript": "shellscript"
}
}
],
"commands": [
{
"command": "sprocket.restartServer",
"title": "Restart Server",
"category": "Sprocket"
}
],
"configuration": [
{
"title": "Sprocket",
"properties": {
"sprocket.server.checkForUpdates": {
"type": "boolean",
"markdownDescription": "Whether or not to check for updates to the latest stable Sprocket release when the extension starts.",
"default": true
},
"sprocket.server.path": {
"type": "string",
"markdownDescription": "The path to a locally installed Sprocket; defaults to automatically installing the latest stable Sprocket."
},
"sprocket.server.outputLevel": {
"type": "string",
"markdownDescription": "Manages the output level of the Sprocket server",
"default": "Quiet",
"enum": [
"Verbose",
"Information",
"Quiet"
],
"enumDescriptions": [
"The server will output all available information.",
"The server will output informational messages.",
"The server will only output error messages."
]
},
"sprocket.server.lint": {
"type": "boolean",
"markdownDescription": "Passes the `--lint` flag to `sprocket`; this enables additional linting checks that are not enabled by default."
},
"sprocket.server.maxRetries": {
"type": "number",
"markdownDescription": "Number of times to retry restarting the `sprocket analyzer` if it fails to start.",
"default": 1
}
}
}
]
},
"scripts": {
"compile": "yarn run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "yarn run package",
"package": "yarn run check-types && node esbuild.js --production",
"format": "npx prettier . --write"
},
"extensionDependencies": [
"mindaro-dev.file-downloader"
],
"dependencies": {
"@microsoft/vscode-file-downloader-api": "^1.0.1",
"extract-zip": "^2.0.1",
"node-fetch": "2",
"semver": "^7.6.3",
"tar": "^7.4.3",
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"typescript": "^5.4.5"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}