forked from Septh/vscode-wow-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 2.12 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "wow-bundle",
"displayName": "WoW Bundle",
"description": "World of Warcraft addon developer toolset for VS Code",
"version": "1.1.11",
"icon": "images/wow-icon.png",
"publisher": "Septh",
"license": "MIT",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"engines": {
"vscode": "^1.9.0"
},
"categories": [
"Languages",
"Snippets",
"Themes"
],
"keywords": [
"WoW",
"World of Warcraft",
"Blizzard",
"FrameXML",
"Lua"
],
"contributes": {
"languages": [
{
"id": "lua",
"extensions": [
".lua"
],
"aliases": [
"Lua"
],
"configuration": "./languages/lua-language-configuration.json"
},
{
"id": "toc",
"extensions": [
".toc"
],
"aliases": [
"Toc",
"TOC"
],
"configuration": "./languages/toc-language.configuration.json"
}
],
"grammars": [
{
"language": "lua",
"scopeName": "source.lua",
"path": "./languages/grammars/wow-lua.tmLanguage"
},
{
"language": "toc",
"scopeName": "source.toc",
"path": "./languages/grammars/wow-toc.tmLanguage"
}
],
"snippets": [
{
"language": "lua",
"path": "./languages/snippets/lua.json"
},
{
"language": "toc",
"path": "./languages/snippets/toc.json"
}
],
"themes": [
{
"label": "Dark+ (WoW)",
"uiTheme": "vs-dark",
"path": "./themes/dark_plus_wow.json"
},
{
"label": "Light+ (WoW)",
"uiTheme": "vs",
"path": "./themes/light_plus_wow.json"
},
{
"label": "Monokai (WoW)",
"uiTheme": "vs-dark",
"path": "./themes/monokai_wow.json"
},
{
"label": "Monokai Dimmed (WoW)",
"uiTheme": "vs-dark",
"path": "./themes/monokai_dimmed_wow.json"
}
]
},
"bugs": {
"url": "https://github.com/Septh/vscode-wow-bundle/issues"
},
"homepage": "https://marketplace.visualstudio.com/items?itemName=Septh.wow-bundle",
"repository": {
"type": "git",
"url": "https://github.com/Septh/vscode-wow-bundle"
},
"__metadata": {
"id": "191fe3c2-f05c-45f3-baa8-a046773863c9",
"publisherId": "887d8eeb-f941-478d-a425-6fc5a1ec5c4b",
"publisherDisplayName": "Septh"
}
}