forked from Tyriar/vscode-terminal-here
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "vscode-terminal-here",
"displayName": "Terminal Here",
"description": "Creates an intergrated terminal session at the current file's directory",
"version": "0.1.0",
"publisher": "Tyriar",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:terminalHere.create"
],
"bugs": {
"url": "https://github.com/Tyriar/vscode-terminal-here/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Tyriar/vscode-terminal-here"
},
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "terminalHere.create",
"title": "Terminal Here: Create Terminal"
}]
},
"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": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
}
}