-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 966 Bytes
/
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
{
"name": "hpgl-syntax",
"version": "1.0.0",
"description": "HPGL Syntax Highlighter for VSCode",
"keywords": ["syntax", "hpgl", "HP-GL", "Hewlett-Packard"],
"license": "MIT",
"author": {
"name": "Brittany Harris",
"url": "https://brittany-harris.com"
},
"repository": {
"type": "git",
"url": "https://github.com/brittharr/hpgl-syntax"
},
"displayName": "HPGL Syntax Highlighter",
"publisher": "brittharr",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "hpgl",
"aliases": ["HPGL", "Hewlett-Packard Graphics Language", "HP-GL"],
"extensions": [".hgl",".hpgl"]
}],
"grammars": [{
"language": "hpgl",
"scopeName": "source.hpgl",
"path": "./syntaxes/hpgl.tmLanguage.json"
}]
}
}