-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.56 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": "faster-new",
"displayName": "New",
"description": "💼 Create files & folders from file's context menu in VSCode",
"version": "1.5.2",
"publisher": "wenfangdu",
"icon": "images/icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wenfangdu/vscode-new"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"keywords": [
"click",
"context",
"create",
"fast",
"file",
"folder",
"menu",
"new",
"productivity",
"quick",
"rapid",
"right",
"util",
"utility"
],
"contributes": {
"commands": [
{
"command": "explorer.newFile",
"title": "New File"
},
{
"command": "explorer.newFolder",
"title": "New Folder"
}
],
"menus": {
"explorer/context": [
{
"when": "!explorerResourceIsFolder",
"command": "explorer.newFile",
"group": "navigation"
},
{
"when": "!explorerResourceIsFolder ",
"command": "explorer.newFolder",
"group": "navigation"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"vscode:prepublish": "npm install"
},
"devDependencies": {
"@types/vscode": "^1.0.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^8.2.3",
"@types/node": "14.x",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"mocha": "^8.4.0",
"typescript": "^4.6.2",
"vscode-test": "^1.6.1"
}
}