-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.81 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": "deletecurrentfile",
"displayName": "Delete Current File",
"description": "%deletecurrentfile.desc%",
"version": "0.1.5",
"license": "SEE LICENSE IN LICENSE.txt",
"publisher": "cha0ran",
"repository": {
"type": "git",
"url": "https://github.com/cha0ran/vscode-delete-current-file.git"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#1e415e",
"theme": "dark"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:deletecurrentfile.deleteCurrentFile"
],
"main": "src/extension.js",
"contributes": {
"configuration": {
"title": "%deletecurrentfile.config.title%",
"properties": {
"deleteCurrentFile.toTrash": {
"type": "boolean",
"default": true,
"description": "%deletecurrentfile.config.totrash%"
}
}
},
"commands": [
{
"command": "deletecurrentfile.deleteCurrentFile",
"title": "%deletecurrentfile.command.title%"
}
],
"keybindings": {
"command": "deletecurrentfile.deleteCurrentFile",
"key": "ctrl+d ctrl+f",
"mac": "cmd+d cmd+f"
},
"menus": {
"commandPalette": [
{
"command": "deletecurrentfile.deleteCurrentFile",
"when": "isFileSystemResource"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@vscode/test-cli": "0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3"
},
"dependencies": {
"vscode-nls": "^5.2.0"
}
}