2019-07-12 14:50:27 +02:00
|
|
|
{
|
|
|
|
|
"name": "vscode-memfs",
|
|
|
|
|
"displayName": "FileSystem Consumer Sample",
|
|
|
|
|
"description": "Showcase for using the workspace.fs.-API which allows reading and writing files and folder",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "vscode-samples",
|
2021-06-11 17:10:40 -07:00
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
2019-07-12 14:50:27 +02:00
|
|
|
"repository": {
|
2021-06-11 17:10:40 -07:00
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
2019-07-12 14:50:27 +02:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"vscode": "^1.37.0"
|
|
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
2019-07-23 10:15:31 +02:00
|
|
|
"onCommand:fs/openJS",
|
2019-07-23 09:59:41 +02:00
|
|
|
"onCommand:fs/sumSizes",
|
|
|
|
|
"onCommand:fs/readWriteFile"
|
2019-07-12 14:50:27 +02:00
|
|
|
],
|
|
|
|
|
"main": "./out/src/extension",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
2019-07-23 10:15:31 +02:00
|
|
|
"command": "fs/openJS",
|
|
|
|
|
"title": "Open JavaScript-file for TypeScript-file...",
|
2019-07-23 09:59:41 +02:00
|
|
|
"category": "FS"
|
2019-07-12 14:50:27 +02:00
|
|
|
},
|
|
|
|
|
{
|
2019-07-23 09:59:41 +02:00
|
|
|
"command": "fs/sumSizes",
|
2019-07-23 10:15:31 +02:00
|
|
|
"title": "Show folder information for current file",
|
2019-07-23 09:59:41 +02:00
|
|
|
"category": "FS"
|
2019-07-22 16:54:57 +02:00
|
|
|
},
|
|
|
|
|
{
|
2019-07-23 09:59:41 +02:00
|
|
|
"command": "fs/readWriteFile",
|
2019-07-22 16:54:57 +02:00
|
|
|
"title": "Read and Write file",
|
2019-07-23 09:59:41 +02:00
|
|
|
"category": "FS"
|
2019-07-12 14:50:27 +02:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
|
"compile": "tsc -p ./",
|
2020-05-29 13:12:13 -07:00
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
2019-07-12 14:50:27 +02:00
|
|
|
"watch": "tsc -watch -p ./"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-04-14 18:01:21 -07:00
|
|
|
"@types/node": "^12.12.0",
|
2019-07-12 14:50:27 +02:00
|
|
|
"@types/vscode": "^1.37.0",
|
2021-03-02 15:59:42 -08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.16.0",
|
|
|
|
|
"@typescript-eslint/parser": "^4.16.0",
|
|
|
|
|
"eslint": "^7.21.0",
|
2021-07-13 18:48:28 -07:00
|
|
|
"typescript": "^4.3.5"
|
2019-07-12 14:50:27 +02:00
|
|
|
}
|
|
|
|
|
}
|