-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
298 lines (298 loc) · 9.39 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
{
"name": "blender-development",
"displayName": "Blender Development",
"description": "Tools to simplify Blender development.",
"version": "0.0.25",
"publisher": "JacquesLucke",
"license": "MIT",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:blender.start",
"onCommand:blender.stop",
"onCommand:blender.build",
"onCommand:blender.buildAndStart",
"onCommand:blender.startWithoutCDebugger",
"onCommand:blender.buildPythonApiDocs",
"onCommand:blender.reloadAddons",
"onCommand:blender.newAddon",
"onCommand:blender.newScript",
"onCommand:blender.runScript",
"onCommand:blender.setScriptContext",
"onCommand:blender.openScriptsFolder",
"onCommand:blender.newOperator"
],
"main": "./out/extension",
"repository": {
"type": "git",
"url": "https://github.com/JacquesLucke/blender_vscode"
},
"bugs": {
"url": "https://github.com/JacquesLucke/blender_vscode/issues"
},
"contributes": {
"commands": [
{
"command": "blender.start",
"title": "Start",
"category": "Blender"
},
{
"command": "blender.stop",
"title": "Stop",
"category": "Blender"
},
{
"command": "blender.build",
"title": "Build",
"category": "Blender"
},
{
"command": "blender.buildAndStart",
"title": "Build and Start",
"category": "Blender"
},
{
"command": "blender.startWithoutCDebugger",
"title": "Start without C Debugger",
"category": "Blender"
},
{
"command": "blender.buildPythonApiDocs",
"title": "Build Python API Docs",
"category": "Blender"
},
{
"command": "blender.reloadAddons",
"title": "Reload Addons",
"category": "Blender"
},
{
"command": "blender.newAddon",
"title": "New Addon",
"category": "Blender"
},
{
"command": "blender.newScript",
"title": "New Script",
"category": "Blender"
},
{
"command": "blender.runScript",
"title": "Run Script",
"category": "Blender"
},
{
"command": "blender.setScriptContext",
"title": "Set Script Context",
"category": "Blender"
},
{
"command": "blender.openScriptsFolder",
"title": "Open Scripts Folder",
"category": "Blender"
},
{
"command": "blender.newOperator",
"title": "New Operator",
"category": "Blender"
}
],
"configuration": [
{
"title": "Blender",
"properties": {
"blender.executables": {
"type": "array",
"scope": "resource",
"description": "Paths to Blender executables.",
"items": {
"type": "object",
"title": "Single Blender Path",
"properties": {
"path": {
"type": "string",
"description": "Absolute file path to a Blender executable."
},
"name": {
"type": "string",
"description": "Custom name for this Blender version."
},
"isDebug": {
"type": "boolean",
"description": "Is this executable a debug build.",
"default": false
}
}
}
},
"blender.allowModifyExternalPython": {
"type": "boolean",
"scope": "application",
"default": false,
"description": "Deprecated: automatically installing modules in Python distributions outside of Blender.",
"markdownDeprecationMessage": "**Deprecated**: modules are now installed to `bpy.utils.user_resource(\"SCRIPTS\", path=\"modules\")`.",
"deprecationMessage": "Deprecated: modules are now installed to `bpy.utils.user_resource(\"SCRIPTS\", path=\"modules\")`."
},
"blender.addon.reloadOnSave": {
"type": "boolean",
"scope": "resource",
"default": false,
"description": "Reload addon in Blender when a document is saved."
},
"blender.addon.justMyCode": {
"type": "boolean",
"scope": "resource",
"default": true,
"description": "If true, debug only the code in this addon. Otherwise, allow stepping into external python library code."
},
"blender.addon.buildTaskName": {
"type": "string",
"scope": "resource",
"description": "Task that should be executed before the addon can be loaded into Blender."
},
"blender.addon.loadDirectory": {
"type": "string",
"scope": "resource",
"default": "auto",
"examples": [
"auto",
"./",
"./build"
],
"description": "Directory that contains the addon that should be loaded into Blender."
},
"blender.addon.sourceDirectory": {
"type": "string",
"scope": "resource",
"default": "auto",
"examples": [
"auto",
"./",
"./source"
],
"description": "Directory that contains the source code of the addon (used for path mapping for the debugger)."
},
"blender.addon.moduleName": {
"type": "string",
"scope": "resource",
"default": "auto",
"examples": [
"auto",
"my_addon_name"
],
"description": "Name or the symlink that is created in Blenders addon folder."
},
"blender.addon.extensionsRepository": {
"type": "string",
"scope": "resource",
"default": "vscode_development",
"examples": [
"vscode_development",
"user_default",
"blender_org"
],
"description": "Blender extensions only: repository to use when developing addon. \nBlender -> Preferences -> Get Extensions -> Repositories (dropdown, top right)",
"pattern": "^[\\w_]+$",
"patternErrorMessage": "Must be valid name of Python module (allowed: lower/upper case, underscore)"
},
"blender.core.buildDebugCommand": {
"type": "string",
"scope": "resource",
"description": "Command used to compile Blender.",
"default": "make debug"
},
"blender.scripts.directories": {
"type": "array",
"scope": "application",
"description": "Directories to store scripts in.",
"items": {
"type": "object",
"title": "Single Script Directory",
"properties": {
"path": {
"type": "string",
"description": "Absolute file path to a Blender executable."
},
"name": {
"type": "string",
"description": "Custom name for this Blender version."
}
}
}
},
"blender.addonFolders": {
"type": "array",
"scope": "resource",
"description": "Array of paths to addon folders. Relative folders are resolved from the path of root workspace. If empty workspace folders are used.",
"items": {
"type": "string"
}
},
"blender.environmentVariables": {
"type": "object",
"scope": "resource",
"title": "Startup Environment Variables",
"description": "Environment variables set before Blender starts. Keys of the object are used as environment variable names, values as values.",
"examples": [
{
"BLENDER_USER_SCRIPTS": "C:/custom_scripts_folder",
"BLENDER_USER_CONFIG": "C:/custom_user_config"
}
]
},
"blender.additionalArguments": {
"type": "array",
"scope": "resource",
"title": "Startup Additional Arguments",
"description": "Additional arguments used for Blender start-up. List of strings.",
"items": {
"type": "string"
},
"examples": [
[
"--factory-startup"
]
]
}
}
}
],
"languages": [
{
"id": "blend",
"extensions": [".blend"],
"aliases": ["Blend File", "blend"],
"icon": {
"light": "./icons/blender_icon.ico",
"dark": "./icons/blender_icon.ico"
},
"filenames": ["blender", "blender.exe", "blender-launcher", "blender-launcher.exe"]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/request": "^2.48.1",
"@types/vscode": "^1.28.0",
"tslint": "^5.8.0",
"typescript": "^5.5.2"
},
"dependencies": {
"request": "^2.87.0"
},
"extensionDependencies": [
"ms-python.python",
"ms-vscode.cpptools"
]
}