forked from The24thDS/stellaris-yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
{
"name": "stellaris-yaml-syntax",
"displayName": "24's Stellaris YAML Syntax",
"description": "Syntax highlighting and color themes for Stellaris localisation files.",
"icon": "images/extensionlogo.jpg",
"publisher": "The24thDS",
"version": "1.0.0",
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Programming Languages",
"Themes"
],
"keywords": [
"stellaris",
"yaml",
"yml",
"modding",
"paradox"
],
"contributes": {
"grammars": [
{
"path": "./syntaxes/stellaris_yaml_injection.json",
"scopeName": "stellaris.yaml.injection",
"injectTo": [
"source.yaml"
]
}
],
"themes": [
{
"id": "the24thds.stellaris_locs.dark",
"label": "Dark+ (Stellaris Locs)",
"path": "themes/dark.json",
"uiTheme": "vs-dark"
},
{
"id": "the24thds.stellaris_locs.stellaris_theme",
"label": "Stellaris Theme (Stellaris Locs)",
"path": "themes/stellaris_theme.json",
"uiTheme": "vs-dark"
},
{
"id": "the24thds.stellaris_locs.night_owl",
"label": "Night Owl (Stellaris Locs)",
"path": "themes/night_owl.json",
"uiTheme": "vs-dark"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/The24thDS/stellaris-yaml.git"
},
"bugs": {
"url": "https://github.com/The24thDS/stellaris-yaml/issues"
},
"homepage": "https://github.com/The24thDS/stellaris-yaml/blob/main/README.md"
}