-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 919 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
{
"name": "Doxygen",
"description": "Doxygen language support for Visual Studio Code",
"version": "1.0.0",
"publisher": "bbenoist",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#244FA7",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": { "url": "https://github.com/bbenoist/vscode-doxygen/issues" },
"homepage": "https://github.com/bbenoist/vscode-doxygen/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/bbenoist/vscode-doxygen.git"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "doxygen",
"extensions": [".dox"],
"configuration": "./doxygen.configuration.json"
}],
"grammars": [{
"language": "doxygen",
"scopeName": "source.doxygen",
"path": "./syntaxes/doxygen.tmLanguage"
}]
}
}