-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.19 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.19 KB
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
{
"name": "go-to-relative",
"displayName": "Relative \"Go to Line\"",
"publisher": "DanielBreiner",
"description": "Command for jump/go to a line by relative row count (similar to vim)",
"version": "0.1.0",
"engines": {
"vscode": "^1.85.0"
},
"packageManager": "pnpm@10.12.4",
"author": {
"name": "Daniel Breiner",
"email": "contact@danielbreiner.eu"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DanielBreiner/vscode-go-to-relative.git"
},
"homepage": "https://github.com/DanielBreiner/vscode-go-to-relative",
"bugs": {
"url": "https://github.com/DanielBreiner/vscode-go-to-relative/issues"
},
"keywords": [
"shortcut",
"relative",
"goto",
"line",
"jump"
],
"icon": "images/icon.png",
"categories": [
"Keymaps",
"Other"
],
"activationEvents": [],
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "go-to-relative.goToLine",
"title": "Go to Line/Column (Relative)..."
},
{
"command": "go-to-relative.goToLineNegative",
"title": "Go to Line/Column (Relative, Negative)..."
},
{
"command": "go-to-relative.selectToLine",
"title": "Select to Line/Column (Relative)..."
},
{
"command": "go-to-relative.selectToLineNegative",
"title": "Select to Line/Column (Relative, Negative)..."
}
],
"keybindings": [
{
"command": "go-to-relative.goToLine",
"key": "ctrl+g",
"mac": "cmd+g"
},
{
"command": "go-to-relative.goToLineNegative",
"key": "ctrl+shift+g",
"mac": "cmd+shift+g"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build -- --minify",
"build": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"compile": "npm run build -- --sourcemap",
"watch": "npm run build -- --sourcemap --watch",
"lint": "eslint src --ext ts",
"package": "pnpm vsce package --no-dependencies",
"publish": "pnpm vsce publish --no-dependencies"
},
"devDependencies": {
"@types/node": "18.19.8",
"@types/vscode": "1.85.0",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"esbuild": "0.19.11",
"eslint": "8.56.0",
"typescript": "5.3.3"
}
}