generated from antfu/starter-vscode
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.04 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.04 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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"publisher": "skyfeiz",
"name": "folder-search",
"displayName": "folder-search",
"version": "0.1.1",
"packageManager": "pnpm@10.4.1",
"description": "Configure search path, search and open project folder.",
"author": "skyfeiz <webyicunhui@outlook.com>",
"license": "MIT",
"homepage": "https://github.com/skyfeiz/folder-search-vscode",
"repository": {
"type": "git",
"url": "https://github.com/skyfeiz/folder-search-vscode"
},
"bugs": {
"url": "https://github.com/skyfeiz/folder-search-vscode/issues"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "res/icon.png",
"files": [
"LICENSE.md",
"dist/*",
"res/*"
],
"engines": {
"vscode": "^1.97.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": [
{
"type": "object",
"title": "folder-search",
"properties": {
"folder-search.alias": {
"type": "object",
"default": {},
"description": "The alias of the path",
"additionalProperties": {
"type": "string",
"default": "",
"description": "The alias of the path"
}
},
"folder-search.searchPaths": {
"type": "array",
"items": {
"type": "string",
"description": "The path to search for folders"
},
"default": [],
"description": "The paths to search for folders"
},
"folder-search.openMode": {
"type": "string",
"default": "new",
"description": "The mode to open the folder",
"enum": [
"new",
"add"
]
}
}
}
],
"commands": [
{
"command": "search-folder.openSearchPanel",
"title": "Open folder Search Panel"
}
],
"keybindings": [
{
"command": "search-folder.openSearchPanel",
"key": "ctrl+alt+p",
"mac": "cmd+alt+p"
}
]
},
"scripts": {
"build": "tsdown src/index.ts --external vscode",
"dev": "nr build --watch --sourcemap",
"prepare": "nr update",
"update": "vscode-ext-gen --output src/generated/meta.ts",
"lint": "eslint .",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"vscode:prepublish": "nr build",
"release": "bumpp",
"ext:package": "vsce package --no-dependencies",
"ext:publish": "vsxpub --no-dependencies"
},
"devDependencies": {
"@antfu/eslint-config": "^4.2.1",
"@antfu/ni": "^23.3.1",
"@types/node": "^22.13.4",
"@types/vscode": "^1.97.0",
"@vscode/vsce": "^3.2.2",
"bumpp": "^10.0.3",
"eslint": "^9.20.1",
"fast-glob": "^3.3.3",
"ovsx": "^0.10.5",
"pathe": "^2.0.3",
"pnpm": "^10.4.1",
"reactive-vscode": "^0.2.10",
"taze": "^19.8.1",
"tsdown": "^0.9.6",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5",
"vscode-ext-gen": "^1.0.0",
"vsxpub": "^0.1.2"
}
}