-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.52 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
{
"name": "smart-context",
"displayName": "Smart Context",
"description": "Copies all text files from a selected folder to clipboard, respecting .gitignore.",
"version": "1.0.10",
"publisher": "🌴 Brian",
"repository": {
"type": "git",
"url": "https://github.com/brianpetro/smart-context-vscode"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"AI"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "smartContext.copyFolderContents",
"title": "Copy folder contents to clipboard",
"category": "Smart Context"
},
{
"command": "smartContext.copyOpenFilesContents",
"title": "Copy open files to clipboard",
"category": "Smart Context"
},
{
"command": "smartContext.copyFolderContentsMin",
"title": "Copy minimized folder contents to clipboard",
"category": "Smart Context"
},
{
"command": "smartContext.copyOpenFilesContentsMin",
"title": "Copy minimized open files to clipboard",
"category": "Smart Context"
},
{
"command": "smartContext.stripLogicFromMethods",
"title": "Copy with logic stripped from methods (folder)",
"category": "Smart Context"
},
{
"command": "smartContext.stripLogicFromMethodsOpenFiles",
"title": "Copy with logic stripped from methods (open files)",
"category": "Smart Context"
}
],
"menus": {
"explorer/context": [
{
"command": "smartContext.copyFolderContents",
"when": "explorerResourceIsFolder",
"group": "navigation@2"
},
{
"command": "smartContext.copyFolderContentsMin",
"when": "explorerResourceIsFolder",
"group": "navigation@3"
},
{
"command": "smartContext.stripLogicFromMethods",
"when": "explorerResourceIsFolder",
"group": "navigation@4"
}
],
"editor/context": [
{
"command": "smartContext.stripLogicFromMethodsOpenFiles",
"when": "editorTextFocus",
"group": "navigation@4"
}
]
}
},
"scripts": {
"lint": "eslint src/**/*.js",
"build": "node ./esbuild.mjs",
"package": "npm run build && vsce package"
},
"dependencies": {
"ignore": "^5.2.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"vsce": "^2.15.0",
"esbuild": "^0.25.9"
}
}