2021-01-11 20:00:15 +03:00
|
|
|
{
|
|
|
|
"name": "remote-wsl-recommender",
|
|
|
|
"displayName": "%displayName%",
|
|
|
|
"description": "%description%",
|
|
|
|
"publisher": "ms-vscode-remote",
|
2021-01-12 15:22:40 +03:00
|
|
|
"icon": "resources/remote-wsl.png",
|
2022-05-04 10:11:49 +03:00
|
|
|
"version": "0.0.16",
|
2021-03-23 19:55:41 +03:00
|
|
|
"license": "MIT",
|
2021-01-11 20:00:15 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-03-23 19:55:41 +03:00
|
|
|
"url": "https://github.com/Microsoft/vscode-remote-wsl-recommender.git"
|
2021-01-12 15:10:47 +03:00
|
|
|
},
|
|
|
|
"bugs": {
|
2021-01-11 20:00:15 +03:00
|
|
|
"url": "https://github.com/Microsoft/vscode-remote-release/issues"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.52.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"remote",
|
|
|
|
"wsl",
|
|
|
|
"remote development"
|
|
|
|
],
|
2022-08-22 17:04:07 +03:00
|
|
|
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
|
2021-01-11 20:00:15 +03:00
|
|
|
"activationEvents": [
|
2021-01-13 13:17:26 +03:00
|
|
|
"onCommand:remote-wsl-recommender.openWSLFolder",
|
|
|
|
"onCommand:remote-wsl-recommender.gettingStarted",
|
2021-01-11 20:00:15 +03:00
|
|
|
"onStartupFinished"
|
|
|
|
],
|
|
|
|
"main": "./dist/extension.js",
|
2021-04-23 11:25:56 +03:00
|
|
|
"capabilities": {
|
|
|
|
"virtualWorkspaces": true,
|
|
|
|
"untrustedWorkspaces": {
|
|
|
|
"supported": true
|
|
|
|
}
|
2021-04-13 13:26:05 +03:00
|
|
|
},
|
2021-01-11 20:00:15 +03:00
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
2021-01-13 13:17:26 +03:00
|
|
|
"command": "remote-wsl-recommender.openWSLFolder",
|
|
|
|
"title": "%openFolderCommand%",
|
2022-09-28 23:01:31 +03:00
|
|
|
"category": "WSL"
|
2021-01-11 20:00:15 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-13 13:17:26 +03:00
|
|
|
"command": "remote-wsl-recommender.gettingStarted",
|
|
|
|
"title": "%gettingStartedCommand%",
|
2022-09-28 23:01:31 +03:00
|
|
|
"category": "WSL"
|
2021-01-11 20:00:15 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"menus": {
|
|
|
|
"commandPalette": [
|
|
|
|
{
|
2021-01-13 13:17:26 +03:00
|
|
|
"command": "remote-wsl-recommender.openWSLFolder",
|
|
|
|
"when": "remote-wsl-recommender.openWSLFolder.available"
|
2021-01-11 20:00:15 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-13 13:17:26 +03:00
|
|
|
"command": "remote-wsl-recommender.gettingStarted",
|
2021-01-11 20:00:15 +03:00
|
|
|
"when": "false"
|
|
|
|
}
|
|
|
|
],
|
2021-04-23 13:48:12 +03:00
|
|
|
"statusBar/remoteIndicator": [
|
2021-01-11 20:00:15 +03:00
|
|
|
{
|
2021-01-13 13:17:26 +03:00
|
|
|
"command": "remote-wsl-recommender.openWSLFolder",
|
|
|
|
"when": "remote-wsl-recommender.openWSLFolder.available",
|
2021-04-23 13:48:12 +03:00
|
|
|
"group": "remote_10_wsl_0_local@2"
|
2021-01-11 20:00:15 +03:00
|
|
|
},
|
|
|
|
{
|
2021-01-13 13:17:26 +03:00
|
|
|
"command": "remote-wsl-recommender.gettingStarted",
|
|
|
|
"when": "remote-wsl-recommender.gettingStarted.available",
|
2021-04-23 13:48:12 +03:00
|
|
|
"group": "remote_10_wsl_0_local@9"
|
2021-01-11 20:00:15 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "webpack --mode production",
|
|
|
|
"compile": "webpack --mode none && yarn lint",
|
|
|
|
"watch": "webpack --mode none --watch",
|
|
|
|
"lint": "eslint src --ext ts",
|
2021-03-11 15:18:37 +03:00
|
|
|
"preversion": "yarn compile",
|
2021-03-23 19:58:47 +03:00
|
|
|
"postversion": "git push && git push --tags",
|
2021-01-11 20:00:15 +03:00
|
|
|
"patch-insiders": "yarn compile && node ./build/patch-local.js .vscode-insiders",
|
|
|
|
"patch-dev": "yarn compile && node ./build/patch-local.js .vscode-oss-dev"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-08-22 17:04:07 +03:00
|
|
|
"@vscode/extension-telemetry": "0.6.2",
|
2022-08-22 17:54:09 +03:00
|
|
|
"vscode-nls": "^5.1.0",
|
|
|
|
"vscode-tas-client": "^0.1.63",
|
2022-02-02 16:51:20 +03:00
|
|
|
"@types/copy-webpack-plugin": "^10.1.0",
|
2022-08-22 17:54:09 +03:00
|
|
|
"@types/node": "16.x",
|
2021-06-24 14:52:21 +03:00
|
|
|
"@types/vscode": "^1.52.0",
|
2022-08-22 17:54:09 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
|
|
"@typescript-eslint/parser": "^5.33.1",
|
|
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
|
|
"eslint": "^8.22.0",
|
|
|
|
"ts-loader": "^9.3.1",
|
|
|
|
"typescript": "^4.7.4",
|
|
|
|
"vscode-nls-dev": "^4.0.1",
|
|
|
|
"webpack": "^5.74.0",
|
|
|
|
"webpack-cli": "^4.10.0"
|
2021-01-11 20:00:15 +03:00
|
|
|
}
|
2021-01-12 15:10:47 +03:00
|
|
|
}
|