-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "@vscode/os-proxy-resolver",
"version": "0.4.0",
"description": "Resolve the operating system proxy configuration from Node.js",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"platform.js",
"CHANGELOG.md",
"LICENSE.txt",
"ThirdPartyNotices.txt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/os-proxy-resolver.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=22.15.0"
},
"scripts": {
"build:native": "node npm/scripts/build-native.js",
"test:npm": "node npm/test/smoke.js",
"test:platform-selection": "node npm/test/platform-selection.js",
"verify:glibc": "node npm/scripts/verify-glibc.js",
"verify:packages": "node npm/scripts/verify-packages.js"
},
"optionalDependencies": {
"@vscode/os-proxy-resolver-darwin-arm64": "0.4.0",
"@vscode/os-proxy-resolver-darwin-x64": "0.4.0",
"@vscode/os-proxy-resolver-linux-arm-gnueabihf": "0.4.0",
"@vscode/os-proxy-resolver-linux-arm64-gnu": "0.4.0",
"@vscode/os-proxy-resolver-linux-arm64-musl": "0.4.0",
"@vscode/os-proxy-resolver-linux-x64-gnu": "0.4.0",
"@vscode/os-proxy-resolver-linux-x64-musl": "0.4.0",
"@vscode/os-proxy-resolver-win32-arm64-msvc": "0.4.0",
"@vscode/os-proxy-resolver-win32-x64-msvc": "0.4.0"
}
}