Path: blob/main/extensions/copilot/test/simulation/fixtures/multiFileEdit/fsprovider/package.json
13405 views
{1"name": "vscode-memfs",2"displayName": "MemFS - a file system provider sample",3"description": "Showcase for the file system provider API, also useful for testing again document that are not on disk.",4"version": "0.0.3",5"publisher": "vscode-samples",6"private": true,7"license": "MIT",8"repository": {9"type": "git",10"url": "https://github.com/Microsoft/vscode-extension-samples"11},12"engines": {13"vscode": "^1.74.0"14},15"categories": [16"Other"17],18"activationEvents": [19"onFileSystem:memfs"20],21"main": "./out/src/extension",22"contributes": {23"commands": [24{25"command": "memfs.workspaceInit",26"title": "Setup Workspace",27"category": "MemFS"28},29{30"command": "memfs.init",31"title": "Create Files",32"category": "MemFS"33},34{35"command": "memfs.reset",36"title": "Delete Files",37"category": "MemFS"38},39{40"command": "memfs.deleteFile",41"title": "Delete \"file.txt\"",42"category": "MemFS"43},44{45"command": "memfs.addFile",46"title": "Add \"file.txt\"",47"category": "MemFS"48}49],50"menus": {51"commandPalette": [52{53"command": "memfs.init",54"when": "workbenchState == workspace"55},56{57"command": "memfs.reset",58"when": "workbenchState == workspace"59},60{61"command": "memfs.deleteFile",62"when": "workbenchState == workspace"63},64{65"command": "memfs.addFile",66"when": "workbenchState == workspace"67},68{69"command": "memfs.workspaceInit",70"when": "workbenchState != workspace"71}72]73}74},75"scripts": {76"vscode:prepublish": "npm run compile",77"compile": "tsc -p ./",78"lint": "eslint \"src/**/*.ts\"",79"watch": "tsc -watch -p ./"80},81"devDependencies": {82"@types/node": "^18",83"@types/vscode": "^1.73.0",84"@typescript-eslint/eslint-plugin": "^6.7.0",85"@typescript-eslint/parser": "^6.7.0",86"eslint": "^8.26.0",87"typescript": "^5.4.2"88}89}909192