-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "poweron",
"displayName": "PowerOn",
"description": "Syntax highlighting for Symitar's PowerOn Language",
"version": "1.0.10",
"publisher": "0sawaqed",
"icon": "poweron.ico",
"author": {
"name": "Oday Sawaqed",
"email": "[email protected]"
},
"licenses": [{
"type": "MIT",
"url": "https://github.com/0sawaqed/vscode-poweron/blob/master/LICENSE"
}],
"repository": {
"type": "git",
"url": "https://github.com/0sawaqed/vscode-poweron"
},
"bugs": {
"url": "https://github.com/0sawaqed/vscode-poweron/issues"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "poweron",
"aliases": ["PowerOn", "po", "poweron", "symitar", "repgen", "episys"],
"extensions": [".PO", ".DEF", ".SET", ".PRO", ".SUB", ".POWERON"],
"configuration": "./poweron.config.json"
}],
"grammars": [{
"language": "poweron",
"scopeName": "source.poweron",
"path": "./syntaxes/poweron.language.json"
}]
}
}