-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
197 lines (197 loc) · 6.92 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
{
"name": "Kedro",
"displayName": "Kedro",
"description": "A Kedro VSCode Extension.",
"version": "0.2.2",
"preview": false,
"serverInfo": {
"name": "Kedro",
"module": "kedro"
},
"publisher": "kedro",
"license": "Apache2",
"homepage": "https://github.com/kedro-org/vscode-kedro",
"repository": {
"type": "git",
"url": "https://github.com/kedro-org/vscode-kedro.git"
},
"icon": "assets/icon.png",
"bugs": {
"url": "https://github.com/kedro-org/vscode-kedro/issues"
},
"galleryBanner": {
"color": "#1e415e",
"theme": "dark"
},
"keywords": [
"python",
"kedro",
"development tool",
"machine learning"
],
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Programming Languages",
"Data Science"
],
"extensionDependencies": [
"ms-python.python",
"redhat.vscode-yaml"
],
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "Virtual Workspaces are not supported with kedro."
}
},
"activationEvents": [
"onLanguage:python",
"onLanguage:yaml",
"workspaceContains:*.py"
],
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "concurrently \"npm:watch --prefix ./webview\" \"webpack --watch\"",
"package": "webpack --mode production --devtool source-map --config ./webpack.config.js",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"format-check": "prettier --check 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'",
"test": "node ./out/test/runTest.js",
"vsce-package": "vsce package -o kedro.vsix",
"build:webview": "npm run build --prefix ./webview",
"install:webview": "npm install --prefix ./webview"
},
"contributes": {
"icons": {
"kedro-logo": {
"description": "Kedro icon",
"default": {
"fontPath": "assets/kedro-logo/fonts/kedro-logo.woff",
"fontCharacter": "\\e900"
}
}
},
"configuration": {
"properties": {
"yaml.schemas": {
"default": {
"https://raw.githubusercontent.com/kedro-org/kedro/develop/static/jsonschema/kedro-catalog-0.19.json": "conf/**/*catalog*"
},
"description": "Default schema validate against catalog YAML files using YAML extension"
},
"kedro.importStrategy": {
"default": "useBundled",
"description": "Defines where `kedro` is imported from. This setting may be ignored if `kedro.path` is set.",
"enum": [
"useBundled",
"fromEnvironment"
],
"enumDescriptions": [
"Always use the bundled version of `kedro`.",
"Use `kedro` from environment, fallback to bundled version only if `kedro` not available in the environment."
],
"scope": "window",
"type": "string"
},
"kedro.interpreter": {
"default": [],
"description": "When set to a path to python executable, extension will use that to launch the server and any subprocess.",
"scope": "resource",
"items": {
"type": "string"
},
"type": "array"
},
"kedro.environment": {
"default": "",
"description": "Kedro environment to use when running commands.",
"scope": "resource",
"type": "string"
},
"kedro.isExperimental": {
"default": "yes",
"description": "Enable experimental features like autocompletion.",
"enum": [
"yes",
"no"
]
},
"kedro.showNotifications": {
"default": "off",
"description": "Controls when notifications are shown by this extension.",
"enum": [
"off",
"onError",
"onWarning",
"always"
],
"enumDescriptions": [
"All notifications are turned off, any errors or warning are still available in the logs.",
"Notifications are shown only in the case of an error.",
"Notifications are shown for errors and warnings.",
"Notifications are show for anything that the server chooses to show."
],
"scope": "machine",
"type": "string"
}
}
},
"commands": [
{
"title": "Restart Server",
"category": "kedro",
"command": "kedro.restart"
},
{
"title": "Select Environment",
"category": "kedro",
"command": "kedro.selectEnvironment"
},
{
"command": "pygls.server.executeCommand",
"title": "Execute Command",
"category": "pygls"
},
{
"command": "kedro.runKedroViz",
"category": "kedro",
"title": "Run Kedro Viz"
},
{
"command": "kedro.showOutputChannel",
"category": "kedro",
"title": "Show logs"
}
]
},
"dependencies": {
"@vscode/python-extension": "^1.0.5",
"axios": "^1.7.7",
"fs-extra": "^11.2.0",
"vscode-languageclient": "^8.1.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "16.x",
"@types/vscode": "1.78.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.22.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"glob": "^10.3.10",
"prettier": "^3.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}