-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
75 lines (75 loc) · 1.8 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
{
"name": "RustyCode",
"displayName": "Rusty Code",
"description": "Rust language integration for VSCode",
"version": "0.3.5",
"publisher": "saviorisdead",
"license": "MIT",
"icon": "icon.png",
"homepage": "https://github.com/saviorisdead/RustyCode",
"repository": {
"type": "git",
"url": "https://github.com/saviorisdead/RustyCode"
},
"bugs": {
"url": "https://github.com/saviorisdead/RustyCode/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages",
"Linters"
],
"activationEvents": [
"onLanguage:rust"
],
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "rust",
"aliases": ["Rust"],
"extensions": [".rs"]
}
],
"configuration": {
"title": "Rusty Code configuration",
"type": "object",
"properties": {
"rust.racerPath": {
"type": "string",
"default": null,
"description": "Specifies path to Racer binary if it's not in PATH"
},
"rust.rustfmtPath": {
"type": "string",
"default": null,
"description": "Specifies path to Rustfmt binary if it's not in PATH"
},
"rust.formatOnSave": {
"type": "boolean",
"default": false,
"description": "Turn on/off autoformatting file on save"
},
"rust.rustLangSrcPath": {
"type": "string",
"default": null,
"description": "Specifies path to /src directory of local copy of Rust sources"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"dependencies": {
"tmp": "*"
}
}