-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·127 lines (127 loc) · 3.82 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
{
"name": "vscode-vox",
"displayName": "VOX Viewer for VSCode",
"description": "Preview VOX models in VSCode",
"version": "0.0.2",
"publisher": "tovi",
"license": "LICENSE.md",
"icon": "icon.png",
"bugs": {
"url": "https://github.com/tovi-cn/vscode-vox/issues"
},
"homepage": "https://github.com/tovi-cn/vscode-vox",
"repository": {
"type": "git",
"url": "https://github.com/tovi-cn/vscode-vox.git"
},
"galleryBanner": {
"color": "#0075c3",
"theme": "dark"
},
"engines": {
"vscode": "^1.49.0"
},
"keywords": [
"vscode",
"3d",
"mesh",
"viewer",
"vox",
"webgl"
],
"categories": [
"Other"
],
"activationEvents": [
"onCustomEditor:vox.viewer"
],
"main": "./out/extension",
"contributes": {
"customEditors": [
{
"viewType": "vox.viewer",
"displayName": "VOX Viewer",
"selector": [
{
"filenamePattern": "*.vox"
}
]
}
],
"configuration": {
"title": "vox",
"properties": {
"vox.wireframe": {
"type": "boolean",
"description": "Display mesh in wireframe mode",
"default": false
},
"vox.background": {
"type": "string",
"description": "Default color for the background",
"default": "#8f8f8f"
},
"vox.boundingBox": {
"type": "boolean",
"description": "Display a bounding box around the model",
"default": false
},
"vox.grid": {
"type": "boolean",
"description": "Display a grid at the origin",
"default": true
},
"vox.gridSize": {
"type": "number",
"description": "Size of the grid",
"default": 32
},
"vox.near": {
"type": "number",
"description": "Distance for the near plane",
"default": 0.01
},
"vox.far": {
"type": "number",
"description": "Distance for the far plane",
"default": 1000000
},
"vox.limitFps": {
"type": "number",
"description": "Max fps (use 0 for no limit)",
"default": 0
},
"vox.frame": {
"type": "number",
"description": "frame rate",
"default": 12
},
"vox.hotReload": {
"type": "boolean",
"description": "Enable hot reload mode for viewer",
"default": true
},
"vox.hotReloadAutomatically": {
"type": "boolean",
"description": "Enable this to reload models without the question popup",
"default": false
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/dat-gui": "^0.6.3",
"@types/mocha": "^2.2.42",
"@types/node": "^12.12.0",
"@types/three": "^0.84.30",
"@types/vscode": "^1.45.1",
"@types/webgl-ext": "0.0.31",
"typescript": "^3.8.3"
}
}