forked from dotnet/vscode-dotnet-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"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",
"preview": true,
"author": "Microsoft Corporation",
"displayName": ".NET Authoring Tool for Extensions",
"description": "Allows acquisition of the .NET runtime specifically for VSCode extension authors.",
"version": "0.1.0",
"publisher": "ms-azuretools",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"keywords": [
".NET",
".NET Core",
"dotnet"
],
"activationEvents": [
"onCommand:dotnet.acquire",
"onCommand:dotnet.uninstallAll",
"onCommand:dotnet.showAcquisitionLog",
"onCommand:dotnet.ensureDotnetDependencies"
],
"main": "./dist/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "npm run compile-all && npm install && webpack --mode production",
"compile-all": "cd vscode-dotnet-runtime-library && npm install && npm run compile && cd .. && cd vscode-dotnet-runtime-extension && npm install && npm run compile && cd .."
},
"dependencies": {
"vscode-dotnet-runtime-extension": "file:./vscode-dotnet-runtime-extension"
},
"devDependencies": {
"ts-loader": "^6.2.1",
"typescript": "3.4.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}