prepare for publish

This commit is contained in:
Johannes Rieken
2018-04-24 18:44:54 +02:00
parent 150c6c5e34
commit f235a144c6

View File

@ -1,9 +1,13 @@
{
"name": "vscode-memfs",
"displayName": "MemFS - a file system provider sample",
"description": "Showcase for the file system provider API",
"description": "Showcase for the file system provider API, also useful for testing again document that are not on disk.",
"version": "0.0.1",
"publisher": "jrieken",
"repository": {
"url": "https://github.com/Microsoft/vscode-extension-samples.git",
"type": "git"
},
"engines": {
"vscode": "^1.23.0"
},
@ -18,11 +22,13 @@
"commands": [
{
"command": "memfs.init",
"title": "Initialize MemFS"
"title": "Create files",
"category": "MemFS"
},
{
"command": "memfs.reset",
"title": "Reset MemFS"
"title": "Delete all files",
"category": "MemFS"
}
]
},