-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.69 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.69 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "find-then-jump",
"displayName": "Find Then Jump",
"description": "Vim Easymotion inspired code navigation.",
"version": "2.0.5",
"publisher": "tranhl",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"icon": "demo/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/tranhl/find-then-jump.git"
},
"activationEvents": [
"onCommand:findThenJump.initiate",
"onCommand:findThenJump.initiateWithSelection"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "findThenJump.initiate",
"title": "Find Then Jump"
},
{
"command": "findThenJump.initiateWithSelection",
"title": "Find Then Jump With Selection"
}
],
"colors": [
{
"id": "findThenJump.textDecorationForeground",
"description": "Foreground color of decorations that appear to the left of search term matches.",
"defaults": {
"dark": "#FFF",
"light": "#FFF",
"highContrast": "#FFF"
}
},
{
"id": "findThenJump.textDecorationBackground",
"description": "Background color of decorations that appear to the left of search term matches.",
"defaults": {
"dark": "#4169E1",
"light": "#4169E1",
"highContrast": "#4169E1"
}
}
],
"configuration": [
{
"title": "Find Then Jump",
"properties": {
"findThenJump.matchBehavior": {
"type": "string",
"description": "Restrict the location of matches.",
"default": "default",
"enum": [
"default",
"word-start"
],
"enumDescriptions": [
"No restrictions on the location of matches within the document.",
"Restrict matches for alpha-numerical search terms to the start of words.."
],
"enumItemLabels": [
"Default",
"Word Start"
]
}
}
}
],
"untrustedWorkspaces": {
"supported": true
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.15",
"@types/vscode": "^1.99.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}