-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4.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
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
{
"name": "hopper",
"displayName": "Hopper",
"description": "Hopper provides fast cursor movement using only your keyboard! It's like Vim's easymotion, or NeoVim's Leap - but for VSCode.",
"icon": "images/hopper-icon.png",
"license": "MIT",
"version": "0.4.1",
"publisher": "bjorn-eric-abr",
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"keywords": [
"hopper",
"jump",
"hopper",
"leap",
"AceJump",
"EasyMotion"
],
"repository": {
"type": "git",
"url": "https://github.com/Bjorn-Eric-Abr/Hopper.git"
},
"bugs": {
"url": "https://github.com/Bjorn-Eric-Abr/Hopper/issues"
},
"homepage": "https://github.com/Bjorn-Eric-Abr/Hopper/blob/master/README.md",
"activationEvents": [
"onCommand:extension.hopper-word",
"onCommand:extension.hopper-line",
"onCommand:extension.hopper-exit"
],
"main": "./out/extension.js",
"contributes": {
"keybindings": [
{
"command": "extension.hopper-exit",
"key": "escape",
"when": "editorTextFocus && hopper.isHopperMode"
}
],
"commands": [
{
"command": "extension.hopper-word",
"title": "Hopper Word Mode"
},
{
"command": "extension.hopper-line",
"title": "Hopper Line Mode"
},
{
"command": "extension.hopper-exit",
"title": "Exit Hopper Mode"
}
],
"configuration": {
"type": "object",
"title": "Hopper Configuration",
"properties": {
"hopper.selectWord": {
"type": "boolean",
"default": true,
"description": "Whether to select the word after jumping to it"
},
"hopper.wordRegexp": {
"type": "string",
"default": "\\w{2,}",
"description": "The Regexp to use to match words in Hopper Word Mode"
},
"hopper.lineRegexp": {
"type": "string",
"default": "^\\s*$",
"description": "The Regexp to use to match empty lines in Hopper Line Mode"
},
"hopper.fontFamily": {
"type": "string",
"default": "",
"description": "Font used in Hopper decorations, defaults to font from settings"
},
"hopper.fontSize": {
"type": "number",
"default": 0,
"description": "Font size used in Hopper decorations, defaults to font size from settings"
},
"hopper.foregroundColor": {
"type": "string",
"description": "Text color of Hopper decoration"
},
"hopper.backgroundColor": {
"type": "string",
"description": "Background color of Hopper decoration"
}
}
}
},
"scripts": {
"package": "vsce package",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"build": "npm run esbuild-base -- --sourcemap",
"watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"format": "prettier ./**/*.{ts,json} --write"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"@vscode/vsce": "^2.18.0",
"esbuild": "^0.17.15",
"mocha": "^5.2.0",
"prettier": "^1.13.5",
"tslint": "^3.15.1",
"typescript": "^2.9.2",
"vscode": "^1.1.37"
}
}