forked from filipw/vscode-scriptcs-executor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"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": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.scriptcsRunner"
],
"main": "./out/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": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}