-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.07 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.07 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"version": "2.1.0",
"contributes": {
"commands": [
{
"command": "trash4wsl-in-vscode.trashPut",
"title": "丢入回收站(Trash It)"
},
{
"command": "trash4wsl-in-vscode.browseTrash",
"title": "浏览回收站(历史记录、恢复、清空)",
"category": "trash4wsl",
"icon": "$(history)"
}
],
"keybindings": [
{
"command": "trash4wsl-in-vscode.trashPut",
"key": "delete",
"mac": "delete",
"when": "resourceScheme == 'vscode-remote' && filesExplorerFocus && !explorerResourceIsRoot && resourceSet && !inputFocus"
},
{
"command": "trash4wsl-in-vscode.browseTrash",
"key": "ctrl+shift+delete",
"mac": "ctrl+shift+delete",
"when": "remoteName"
}
],
"menus": {
"explorer/context": [
{
"command": "trash4wsl-in-vscode.trashPut",
"when": "resourceScheme == 'vscode-remote' && !explorerResourceIsRoot",
"group": "7_modification@0"
}
],
"commandPalette": [
{
"command": "trash4wsl-in-vscode.trashPut",
"when": "false"
}
]
}
},
"name": "trash4wsl-in-vscode",
"displayName": "trash4wsl-in-vscode",
"icon": "trash4wsl-icon.png",
"description": "Send files/folders to trash in VS Code remote environments like WSL.",
"publisher": "2bitbit",
"author": {
"name": "2bitbit"
},
"keywords": [
"wsl",
"remote",
"vscode",
"trash",
"delete",
"safe-delete",
"recycle-bin",
"file-management"
],
"license": "MIT",
"homepage": "https://github.com/2bitbit/trash4wsl-in-vscode",
"repository": {
"type": "git",
"url": "https://github.com/2bitbit/trash4wsl-in-vscode"
},
"bugs": {
"url": "https://github.com/2bitbit/trash4wsl-in-vscode/issues"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"extensionKind": [
"workspace"
],
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@napi-rs/cli": "^3.6.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.3"
}
}