-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.63 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
{
"name": "x-ite-vscode",
"publisher": "create3000",
"displayName": "X_ITE VS Code Extension",
"description": "Preview and debug X3D, glTF, VRML and other 3D models directly in the editor.",
"version": "1.2.0",
"license": "GPL-3.0",
"icon": "images/icon.png",
"homepage": "https://create3000.github.io/x_ite/",
"author": {
"name": "Holger Seelig",
"email": "holger.seelig@gmail.com",
"url": "https://github.com/create3000"
},
"repository": {
"type": "git",
"url": "https://github.com/create3000/x_ite-vscode.git"
},
"bugs": {
"url": "https://github.com/create3000/x_ite-vscode/issues"
},
"keywords": [
"X3D",
"X3DV",
"X3DJ",
"VRML",
"WRL",
"glTF",
"OBJ",
"STL",
"PLY",
"SVG",
"3D",
"model",
"viewer",
"tools"
],
"galleryBanner": {
"color": "#383838",
"theme": "dark"
},
"sponsor": {
"url": "https://www.patreon.com/X_ITE"
},
"main": "./src/extension.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test",
"release": "node build/release.js"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "22.9.0",
"@types/vscode": "^1.95.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.14.0",
"shell-tools": "^1.1.9"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Debuggers"
],
"activationEvents": [
"onLanguage:X3D",
"onLanguage:VRML",
"onLanguage:xml",
"onLanguage:json",
"onLanguage:wavefront-obj",
"onLanguage:stlascii",
"onLanguage:ply",
"onLanguage:plaintext"
],
"contributes": {
"commands": [
{
"command": "x_ite-vscode.preview-model",
"title": "X3D: Preview 3D Model",
"icon": {
"dark": "./images/icon.png",
"light": "./images/icon.png"
}
}
],
"keybindings": [
{
"command": "x_ite-vscode.preview-model",
"key": "ctrl+alt+x",
"mac": "cmd+alt+x",
"when": "editorTextFocus && x_iteFileActive"
}
],
"menus": {
"editor/context": [
{
"command": "x_ite-vscode.preview-model",
"when": "x_iteFileActive",
"group": "X3D"
}
],
"editor/title": [
{
"command": "x_ite-vscode.preview-model",
"when": "x_iteFileActive",
"group": "navigation"
}
],
"editor/title/context": [
{
"command": "x_ite-vscode.preview-model",
"when": "x_iteFileActive",
"group": "X3D"
}
]
}
}
}