You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`npmx.versionCompletion`| Version completion behavior: 'all' shows all versions, 'provenance-only' shows only versions with provenance, 'off' disables version completion |`string`|`"provenance-only"`|
Copy file name to clipboardExpand all lines: package.json
+26-6Lines changed: 26 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -42,18 +42,38 @@
42
42
],
43
43
"contributes": {
44
44
"configuration": {
45
-
"title": "Only suggest version",
45
+
"title": "npmx",
46
46
"properties": {
47
-
"npmx.versionCompletion": {
47
+
"npmx.hover.enabled": {
48
+
"type": "boolean",
49
+
"default": true,
50
+
"description": "Enable hover information for packages"
51
+
},
52
+
"npmx.completion.version": {
48
53
"type": "string",
49
54
"enum": ["all", "provenance-only", "off"],
50
55
"enumDescriptions": [
51
-
"show all versions",
52
-
"show only versions with provenance",
53
-
"disables version completion"
56
+
"Show all versions",
57
+
"Show only versions with provenance",
58
+
"Disable version completion"
54
59
],
55
60
"default": "provenance-only",
56
-
"description": "Version completion behavior: 'all' shows all versions, 'provenance-only' shows only versions with provenance, 'off' disables version completion"
61
+
"description": "Version completion behavior"
62
+
},
63
+
"npmx.diagnostics.deprecation": {
64
+
"type": "boolean",
65
+
"default": true,
66
+
"description": "Show warnings for deprecated packages"
67
+
},
68
+
"npmx.diagnostics.replacement": {
69
+
"type": "boolean",
70
+
"default": true,
71
+
"description": "Show suggestions for package replacements"
72
+
},
73
+
"npmx.diagnostics.vulnerability": {
74
+
"type": "boolean",
75
+
"default": true,
76
+
"description": "Show warnings for packages with known vulnerabilities"
0 commit comments