-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.52 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
{
"name": "simple-explorer",
"displayName": "Simple Explorer",
"description": "Only view the directories or files you care about",
"version": "0.0.7",
"publisher": "songjp",
"engines": {
"vscode": "^1.49.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yes1am/simple-explorer"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"icon": "images/icon.png",
"contributes": {
"views": {
"explorer": [
{
"id": "simpleExplorer",
"name": "Simple Explorer"
}
]
},
"commands": [
{
"command": "simpleExplorer.openFile",
"title": "Open File"
},
{
"command": "simpleExplorer.addToSimpleExplorer",
"title": "添加到 Simple Explorer"
},
{
"command": "simpleExplorer.removeFromSimpleExplorer",
"title": "从 Simple Explorer 移除"
}
],
"menus": {
"explorer/context": [
{
"command": "simpleExplorer.addToSimpleExplorer",
"group": "9_cutcopypaste@1"
},
{
"command": "simpleExplorer.removeFromSimpleExplorer",
"group": "9_cutcopypaste@2"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.49.0",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
},
"dependencies": {
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2"
}
}