-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
142 lines (142 loc) · 3.77 KB
/
package.json
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "vscode-nuget-gallery",
"displayName": "NuGet Gallery",
"publisher": "patcx",
"description": "The NuGet Gallery extension streamlines the process of installing and uninstalling NuGet packages, making it more efficient and user-friendly.",
"version": "1.2.2",
"license": "MIT",
"icon": "docs/images/icon.png",
"sponsor": {
"url": "https://github.com/sponsors/pcislo"
},
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/pcislo/vscode-nuget-gallery/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/pcislo/vscode-nuget-gallery.git"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "nuget-gallery.openSettings",
"title": "Settings",
"icon": "$(extensions-manage)"
},
{
"command": "nuget-gallery.reportProblem",
"title": "Report Problem",
"icon": "$(report)"
},
{
"command": "nuget-gallery.sponsor",
"title": "Sponsor Extension",
"icon": "$(heart)"
}
],
"menus": {
"view/title": [
{
"command": "nuget-gallery.sponsor",
"when": "view == nuget.gallery.view",
"group": "navigation@1"
},
{
"command": "nuget-gallery.reportProblem",
"when": "view == nuget.gallery.view",
"group": "navigation@2"
},
{
"command": "nuget-gallery.openSettings",
"when": "view == nuget.gallery.view",
"group": "navigation@3"
}
]
},
"viewsContainers": {
"panel": [
{
"id": "nugetGalleryView",
"title": "NuGet",
"icon": "resources/nuget.svg"
}
]
},
"views": {
"nugetGalleryView": [
{
"type": "webview",
"id": "nuget.gallery.view",
"name": "NuGet"
}
]
},
"configuration": {
"title": "NuGet Gallery",
"properties": {
"NugetGallery.credentialProviderFolder": {
"type": "string",
"default": "{user-profile}/.nuget/plugins/netcore/CredentialProvider.Microsoft",
"description": "Folder containing CredentialProvider.Microsoft"
},
"NugetGallery.sources": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true,
"minItems": 1,
"default": [
"{\"name\": \"nuget.org\",\"url\": \"https://api.nuget.org/v3/index.json\"}"
],
"description": "NuGet sources"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./esbuild.js",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"esbuild": "node ./esbuild.js",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/object-hash": "^3.0.6",
"@types/vscode": "^1.87.0",
"@types/vscode-webview": "^1.57.5",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/codicons": "^0.0.35",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.20.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@microsoft/fast-element": "^1.12.0",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.51.1",
"@vscode/webview-ui-toolkit": "^1.4.0",
"@xmldom/xmldom": "^0.8.10",
"async-mutex": "^0.5.0",
"axios": "^1.7.4",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"split.js": "^1.6.5",
"xpath": "^0.0.34"
}
}