-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 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
40
41
42
43
44
45
46
47
48
{
"name": "goto-last-edit-location",
"description": "Visual Studio Code extension that provides the 'Goto last edit location' command",
"version": "0.2.0",
"publisher": "krizzdewizz",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/krizzdewizz/vscode-goto-last-edit-location/issues"
},
"homepage": "https://github.com/krizzdewizz/vscode-goto-last-edit-location",
"repository": {
"type": "git",
"url": "https://github.com/krizzdewizz/vscode-goto-last-edit-location.git"
},
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.gotoLastEditLocation",
"title": "Goto last edit location"
}
],
"keybindings": [
{
"command": "extension.gotoLastEditLocation",
"key": "ctrl+q",
"mac": "ctrl+q"
}
]
},
"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",
"tslint": "*"
}
}