-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.31 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
{
"name": "codeshell",
"displayName": "CodeShell",
"description": "Start a new PowerShell window for the project folder",
"version": "0.3.0",
"publisher": "Kipters",
"repository": {
"type": "git",
"url": "https://github.com/kipters/codeshell"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:codeshell.startShell",
"onCommand:codeshell.startUnrestrictedShell"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "codeshell.startUnrestrictedShell",
"title": "Start PowerShell (Unrestricted)",
"description": "Starts a PowerShell instance with its ExecutionPolicy set to Unrestricted"
},
{
"command": "codeshell.startShell",
"title": "Start PowerShell",
"description": "Starts a PowerShell instance with the system default ExecutionPolicy"
}
],
"keybindings": [
{
"command": "codeshell.startShell",
"key": "ctrl+alt+p",
"mac": "cmd+alt+p"
},
{
"command": "codeshell.startUnrestrictedShell",
"key": "ctrl+alt+u",
"mac": "cmd+alt+u"
}
]
},
"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"
}
}