-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
148 lines (148 loc) · 3.95 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"version": "1.0.2",
"name": "linehighlightbookmarkvscode",
"displayName": "Line Highlight Bookmark",
"publisher": "balmacefa",
"repository": "https://github.com/balmacefa/line_highlight_bookmark_vscode",
"description": "vscode extension | Bookmark with highlight lines, 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": "lineHighlightBookmark.toogleBookmarks",
"title": "Bookmarks NG: Toogle Bookmarks"
},
{
"command": "lineHighlightBookmark.clearAllBookmarks",
"title": "Bookmarks NG: Clear All Bookmarks"
},
{
"command": "lineHighlightBookmark.navigateToNextBookmark",
"title": "Bookmarks NG: Move cursor to the next bookmark"
},
{
"command": "lineHighlightBookmark.navigateToPrevBookmark",
"title": "Bookmarks NG: Move cursor to the previous bookmark"
}
],
"keybindings": [
{
"command": "lineHighlightBookmark.toogleBookmarks",
"key": "ctrl+b",
"mac": "cmd+b",
"when": "editorTextFocus"
},
{
"command": "lineHighlightBookmark.clearAllBookmarks",
"key": "ctrl+shift+b",
"mac": "cmd+shift+b",
"when": "editorTextFocus"
},
{
"command": "lineHighlightBookmark.navigateToNextBookmark",
"key": "f2",
"mac": "f2",
"when": "editorTextFocus"
},
{
"command": "lineHighlightBookmark.navigateToPrevBookmark",
"key": "shift+f2",
"mac": "shift+f2",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "lineHighlightBookmark configuration",
"properties": {
"lineHighlightBookmark.alignTopOnNavigation": {
"type": "boolean",
"default": false,
"description": "If set bookmarked line will become the topmost when using next / previous navigation commands"
},
"lineHighlightBookmark.renderLine": {
"type": "boolean",
"default": true,
"description": "If set render a line on the bookmark"
},
"lineHighlightBookmark.lineColor": {
"type": [
"string"
],
"default": "#65EAB9",
"description": "Change the line color. (Ex: 'red', '#FFF' #FFFFFFF, 'RGB(255,255,255)','RGB(255, 255, 255. 0.5) )"
},
"lineHighlightBookmark.lineWidth": {
"type": [
"string"
],
"default": "1px"
},
"lineHighlightBookmark.lineStyle": {
"type": [
"string"
],
"enum": [
"solid",
"dashed",
"inset",
"double",
"groove",
"outset",
"ridge"
],
"default": "solid"
}
}
}
},
"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"
}
}