-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "vscode-file-system-provider",
"displayName": "VSCode - file system provider",
"description": "Based on https://github.com/microsoft/vscode-extension-samples/tree/master/fsprovider-sample",
"version": "0.0.1",
"publisher": "test",
"repository": {
"url": "https://github.wdf.sap.corp/D045154/vscode-file-system-provider.git",
"type": "git"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "fsp.stat",
"title": "Test vscode.workspace.fs.stat()",
"category": "FSP"
},
{
"command": "fsp.readDirectory",
"title": "Test vscode.workspace.fs.readDirectory()",
"category": "FSP"
},
{
"command": "fsp.readFile",
"title": "Test vscode.workspace.fs.readFile()",
"category": "FSP"
},
{
"command": "fsp.createDirectory",
"title": "Test vscode.workspace.fs.createDirectory()",
"category": "FSP"
},
{
"command": "fsp.writeFile",
"title": "Test vscode.workspace.fs.writeFile()",
"category": "FSP"
},
{
"command": "fsp.rename",
"title": "Test vscode.workspace.fs.rename()",
"category": "FSP"
},
{
"command": "fsp.copy",
"title": "Test vscode.workspace.fs.copy()",
"category": "FSP"
},
{
"command": "fsp.delete",
"title": "Test vscode.workspace.fs.delete()",
"category": "FSP"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3",
"vsce": "^1.75.0"
}
}