2017-08-24 15:55:48 +03:00
|
|
|
{
|
|
|
|
"name": "vscode-sublime-importer",
|
|
|
|
"displayName": "Import Sublime Text settings to VS Code",
|
|
|
|
"description": "Import Sublime Text settings to VS Code.",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"publisher": "ms-vscode",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.6.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"import"
|
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"Importer",
|
|
|
|
"Sublime Text"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
|
|
|
"*",
|
|
|
|
"onCommand:extension.importFromSublime"
|
|
|
|
],
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "extension.importFromSublime",
|
|
|
|
"title": "Import Sublime Text settings"
|
|
|
|
}
|
2017-10-11 00:35:28 +03:00
|
|
|
],
|
|
|
|
"configuration": {
|
|
|
|
"type": "object",
|
|
|
|
"title": "Sublime Text Importer configuration",
|
|
|
|
"properties": {
|
|
|
|
"sublimeImporter.hasPromptedOnStartup": {
|
|
|
|
"type": [
|
|
|
|
"boolean",
|
|
|
|
"null"
|
|
|
|
],
|
|
|
|
"default": null,
|
|
|
|
"description": "Status of Sublime Text Importer startup prompt."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-24 15:55:48 +03:00
|
|
|
},
|
2017-10-03 02:45:38 +03:00
|
|
|
"main": "./src/extension",
|
2017-08-24 15:55:48 +03:00
|
|
|
"preview": false,
|
|
|
|
"icon": "icon.png",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Microsoft/vscode-sublime-importer.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Microsoft/vscode-sublime-importer/issues"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"vscode": "^1.0.3",
|
|
|
|
"typescript": "^2.0.3"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-10-03 02:45:38 +03:00
|
|
|
"appdirectory": "^0.1.0",
|
2017-10-09 22:50:32 +03:00
|
|
|
"listify": "^1.0.0",
|
2017-08-24 15:55:48 +03:00
|
|
|
"relaxed-json": "^1.0.1"
|
|
|
|
}
|
|
|
|
}
|