61 строка
1.6 KiB
JSON
61 строка
1.6 KiB
JSON
{
|
|
"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 Install Tool for Extension Authors",
|
|
"description": "Allows acquisition of the .NET Core runtime specifically for VSCode extension authors.",
|
|
"icon": "images/dotnetIcon.png",
|
|
"version": "0.1.0",
|
|
"publisher": "ms-dotnettools",
|
|
"engines": {
|
|
"vscode": "^1.41.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"keywords": [
|
|
".NET",
|
|
".NET Core",
|
|
"dotnet",
|
|
"Extension Authoring"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:dotnet.acquire",
|
|
"onCommand:dotnet.uninstallAll",
|
|
"onCommand:dotnet.showAcquisitionLog",
|
|
"onCommand:dotnet.ensureDotnetDependencies",
|
|
"onCommand:dotnet.reportIssue"
|
|
],
|
|
"main": "./dist/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "dotnet.reportIssue",
|
|
"title": "Report an issue with the .NET Install Tool for Extension Authors.",
|
|
"category": ".NET Install Tool"
|
|
}
|
|
]
|
|
},
|
|
"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"
|
|
}
|
|
}
|