Files
vscode-extension-samples/fsprovider-sample/package.json

73 lines
2.0 KiB
JSON
Raw Permalink Normal View History

{
2018-04-23 17:58:10 +02:00
"name": "vscode-memfs",
"displayName": "MemFS - a file system provider sample",
2018-04-24 18:44:54 +02:00
"description": "Showcase for the file system provider API, also useful for testing again document that are not on disk.",
2018-04-27 11:02:00 +02:00
"version": "0.0.3",
"publisher": "jrieken",
2018-04-24 18:44:54 +02:00
"repository": {
"url": "https://github.com/Microsoft/vscode-extension-samples.git",
"type": "git"
},
"engines": {
2018-04-20 09:55:06 +02:00
"vscode": "^1.23.0"
},
2018-05-25 20:04:30 -07:00
"enableProposedApi": true,
"categories": [
"Other"
],
"activationEvents": [
2018-04-26 18:27:16 +02:00
"onFileSystem:memfs",
2018-09-22 10:45:09 -07:00
"onSearch:memfs",
2018-04-26 18:27:16 +02:00
"onCommand:memfs.workspaceInit",
"onCommand:memfs.init",
"onCommand:memfs.reset"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
2018-04-26 18:27:16 +02:00
{
"command": "memfs.workspaceInit",
"title": "Setup Workspace",
"category": "MemFS"
},
{
"command": "memfs.init",
"title": "Create Files",
2018-04-24 18:44:54 +02:00
"category": "MemFS"
},
{
"command": "memfs.reset",
"title": "Delete Files",
2018-04-24 18:44:54 +02:00
"category": "MemFS"
}
2018-04-26 18:27:16 +02:00
],
"menus": {
"commandPalette": [
{
"command": "memfs.init",
"when": "workbenchState == workspace"
},
{
"command": "memfs.reset",
"when": "workbenchState == workspace"
},
{
"command": "memfs.workspaceInit",
"when": "workbenchState != workspace"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.17",
"@types/node": "^7.0.43"
}
}