-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.03 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
{
"name": "pkguninstaller",
"displayName": "Pkg-Uninstaller",
"description": "Quickly uninstall packages from your package.json using the context menu.",
"version": "0.0.7",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"activationEvents": [
"onLanguage:json",
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"menus": {
"commandPalette": [
{
"command": "extension.uninstallPackageFromContext",
"when": "false"
},
{
"command": "extension.uninstallPackages",
"when": "resourceLangId == json && editorLangId == json"
}
],
"editor/context": [
{
"command": "extension.uninstallPackageFromContext",
"when": "resourceLangId == json && editorLangId == json",
"group": "navigation"
},
{
"command": "extension.uninstallPackages",
"when": "resourceLangId == json && editorLangId == json",
"group": "navigation"
}
]
},
"commands": [
{
"command": "extension.uninstallPackageFromContext",
"title": "Uninstall Package",
"category": "Pkg-Uninstaller"
},
{
"command": "extension.uninstallPackages",
"title": "Uninstall Packages",
"category": "Pkg-Uninstaller"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm package",
"compile": "pnpm check-types && pnpm lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "pnpm check-types && pnpm lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm compile-tests && pnpm compile && pnpm lint",
"check-types": "tsc --noEmit",
"lint": "biome check --write ./src/",
"lint:check": "biome check ./src/",
"test": "vscode-test",
"build": "vsce package",
"publish": "vsce publish",
"release": "release-it"
},
"devDependencies": {
"@biomejs/biome": "2.3.12",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.96.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.2",
"npm-run-all": "^4.1.5",
"release-it": "^19.2.4",
"typescript": "^5.7.2"
},
"keywords": [
"uninstall",
"npm",
"packages",
"yarn",
"pnpm",
"bun",
"package.json",
"dependencies",
"utility"
],
"repository": {
"type": "git",
"url": "https://github.com/theBGuy/vs-pkg-uninstaller"
},
"author": "theBGuy <theBGuy.github@gmail.com>",
"publisher": "theBGuy",
"license": "MIT",
"icon": "logo.png",
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}