-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.64 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
101
102
103
104
105
106
{
"name": "go-to-folder-search",
"displayName": "Go to Folder - VsCode",
"description": "Quickly navigate to any folder in your workspace using fuzzy search",
"version": "0.0.1",
"publisher": "piecebyte",
"author": {
"name": "PieceByte",
"url": "https://piecebyte.com"
},
"license": "MIT",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"folder",
"navigation",
"quick open",
"monorepo",
"explorer"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "goToFolder.open",
"title": "Go to Folder: Open"
},
{
"command": "goToFolder.refresh",
"title": "Go to Folder: Refresh Index"
},
{
"command": "goToFolder.clearRecents",
"title": "Go to Folder: Clear Recent Folders"
},
{
"command": "goToFolder.clearFavorites",
"title": "Go to Folder: Clear Favorites"
}
],
"keybindings": [
{
"command": "goToFolder.open",
"key": "ctrl+shift+o",
"mac": "cmd+shift+o"
}
],
"configuration": {
"title": "Go to Folder",
"properties": {
"goToFolder.excludePatterns": {
"type": "array",
"default": [
"**/node_modules/**",
"**/.git/**",
"**/dist/**",
"**/build/**",
"**/.next/**",
"**/coverage/**",
"**/__pycache__/**",
"**/venv/**",
"**/.venv/**"
],
"description": "Glob patterns for folders to exclude from indexing"
},
"goToFolder.maxResults": {
"type": "number",
"default": 50,
"description": "Maximum number of results to show in Quick Pick"
},
"goToFolder.respectGitignore": {
"type": "boolean",
"default": true,
"description": "Exclude folders that match .gitignore patterns"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/piecebyte/go-to-folder"
},
"homepage": "https://github.com/piecebyte/go-to-folder#readme",
"bugs": {
"url": "https://github.com/piecebyte/go-to-folder/issues"
}
}