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