-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 KB
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
{
"name": "scriptcsRunner",
"description": "Runner for scriptcs (C# scripts). Allows for execution of entire CSX scripts or snippets of C# code.",
"version": "0.1.0",
"publisher": "filipw",
"repository": {
"type": "git",
"url": "https://github.com/filipw/vscode-scriptcs-runner.git"
},
"icon": "images/scriptcs.png",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.scriptcsRunner"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.scriptcsRunner",
"title": "Execute with scriptcs"
}
],
"configuration": {
"type": "object",
"title": "ScriptCsRunner configuration",
"properties": {
"scriptcsRunner.scriptcsPath": {
"type": "string",
"default": "scriptcs",
"description": "Location of scriptcs executable. Defaults to 'scriptcs', meaning it just tries to use your PATH environment variable."
},
"scriptcsRunner.debug": {
"type": "boolean",
"default": false,
"description": "Specifies whether C# scripts/snippets should be executed in debug mode."
}
}
},
"keybindings": [
{
"command": "extension.scriptcsRunner",
"key": "ctrl+shift+r",
"mac": "cmd+shift+r",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "1.0.0",
"@types/node": "^6.0.40"
}
}