forked from dotnet/vscode-dotnet-runtime
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.73 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.73 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "vscode-dotnet-runtime",
"repository": {
"type": "git",
"url": "https://github.com/dotnet/vscode-dotnet-runtime.git"
},
"bugs": {
"url": "https://github.com/dotnet/vscode-dotnet-runtime/issues"
},
"license": "MIT",
"author": "Microsoft Corporation",
"displayName": ".NET Runtime Install Tool",
"description": "This extension installs and manages different versions of the .NET Runtime.",
"appInsightsKey": "02dc18e0-7494-43b2-b2a3-18ada5fcb522",
"icon": "images/dotnetIcon.png",
"version": "1.8.1",
"publisher": "ms-dotnettools",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"keywords": [
".NET",
".NET Core",
"dotnet",
"Extension Authoring",
"runtime"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"activationEvents": [
"onCommand:dotnet.acquire",
"onCommand:dotnet.acquireStatus",
"onCommand:dotnet.uninstallAll",
"onCommand:dotnet.showAcquisitionLog",
"onCommand:dotnet.ensureDotnetDependencies"
],
"main": "./dist/extension.js",
"types": "./dist/extension.d.ts",
"contributes": {
"commands": [
{
"command": "dotnet.reportIssue",
"title": "Report an issue with the .NET Runtime Install Tool.",
"category": ".NET Runtime Install Tool"
}
],
"configuration": {
"title": ".NET Runtime Install Tool",
"properties": {
"dotnetAcquisitionExtension.enableTelemetry": {
"type": "boolean",
"default": true,
"description": "Enable Telemetry for the .NET Runtime Install Tool. Restart VS Code to apply changes."
},
"dotnetAcquisitionExtension.installTimeoutValue": {
"type": "number",
"default": 600,
"description": "Timeout for installing .NET in seconds."
},
"dotnetAcquisitionExtension.existingDotnetPath": {
"type": "array",
"description": "File Path to an existing installation of .NET."
},
"dotnetAcquisitionExtension.proxyUrl": {
"type": "string",
"description": "URL to a proxy if you use one, such as: https://proxy:port"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile-all && npm install && webpack --mode production",
"compile": "npm run clean && tsc -p ./",
"watch": "npm run compile && tsc -watch -p ./",
"test": "npm run compile --silent && node ./dist/test/functional/runTest.js",
"clean": "rimraf dist",
"compile-all": "cd ../vscode-dotnet-runtime-library && npm install && npm run compile && cd ../vscode-dotnet-runtime-extension && npm install && npm run compile",
"lint": "tslint -c ../tslint.json '../vscode-dotnet-runtime-library/src/**/*.ts' '../vscode-dotnet-runtime-extension/src/**/*.ts'",
"webpack": "webpack --mode development"
},
"dependencies": {
"axios": "^1.3.4",
"axios-cache-interceptor": "^1.0.1",
"axios-retry": "^3.4.0",
"chai": "4.3.4",
"child_process": "^1.0.2",
"diff": ">=5.0.0",
"glob": "^7.2.0",
"got": "11.8.5",
"hmac-drbg": "^1.0.1",
"https-proxy-agent": "^7.0.2",
"is-online": "^9.0.1",
"mocha": "^9.1.3",
"open": "^8.4.0",
"public-ip": "5.0.0",
"rimraf": "3.0.2",
"safe-regex-test": "^1.0.0",
"shelljs": "^0.8.5",
"ts-loader": "^9.2.6",
"tslint": "^5.20.1",
"typescript": "4.4.4",
"vscode-dotnet-runtime-library": "file:../vscode-dotnet-runtime-library",
"vscode-test": "^1.6.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^9.0.0",
"@types/node": "16.11.7",
"@types/rimraf": "3.0.2",
"@types/vscode": "1.74.0",
"copy-webpack-plugin": "9.0.1",
"webpack": "5.88.2",
"webpack-cli": "4.9.1"
},
"__metadata": {
"id": "1aab81a1-b3d9-4aef-976b-577d5d90fe3f",
"publisherDisplayName": "Microsoft",
"publisherId": "d05e23de-3974-4ff0-8d47-23ee77830092",
"isPreReleaseVersion": false
}
}