-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "vscode-rust",
"displayName": "Rust For Visual Studio Code",
"description": "Rust support for Visual Studio Code",
"version": "0.0.1",
"publisher": "henriiik",
"engines": {
"vscode": "^1.3.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:rust",
"onCommand:rust.tasks.create"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "Rust Configuration",
"type": "object",
"properties": {
"rust.path.racer": {
"type": "string",
"default": "racer",
"description": "path to the racer executable"
},
"rust.path.rust-src": {
"type": "string",
"default": "",
"description": "path to the src dir of the rustlang repo"
}
}
},
"commands": [
{
"command": "rust.tasks.create",
"title": "Rust: Create Tasks Configuration"
}
],
"snippets": [
{
"language": "rust",
"path": "src/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"tslint": "^3.14.0",
"typescript": "^1.8.10",
"vscode": "^0.11.14"
}
}