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.",
|
2017-10-11 01:03:05 +03:00
|
|
|
"version": "1.0.1",
|
2017-10-11 00:43:04 +03:00
|
|
|
"publisher": "auchenberg",
|
2017-08-24 15:55:48 +03:00
|
|
|
"engines": {
|
2018-04-05 14:52:37 +03:00
|
|
|
"vscode": "^1.22.0"
|
2017-08-24 15:55:48 +03:00
|
|
|
},
|
|
|
|
"categories": [
|
2017-10-11 01:02:54 +03:00
|
|
|
"Other"
|
2017-08-24 15:55:48 +03:00
|
|
|
],
|
|
|
|
"keywords": [
|
|
|
|
"Importer",
|
2017-10-11 00:42:12 +03:00
|
|
|
"Settings",
|
2017-08-24 15:55:48 +03:00
|
|
|
"Sublime Text"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
2018-04-05 20:40:40 +03:00
|
|
|
"onCommand:extension.importFromSublimePicker",
|
|
|
|
"onCommand:extension.importFromSublimeHTML"
|
2017-08-24 15:55:48 +03:00
|
|
|
],
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
2018-04-05 20:40:40 +03:00
|
|
|
"command": "extension.importFromSublimePicker",
|
|
|
|
"title": "Import Sublime Text settings - Picker"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "extension.importFromSublimeHTML",
|
|
|
|
"title": "Import Sublime Text settings - HTML"
|
2017-08-24 15:55:48 +03:00
|
|
|
}
|
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-10-11 00:42:12 +03:00
|
|
|
}
|
2017-08-24 15:55:48 +03:00
|
|
|
},
|
2018-02-26 16:31:18 +03:00
|
|
|
"main": "./out/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": {
|
2018-03-10 17:07:22 +03:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
|
|
"test": "npm run compile && node ./node_modules/vscode/bin/test",
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
"watch": "tsc -watch -p ./"
|
2017-08-24 15:55:48 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-03-10 17:07:22 +03:00
|
|
|
"@types/mocha": "^2.2.42",
|
2018-03-15 10:30:33 +03:00
|
|
|
"@types/node": "^7.0.43",
|
2018-04-03 14:45:11 +03:00
|
|
|
"@types/relaxed-json": "^1.0.0",
|
2018-03-21 11:34:47 +03:00
|
|
|
"typescript": "^2.0.3",
|
2018-04-05 14:52:37 +03:00
|
|
|
"vscode": "^1.1.14"
|
2017-08-24 15:55:48 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-03-26 20:03:50 +03:00
|
|
|
"relaxed-json": "^1.0.1"
|
2017-08-24 15:55:48 +03:00
|
|
|
}
|
|
|
|
}
|