-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.83 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
{
"name": "hop-brackets",
"displayName": "Hop to Bracket",
"description": "Navigate between nearest brackets and quotes",
"version": "0.1.2",
"publisher": "serg3295",
"author": {
"name": "serg3295"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/serg3295/hop-brackets"
},
"bugs": "https://github.com/serg3295/hop-brackets/issues",
"homepage": "https://github.com/serg3295/hop-brackets#readme",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"keywords": [
"navigate",
"jump",
"bracket",
"parentheses",
"vscode"
],
"icon": "images/icon.png",
"main": "./out/extension.js",
"bin": {
"extension": "./out/extension.js"
},
"contributes": {
"configuration": [
{
"title": "HoptoBrackets",
"properties": {
"hop-brackets.charsUsed": {
"type": "string",
"default": "(){}[]'\"",
"description": "Specifies the characters to jump to."
}
}
}
],
"commands": [
{
"command": "hop-brackets.forward",
"title": "Hop to Next Bracket",
"category": "Hop-brackets"
},
{
"command": "hop-brackets.backwards",
"title": "Hop to Previous Bracket",
"category": "Hop-brackets"
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.js --outfile=out/extension.js --bundle --external:vscode --platform=node",
"build": "npm run esbuild-base -- --sourcemap",
"watch": "npm run esbuild-base -- --sourcemap --watch",
"lint": "eslint ./src && tsc --noEmit"
},
"devDependencies": {
"@types/node": "^18.18.2",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"eslint-plugin-sonarjs": "^1.0.3",
"typescript": "^5.3.3"
}
}