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": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.0"
|
2019-07-12 14:50:27 +02:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
2022-12-08 13:55:11 -08:00
|
|
|
"activationEvents": [],
|
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 ./",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint",
|
2019-07-12 14:50:27 +02:00
|
|
|
"watch": "tsc -watch -p ./"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"@types/node": "^22",
|
2025-08-07 07:57:14 -07:00
|
|
|
"@types/vscode": "^1.100.0",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
2019-07-12 14:50:27 +02:00
|
|
|
}
|
2025-08-06 23:43:14 -07:00
|
|
|
}
|