-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.48 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
{
"name": "teleporter",
"displayName": "Teleporter",
"description": "Teleport the mouse cursor anywhere you want",
"version": "1.1.3",
"publisher": "maltarouti",
"icon":"images/icon.png",
"engines": {
"vscode": "^1.86.0"
},
"sponsor": {
"url": "https://github.com/sponsors/maltarouti"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "teleporter",
"properties": {
"teleporter.wordMatchRegex": {
"type": "string",
"default": "[a-zA-Z0-9]{2,}",
"description": "Regex of word match"
},
"teleporter.hintColor": {
"type": "string",
"default": "#000000",
"description": "Color of text hint"
},
"teleporter.hintBackgroundColor": {
"type": "string",
"default": "#FFFFFF",
"description": "Background color of text hint"
},
"teleporter.hintFontweight": {
"type": "string",
"enum": [
"normal",
"bold"
],
"default": "bold",
"description": "Font weight of text hint"
},
"teleporter.hintBorderStyle": {
"type": "string",
"enum": [
"none",
"dotted",
"dashed",
"solid",
"double",
"groove",
"ridge",
"inset",
"outset"
],
"default": "none",
"description": "Border style of text hint"
},
"teleporter.hintBorderColor": {
"type": "string",
"default": "#FFFFFF",
"description": "Border color of text hint"
},
"teleporter.hintBorderRadius": {
"type": "string",
"default": "1px",
"description": "Border radius of text hint in pixels"
},
"teleporter.hintFontStyle": {
"type": "string",
"default": "",
"description": "Font style of text hint"
},
"teleporter.hintOpacity": {
"type": "string",
"default": "1",
"description": "Opacity of text hint from 0 to 1"
}
}
},
"commands": [
{
"command": "teleporter.wordTeleporter",
"title": "Word Teleporter"
},
{
"command": "teleporter.lineTeleporter",
"title": "Line Teleporter"
},
{
"command": "teleporter.cancelTeleporting",
"title": "Cancel Teleporting"
}
],
"keybindings": [
{
"command": "teleporter.wordTeleporter",
"key": "Ctrl+T Ctrl+J",
"when": "editorTextFocus"
},
{
"command": "teleporter.lineTeleporter",
"key": "Ctrl+T Ctrl+L",
"when": "editorTextFocus"
},
{
"command": "teleporter.cancelTeleporting",
"key": "escape"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.86.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9"
}
}