-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
166 lines (166 loc) · 5.76 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "nextflow",
"displayName": "Nextflow",
"description": "Nextflow language support",
"version": "1.0.1",
"publisher": "nextflow",
"repository": {
"type": "git",
"url": "https://github.com/nextflow-io/vscode-language-nextflow.git"
},
"homepage": "https://nextflow.io",
"bugs": {
"url": "https://github.com/nextflow-io/vscode-language-nextflow/issues"
},
"icon": "images/nextflow-icon-128x128.png",
"keywords": [
"bioinformatics",
"nextflow",
"nf-core",
"pipelines",
"computational biology",
"scientific",
"workflows"
],
"main": "extension",
"engines": {
"vscode": "^1.73.1"
},
"devDependencies": {
"@types/node": "^16.18.6",
"@types/vscode": "^1.73.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"@vscode/vsce": "^2.15.0",
"vscode-jsonrpc": "^8.0.2",
"vscode-languageclient": "^8.0.2",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"activationEvents": [
"onLanguage:nextflow",
"onCommand:nextflow.restartServer",
"onCommand:nextflow.stopServer"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "nextflow",
"aliases": [
"Nextflow",
"nextflow"
],
"extensions": [
".nf",
".nf.test"
],
"firstLine": "^#!.*\\bnextflow\\b",
"configuration": "./language-configuration.json",
"icon": {
"light": "./images/nextflow-icon-128x128.png",
"dark": "./images/nextflow-icon-128x128.png"
}
},
{
"id": "nextflow-config",
"aliases": [
"Nextflow Config"
],
"extensions": [
".config"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./images/nextflow-icon-128x128.png",
"dark": "./images/nextflow-icon-128x128.png"
}
},
{
"id": "nextflow-markdown-injection"
}
],
"grammars": [
{
"language": "nextflow",
"scopeName": "source.nextflow",
"path": "./syntaxes/nextflow.tmLanguage.json"
},
{
"language": "nextflow-config",
"scopeName": "source.nextflow-config",
"path": "./syntaxes/nextflow-config.tmLanguage.json"
},
{
"scopeName": "source.nextflow-groovy",
"path": "./syntaxes/groovy.tmLanguage.json"
},
{
"language": "nextflow-markdown-injection",
"scopeName": "markdown.nextflow.codeblock",
"path": "./syntaxes/nextflow-markdown-injection.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.nextflow": "nextflow"
}
}
],
"commands": [
{
"command": "nextflow.restartServer",
"title": "Restart language server",
"category": "Nextflow"
},
{
"command": "nextflow.stopServer",
"title": "Stop language server",
"category": "Nextflow"
}
],
"configuration": {
"type": "object",
"description": "Configuration for Nextflow language support",
"properties": {
"nextflow.debug": {
"type": "boolean",
"default": false,
"description": "Enable debug logging and debug information in hover hints."
},
"nextflow.files.exclude": {
"type": "array",
"items": {
"type": "string"
},
"default": [
".git",
".nf-test",
"work"
],
"description": "Configure glob patterns for excluding folders from being searched for Nextflow scripts and configuration files."
},
"nextflow.formatting.harshilAlignment": {
"type": "boolean",
"default": false,
"markdownDescription": "Use the [Harshil Alignment™️](https://nf-co.re/docs/contributing/code_editors_and_styling/harshil_alignment) when formatting Nextflow scripts and config files.\n\n*Note: not all rules are supported yet*"
},
"nextflow.java.home": {
"type": [
"string",
"null"
],
"default": null,
"markdownDescription": "Specify the folder path to the desired Java runtime. Equivalent to the `JAVA_HOME` environment variable, i.e. the Java binary should be located at `$JAVA_HOME/bin/java`. Use this setting if the extension cannot find Java automatically."
},
"nextflow.suppressFutureWarnings": {
"type": "boolean",
"default": true,
"description": "Hide warnings for future deprecations and other paranoid warnings."
}
}
}
}
}