Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions src/schemas/json/pnpm-workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,12 @@
"description": "A proxy to use for outgoing HTTPS requests. If the HTTPS_PROXY, https_proxy, HTTP_PROXY or http_proxy environment variables are set, their values will be used instead.",
"type": "string"
},
"httpProxy": {
"description": "A proxy to use for outgoing HTTP requests. If the HTTP_PROXY or http_proxy environment variables are set, proxy settings will be honored by the underlying request library.",
"type": "string"
},
"proxy": {
"description": "A proxy to use for outgoing http requests. If the HTTP_PROXY or http_proxy environment variables are set, proxy settings will be honored by the underlying request library.",
"description": "npm's legacy proxy setting, used as the fallback for both httpsProxy and httpProxy. If the HTTP_PROXY or http_proxy environment variables are set, proxy settings will be honored by the underlying request library.",
"type": "string"
},
"localAddress": {
Expand All @@ -498,7 +502,7 @@
"description": "The maximum number of connections to use per origin (protocol/host/port combination).",
"type": "number"
},
"noproxy": {
"noProxy": {
"description": "A comma-separated string of domain extensions that a proxy should not be used for.",
"type": "string"
},
Expand Down Expand Up @@ -530,6 +534,14 @@
"description": "The maximum amount of time to wait for HTTP requests to complete.",
"type": "number"
},
"fetchWarnTimeoutMs": {
"description": "A warning message is displayed if a metadata request to the registry takes longer than the specified threshold (in milliseconds). Added in pnpm v10.18.0.",
"type": "number"
},
"fetchMinSpeedKiBps": {
"description": "A warning message is displayed if the download speed of a tarball from the registry falls below the specified threshold (in KiB/s). Added in pnpm v10.18.0.",
"type": "number"
},
"autoInstallPeers": {
"description": "When true, any missing non-optional peer dependencies are automatically installed.",
"type": "boolean"
Expand Down