generated from microsoft/vscode-python-tools-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
181 lines (181 loc) · 6.48 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
{
"name": "yapf",
"displayName": "yapf",
"description": "Formatter support for python files using `yapf`.",
"version": "2023.11.0",
"preview": true,
"serverInfo": {
"name": "yapf",
"module": "yapf"
},
"publisher": "eeyore",
"license": "MIT",
"homepage": "https://github.com/EeyoreLee/vscode-extension-yapf",
"repository": {
"type": "git",
"url": "https://github.com/EeyoreLee/vscode-extension-yapf.git"
},
"bugs": {
"url": "https://github.com/EeyoreLee/vscode-extension-yapf/issues"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#1e415e",
"theme": "dark"
},
"keywords": [
"python",
"yapf"
],
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Programming Languages",
"Linters",
"Formatters"
],
"extensionDependencies": [
"ms-python.python"
],
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "Virtual Workspaces are not supported with yapf."
}
},
"activationEvents": [
"onLanguage:python",
"workspaceContains:*.py",
"workspaceContains:*.ipynb"
],
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "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",
"vsce-publish-release": "vsce publish -p",
"vsce-package-prerelease": "vsce package --pre-release",
"vsce-publish-prerelease": "vsce publish --pre-release -p"
},
"contributes": {
"configuration": {
"properties": {
"yapf.args": {
"default": [],
"description": "Arguments passed in. Each argument is a separate item in the array.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"yapf.path": {
"default": [],
"description": "When set to a path to yapf binary, extension will use that. NOTE: Using this option may slowdown server response time.",
"scope": "resource",
"items": {
"type": "string"
},
"type": "array"
},
"yapf.importStrategy": {
"default": "fromEnvironment",
"description": "Defines where `yapf` is imported from. This setting may be ignored if `yapf.path` is set.",
"enum": [
"useBundled",
"fromEnvironment"
],
"enumDescriptions": [
"Always use the bundled version of `yapf`.",
"Use `yapf` from environment, fallback to bundled version only if `yapf` not available in the environment."
],
"scope": "window",
"type": "string"
},
"yapf.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"
},
"yapf.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"
},
"yapf.showDebugLog": {
"default": false,
"description": "Whether to output debug log",
"scope": "resource",
"type": "boolean",
"tags": [
"experimental"
]
},
"yapf.cellMagics": {
"default": [],
"description": "Useful for formatting cells with custom python magics. e.g. [\"matplotlib inline\"]",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
}
}
},
"commands": [
{
"title": "Restart Server",
"category": "yapf",
"command": "yapf.restart"
}
]
},
"dependencies": {
"@vscode/python-extension": "^1.0.5",
"fs-extra": "^11.2.0",
"vscode-languageclient": "^8.1.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/vscode": "1.78.0",
"@types/glob": "^8.1.0",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"eslint": "^9.17.0",
"glob": "^11.0.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"ts-loader": "^9.5.1",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
}
}