-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
95 lines (95 loc) · 2.1 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
{
"name": "wow-bundle",
"displayName": "WoW Bundle",
"description": "World of Warcraft addon developer toolset for VS Code",
"version": "1.3.0",
"icon": "images/wow-icon.png",
"publisher": "Septh",
"license": "MIT",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Programming Languages", "Snippets", "Themes"
],
"keywords": [
"Lua", "WoW", "World of Warcraft", "Blizzard", "FrameXML", "TOC", "addon"
],
"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/lua.tmLanguage.json"
},
{
"language": "toc",
"scopeName": "source.toc",
"path": "./languages/grammars/toc.tmLanguage.json"
}
],
"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"
}
}