forked from muzaisimao/vscode-disable-extensions
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.49 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.49 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
{
"name": "vscode-quick-extension-manager",
"displayName": "Quick Extension Manager",
"description": "Quickly enable/disable VS Code extensions per workspace for better performance and focus.",
"keywords": [
"disable",
"extension",
"disable extension",
"disable plugin"
],
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/ToolsHive/Quick-Extension-Manager.git"
},
"icon": "resources/logo.png",
"publisher": "ToolsHive",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:.vscode/ext.config.json"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "quickExtensionManager.enable",
"title": "Enable Quick Extension Manager"
},
{
"command": "quickExtensionManager.disable",
"title": "Disable Quick Extension Manager"
},
{
"command": "quickExtensionManager.update",
"title": "Quick Extension Manager: Update Extension"
},
{
"command": "quickExtensionManager.github",
"title": "Quick Extension Manager: Open GitHub Repository"
},
{
"command": "quickExtensionManager.settings",
"title": "Quick Extension Manager: Open Settings"
},
{
"command": "quickExtensionManager.report",
"title": "Quick Extension Manager: Report Issue"
},
{
"command": "quickExtensionManager.manage",
"title": "Quick Extension Manager: Manage Extensions"
}
]
},
"scripts": {
"vscode:prepublish": "rimraf out && npm run -S esbuild:base -- --minify",
"esbuild:base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild:watch": "npm run esbuild:base -- --sourcemap --watch",
"build": "rimraf out && npm run -S esbuild:base -- --sourcemap",
"watch": "npm run esbuild:watch",
"lint": "eslint src --ext ts",
"pkg:build": "vsce package",
"pkg:publish": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "16.x",
"@types/vscode": "^1.58.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vscode/test-electron": "^1.6.2",
"@vscode/vsce": "^3.6.2",
"esbuild": "^0.25.10",
"eslint": "^8.3.0",
"glob": "^7.2.0",
"mocha": "^11.7.4",
"typescript": "^4.5.2"
}
}