forked from pavver/gcode-genius
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2 KB
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
{
"name": "gcode-genius",
"displayName": "G-code Genius",
"description": "Visualize, format, and edit G-code (CNC, 3D printing) with syntax highlighting, transformations, and an interactive 3D viewer.",
"icon": "media/icon.png",
"version": "0.1.3",
"engines": {
"vscode": "^1.104.2"
},
"categories": [
"Programming Languages",
"Visualization",
"Other"
],
"keywords": [
"g-code",
"gcode",
"cnc",
"3d printing",
"gcode viewer",
"gcode visualizer",
"gcode formatter",
"syntax highlighting",
"milling",
"lathe",
"grbl",
"marlin",
"nc file"
],
"publisher": "pavver",
"repository": {
"type": "git",
"url": "https://github.com/pavver/gcode-genius.git"
},
"homepage": "https://github.com/pavver/gcode-genius",
"bugs": {
"url": "https://github.com/pavver/gcode-genius/issues"
},
"activationEvents": [
"onLanguage:gcode",
"onWebviewPanel:gcodeVisualization"
],
"main": "./dist/extension.js",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --mode development --watch"
},
"contributes": {
"commands": [
{
"command": "gcode-genius.showVisualization",
"title": "Show G-code Visualization",
"icon": "$(open-preview)"
},
{
"command": "gcode-genius.formatGcode",
"title": "Format G-code"
}
],
"languages": [
{
"id": "gcode",
"aliases": [
"G-code",
"gcode"
],
"extensions": [
".gcode",
".nc",
".ngc",
".cnc",
".g",
".gc",
".tap"
]
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == gcode",
"command": "gcode-genius.showVisualization",
"group": "navigation@1"
}
]
}
},
"dependencies": {
"three": "^0.158.0"
},
"devDependencies": {
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
}
}