-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.04 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"version": "0.0.24",
"name": "bookmarksng",
"displayName": "BookmarksNG",
"publisher": "RK",
"repository": "https://github.com/chestozo/vscode-bookmarksng",
"description": "Bookmark lines of code to quickly jump to later (multi-cursor supported)",
"keywords": [
"bookmark",
"bookmarks",
"mark",
"jump",
"navigation",
"multi-cursor",
"multi-cursor support"
],
"categories": [
"Other"
],
"galleryBanner": {
"color": "#111",
"theme": "dark"
},
"icon": "images/logo.png",
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [{
"command": "bookmarksNG.toogleBookmarks",
"title": "Bookmarks NG: Toogle Bookmarks"
},
{
"command": "bookmarksNG.clearAllBookmarks",
"title": "Bookmarks NG: Clear All Bookmarks"
},
{
"command": "bookmarksNG.navigateToNextBookmark",
"title": "Bookmarks NG: Move cursor to the next bookmark"
},
{
"command": "bookmarksNG.navigateToPrevBookmark",
"title": "Bookmarks NG: Move cursor to the previous bookmark"
}
],
"keybindings": [{
"command": "bookmarksNG.toogleBookmarks",
"key": "ctrl+b",
"mac": "cmd+b",
"when": "editorTextFocus"
},
{
"command": "bookmarksNG.clearAllBookmarks",
"key": "ctrl+shift+b",
"mac": "cmd+shift+b",
"when": "editorTextFocus"
},
{
"command": "bookmarksNG.navigateToNextBookmark",
"key": "f2",
"mac": "f2",
"when": "editorTextFocus"
},
{
"command": "bookmarksNG.navigateToPrevBookmark",
"key": "shift+f2",
"mac": "shift+f2",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "BookmarksNG configuration",
"properties": {
"bookmarksNG.alignTopOnNavigation": {
"type": "boolean",
"default": false,
"description": "If set bookmarked line will become the topmost when using next / previous navigation commands"
},
"bookmarksNG.iconColor": {
"type": "string",
"default": "#333",
"description": "Change bookmark icon color"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/vscode": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.0.1",
"mocha-each": "^2.0.1",
"prettier": "^2.0.2",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0"
},
"dependencies": {
"@types/mocha-each": "^2.0.0"
}
}