-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "smart-context",
"displayName": "Smart Context",
"description": "Copies all text files from a selected folder to clipboard, respecting .gitignore.",
"version": "1.0.6",
"publisher": "🌴 Brian",
"repository": {
"type": "git",
"url": "https://github.com/brianpetro/smart-context-vscode"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"AI"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "smartContext.copyFolderContents",
"title": "Smart Context: Copy folder contents to clipboard",
"category": "Smart Context"
},
{
"command": "smartContext.copyOpenFilesContents",
"title": "Smart Context: Copy open files to clipboard",
"category": "Smart Context"
}
],
"menus": {
"explorer/context": [
{
"command": "smartContext.copyFolderContents",
"when": "explorerResourceIsFolder",
"group": "navigation@2"
}
]
}
},
"scripts": {
"lint": "eslint src/**/*.js",
"package": "vsce package"
},
"dependencies": {
"ignore": "^5.2.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"vsce": "^2.15.0"
}
}