forked from kaiwood/vscode-center-editor-window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cursor-view-focus",
"displayName": "Cursor View Focus",
"description": "Focus the active cursor view at the bottom, center or top",
"version": "1.1.1",
"publisher": "pit00",
"icon": "images/cursor-view-focus-icon.png",
"bugs": "https://github.com/pit00/vscode-multiple-cursor-follow/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pit00/vscode-multiple-cursor-follow"
},
"activationEvents": [
"onStartupFinished"
],
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "cursor-view-focus.mainBottom",
"title": "Bottom view of main (primary) cursor"
},
{
"command": "cursor-view-focus.mainCenter",
"title": "Center view of main (primary) cursor"
},
{
"command": "cursor-view-focus.mainTop",
"title": "Top view of main (primary) cursor"
},
{
"command": "cursor-view-focus.recentBottom",
"title": "Bottom view of last created cursor"
},
{
"command": "cursor-view-focus.recentCenter",
"title": "Center view of last created cursor"
},
{
"command": "cursor-view-focus.recentTop",
"title": "Top view of last created cursor"
},
{
"command": "cursor-view-focus.firstBottom",
"title": "Bottom view of first positioned cursor"
},
{
"command": "cursor-view-focus.firstCenter",
"title": "Center view of first positioned cursor"
},
{
"command": "cursor-view-focus.firstTop",
"title": "Top view of first positioned cursor"
},
{
"command": "cursor-view-focus.finalBottom",
"title": "Bottom view of last positioned cursor"
},
{
"command": "cursor-view-focus.finalCenter",
"title": "Center view of last positioned cursor"
},
{
"command": "cursor-view-focus.finalTop",
"title": "Top view of last positioned cursor"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^12.7.8",
"typescript": "^3.6.3",
"vscode": "^1.1.34"
}
}