-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
132 lines (132 loc) · 3.42 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
{
"name": "jumpt",
"version": "1.3.0",
"author": "mbnuqw",
"publisher": "mbnuqw",
"engines": {
"vscode": "^1.38.0"
},
"license": "MIT",
"displayName": "JumpᏆ",
"description": "Fast navigation in visible area.",
"categories": [
"Other"
],
"keywords": [
"jump",
"navigation",
"find",
"AceJump",
"EasyMotion"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.jumpt",
"title": "JumpᏆ"
},
{
"command": "extension.jumptback",
"title": "JumpᏆ back"
}
],
"configuration": {
"title": "JumpᏆ",
"properties": {
"jumpt.anchors": {
"type": "string",
"default": "fjdksla;vmbcghieorwnp/FJALKMVCER",
"description": "Available anchor signs."
},
"jumpt.trigger": {
"type": [
"string",
"number"
],
"default": " ",
"description": "Separator char between a search query and target anchor or static length of the search query followed by target anchor."
},
"jumpt.scroll": {
"type": "boolean",
"default": false,
"description": "Auto-scroll to new position."
},
"jumpt.anchorBg": {
"type": "string",
"default": "#0C82F7",
"description": "Anchor background color."
},
"jumpt.anchorFg": {
"type": "string",
"default": "#ffffff",
"description": "Anchor foreground color."
},
"jumpt.queryBg": {
"type": "string",
"default": "#555555ff",
"description": "Query background color."
},
"jumpt.queryFg": {
"type": "string",
"default": "",
"description": "Query foreground color."
},
"jumpt.anchorMode": {
"type": "string",
"default": "default",
"description": "Anchors mode",
"enum": ["default", "fullWidth"],
"enumDescriptions": [
"Replaces the first char with anchor and highlights matched text",
"Replaces the matched text with an anchor surrounded by placeholder chars"
]
},
"jumpt.anchorPlaceholderChar": {
"type": "string",
"default": "_",
"description": "Placeholder char for 'fullWidth' anchor mode"
}
}
}
},
"activationEvents": [
"onCommand:extension.jumpt"
],
"devDependencies": {
"@types/node": "12.12.14",
"@types/vscode": "1.38.0",
"@typescript-eslint/eslint-plugin": "2.9.0",
"@typescript-eslint/parser": "2.9.0",
"eslint": "6.7.1",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"prettier": "1.19.1",
"typescript": "3.7.2",
"vscode": "1.1.36"
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"lint": "eslint --ext .ts ./src",
"watch": "tsc -watch -p ./",
"test": "echo \"test\""
},
"icon": "assets/icon.png",
"bugs": {
"url": "https://github.com/mbnuqw/jumpt/issues"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 100,
"useTabs": false
},
"repository": {
"type": "git",
"url": "https://github.com/mbnuqw/jumpt.git"
},
"homepage": "https://github.com/mbnuqw/jumpt/blob/master/README.md"
}