-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "gcode",
"displayName": "GCODE language",
"description": "GCODE language support",
"version": "0.4.0",
"publisher": "ToniApps",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Languages",
"Snippets"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#3498db"
},
"repository": {
"type": "git",
"url": "https://github.com/ToniApps/GCODE-VSCODE.git"
},
"contributes": {
"languages": [
{
"id": "gcode",
"aliases": [
"GCODE",
"gcode"
],
"extensions": [
".gcode",
".g"
],
"configuration": "./languages/gcode.json"
}
],
"grammars": [
{
"language": "gcode",
"scopeName": "source.gcode",
"path": "./syntaxes/gcode.tmLanguage"
}
],
"snippets": [
{
"language": "gcode",
"path": "./snippets/gcode.json"
}
]
}
}