-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.69 KB
/
Copy pathpackage.json
File metadata and controls
147 lines (147 loc) · 4.69 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"publisher": "mefengl",
"name": "copy-folder-content",
"displayName": "Copy Folder Content",
"version": "1.6.8",
"private": true,
"description": "Copies the content of a selected folder or a collection of files into the clipboard with customization options.",
"author": "mefengl",
"repository": "https://github.com/mefengl/vscode-copy-folder-content",
"categories": [
"Other"
],
"main": "./dist/extension.js",
"icon": "res/logo.png",
"engines": {
"vscode": "^1.99.1"
},
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "extension.copyFolderContent",
"title": "Copy Folder Content"
},
{
"command": "extension.copyFolderContentWithoutComments",
"title": "Copy Folder Content Without Comments"
},
{
"command": "extension.copyFolderContentRecursively",
"title": "Recursively Copy Folder Content"
},
{
"command": "extension.copyFolderContentRecursivelyByType",
"title": "Recursively Copy Folder Content By Type"
},
{
"command": "extension.newCollectionAndAdd",
"title": "Start New Collection with File"
},
{
"command": "extension.addToCollection",
"title": "Add File to Collection"
},
{
"command": "extension.addToCollectionAndCopy",
"title": "Add File to Collection and Copy"
},
{
"command": "extension.copyCollectionAndClear",
"title": "Copy Collection and Clear"
},
{
"command": "extension.copySelectedFilesAndFolders",
"title": "Copy Selected Files and Folders"
},
{
"command": "extension.copyLastSelection",
"title": "Copy Last Selection"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerViewletFocus && explorerResourceIsFolder && !listMultiSelection",
"command": "extension.copyFolderContent",
"group": "copy-folder-content"
},
{
"when": "explorerViewletFocus && explorerResourceIsFolder && !listMultiSelection",
"command": "extension.copyFolderContentWithoutComments",
"group": "copy-folder-content"
},
{
"when": "explorerViewletFocus && explorerResourceIsFolder && !listMultiSelection",
"command": "extension.copyFolderContentRecursively",
"group": "copy-folder-content"
},
{
"when": "explorerViewletFocus && explorerResourceIsFolder && !listMultiSelection",
"command": "extension.copyFolderContentRecursivelyByType",
"group": "copy-folder-content"
},
{
"when": "explorerViewletFocus && !explorerResourceIsFolder && !listMultiSelection",
"command": "extension.newCollectionAndAdd",
"group": "copy-folder-content"
},
{
"when": "explorerViewletFocus && !explorerResourceIsFolder && !listMultiSelection",
"command": "extension.addToCollection",
"group": "copy-folder-content"
},
{
"when": "explorerViewletFocus && !explorerResourceIsFolder && !listMultiSelection",
"command": "extension.addToCollectionAndCopy",
"group": "copy-folder-content"
},
{
"when": "explorerViewletFocus && !explorerResourceIsFolder && !listMultiSelection",
"command": "extension.copyCollectionAndClear",
"group": "copy-folder-content"
},
{
"command": "extension.copySelectedFilesAndFolders",
"when": "explorerViewletFocus && listMultiSelection",
"group": "copy-folder-content"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"publish": "vsce publish --no-dependencies",
"release": "bumpp -y && nr publish"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"jschardet": "^3.1.4",
"strip-comments": "^2.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.6.2",
"@types/strip-comments": "^2.0.4",
"@types/vscode": "^1.99.1",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.3.2",
"bumpp": "^10.1.0",
"eslint": "^9.25.1",
"glob": "^11.0.2",
"mocha": "^11.1.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.7",
"webpack-cli": "^6.0.1"
}
}