forked from VoidForge/seria-syntax-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 960 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
36
37
{
"name": "seria-syntax-support",
"displayName": "HGE SDK Seria Syntax Support",
"description": "A simple syntax highlighting plugin for .seria files of Haaf's Game Engine, most famously used by the video game HighFleet.",
"version": "1.1.2",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "seria",
"aliases": ["HGE Seria", "seria"],
"firstLine": "^{{1}$",
"extensions": [".seria"],
"filenames": [],
"configuration": "./syntaxes/language-configuration.json",
"icon": {
"light": "./src/logo.png",
"dark": "./src/logo.png"
}
}],
"grammars": [{
"language": "seria",
"scopeName": "source.seria",
"path": "./syntaxes/seria.tmLanguage.json"
}],
"themes": [{
"label": "foo",
"id": "foo",
"uiTheme": "vs-dark",
"path": "theme.json"
}]
}
}