forked from AnalyticalGraphicsInc/gltf-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
284 lines (284 loc) · 10.6 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
{
"name": "gltf-vscode",
"displayName": "glTF Tools",
"description": "Tools for editing and previewing glTF files",
"version": "2.1.3",
"publisher": "cesium",
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/AnalyticalGraphicsInc/gltf-vscode"
},
"icon": "images/gltf.png",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Formatters",
"Linters"
],
"activationEvents": [
"onView:gltfOutline",
"onLanguage:json",
"onCommand:gltf.inspectDataUri",
"onCommand:gltf.importUri",
"onCommand:gltf.exportUri",
"onCommand:gltf.previewModel",
"onCommand:gltf.validateFile",
"onCommand:gltf.exportGlbFile",
"onCommand:gltf.importGlbFile"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "glTF configuration",
"properties": {
"glTF.defaultV1Engine": {
"type": "string",
"default": "Cesium",
"enum": [
"Babylon.js",
"Cesium",
"Three.js"
],
"description": "The default 3D engine that will be used when previewing a glTF 1.0 model. You can always change the current engine within the preview pane."
},
"glTF.defaultV2Engine": {
"type": "string",
"default": "Babylon.js",
"enum": [
"Babylon.js",
"Cesium",
"Three.js"
],
"description": "The default 3D engine that will be used when previewing a glTF 2.0 model. You can always change the current engine within the preview pane."
},
"glTF.Babylon.environment": {
"type": "string",
"default": "{extensionRootPath}/environments/babylon/countrySpecularHDR.dds",
"description": "The path to a BabylonJS-ready DDS environment file. See: http://doc.babylonjs.com/overviews/physically_based_rendering#creating-a-dds-environment-file-from-an-hdr-image"
},
"glTF.Three.environment": {
"type": "string",
"default": "{extensionRootPath}/environments/threejs/Park2/{face}.jpg",
"description": "The path to a set of environment cube faces usable by ThreeJS. Use {face} for the face name, and six files must exist with the following face names: posx, negx, posy, negy, posz, and negz."
},
"glTF.showToolbar3D": {
"type": "boolean",
"default": true,
"description": "Show a button on the toolbar to activate the 3D Preview window."
},
"glTF.alwaysOverwriteDefaultFilename": {
"type": "boolean",
"default": false,
"description": "When creating a filesystem file from glTF or GLB import or export should a prompt be shown to select the result filename?"
},
"glTF.expandOutlineWithSelection": {
"type": "boolean",
"default": false,
"description": "When the editor selection changes the glTF outline will expand to include the current selection."
},
"glTF.Validation.enable": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "When true, automatically run the glTF Validator and report any found issues to the document problems window."
},
"glTF.Validation.debounce": {
"scope": "resource",
"type": "number",
"default": 500,
"description": "The number of milliseconds to wait for multiple requests to re-validate a glTF document."
},
"glTF.Validation.maxIssues": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of issues reported by the glTF Validator."
},
"glTF.Validation.ignoredIssues": {
"scope": "resource",
"type": "array",
"default": [],
"description": "Array of issue codes to ignore during validation. See https://github.com/KhronosGroup/glTF-Validator/blob/master/ISSUES.md"
},
"glTF.Validation.severityOverrides": {
"scope": "resource",
"type": "object",
"default": {},
"description": "Override severity code of any glTF validation message by code. See https://github.com/KhronosGroup/glTF-Validator/blob/master/ISSUES.md"
}
}
},
"commands": [
{
"command": "gltf.inspectDataUri",
"title": "glTF: Inspect Data URI"
},
{
"command": "gltf.importUri",
"title": "glTF: Import file as Data URI"
},
{
"command": "gltf.exportUri",
"title": "glTF: Export a Data URI to a file"
},
{
"command": "gltf.previewModel",
"title": "glTF: Preview 3D Model",
"icon": {
"dark": "./resources/dark/scene.svg",
"light": "./resources/light/scene.svg"
}
},
{
"command": "gltf.validateFile",
"title": "glTF: Validate a GLB or GLTF file"
},
{
"command": "gltf.exportGlbFile",
"title": "glTF: Export to GLB (Binary file)"
},
{
"command": "gltf.importGlbFile",
"title": "glTF: Import from GLB"
}
],
"keybindings": [
{
"command": "gltf.inspectDataUri",
"key": "alt+d",
"mac": "alt+d",
"when": "editorTextFocus && gltfFileActive"
},
{
"command": "gltf.previewModel",
"key": "alt+g",
"mac": "alt+g",
"when": "editorTextFocus && gltfFileActive"
},
{
"command": "gltf.exportGlbFile",
"key": "alt+shift+s e",
"mac": "alt+shift+s e",
"when": "editorTextFocus && gltfFileActive"
}
],
"menus": {
"explorer/context": [
{
"command": "gltf.importGlbFile",
"group": "glTF"
},
{
"command": "gltf.validateFile",
"group": "glTF"
}
],
"editor/context": [
{
"command": "gltf.previewModel",
"when": "gltfFileActive",
"group": "glTF"
},
{
"command": "gltf.inspectDataUri",
"when": "gltfFileActive",
"group": "glTF"
}
],
"editor/title": [
{
"command": "gltf.previewModel",
"when": "gltfFileActive && glTF_showToolbar3D",
"group": "navigation"
}
],
"editor/title/context": [
{
"command": "gltf.previewModel",
"when": "gltfFileActive",
"group": "glTF"
},
{
"command": "gltf.inspectDataUri",
"when": "gltfFileActive",
"group": "glTF"
},
{
"command": "gltf.importUri",
"when": "gltfFileActive",
"group": "glTF"
},
{
"command": "gltf.exportUri",
"when": "gltfFileActive",
"group": "glTF"
},
{
"command": "gltf.exportGlbFile",
"when": "gltfFileActive",
"group": "glTF"
},
{
"command": "gltf.importGlbFile",
"group": "glTF"
},
{
"command": "gltf.validateFile",
"group": "glTF"
}
]
},
"languages": [
{
"id": "json",
"extensions": [
".gltf"
]
}
],
"jsonValidation": [
{
"fileMatch": "*.gltf",
"url": "./schemas/glTF.chooser.schema.json"
}
],
"views": {
"explorer": [
{
"id": "gltfOutline",
"name": "glTF Outline",
"when": "gltfFileActive"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"postinstall": "cd server && npm install && cd .. && node ./node_modules/vscode/bin/install",
"compile": "tsc -p ./tsconfig.json && cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
"compile:client": "tsc -p ./tsconfig.json",
"watch:client": "tsc -w -p ./tsconfig.json",
"compile:server": "cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.58",
"eslint": "^4.14.0",
"eslint-config-cesium": "^3.0.0",
"eslint-plugin-html": "^4.0.1",
"mocha": "^4.0.1",
"typescript": "^2.6.2",
"yargs": "^6.5.0"
},
"dependencies": {
"babylonjs": "^3.1.1",
"gltf-import-export": "^1.0.6",
"gltf-validator": "2.0.0-dev.1.6",
"json-source-map": "^0.4.0",
"sprintf-js": "^1.1.1",
"vscode": "^1.1.10",
"vscode-languageclient": "^3.5.0"
}
}