-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "vscode-rust-syntax",
"displayName": "vscode-rust-syntax",
"description": "Syntax highlighting for Rust.",
"version": "0.0.32",
"publisher": "dunstontc",
"repository": {
"type": "git",
"url": "https://github.com/dunstontc/vscode-rust-syntax.git"
},
"bugs": {"url": "https://github.com/dunstontc/vscode-rust-syntax/issues"},
"scripts": {"start": "gulp watch"},
"engines": {"vscode": "^1.20.0"},
"categories": ["Programming Languages"],
"contributes": {
"languages": [
{
"id": "rust",
"aliases": ["rust"],
"extensions": [".rs"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "rust",
"scopeName": "source.rust",
"path": "./syntaxes/rust.tmLanguage.json"
}
]
},
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"icon": "assets/rust.png",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-json5-to-json": "^0.2.1",
"gulp-merge-json": "^1.3.0"
}
}