-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.55 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.55 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
{
"name": "quick-llm-copy",
"displayName": "Quick LLM Copy",
"description": "Copy code files with path information for LLM conversations",
"version": "0.0.7",
"publisher": "batyan-soft",
"license": "MIT",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:quick-llm-copy.copyFiles",
"onCommand:quick-llm-copy.copyFilesWithCodebase",
"onCommand:quick-llm-copy.copyScmChanges",
"onCommand:quick-llm-copy.copyScmDiff"
],
"main": "./dist/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/Batyan45/QuickLLMCopy.git"
},
"contributes": {
"commands": [
{
"command": "quick-llm-copy.copyFiles",
"title": "Quick LLM Copy"
},
{
"command": "quick-llm-copy.copyFilesWithCodebase",
"title": "Quick LLM Copy (with Codebase)"
},
{
"command": "quick-llm-copy.copyScmChanges",
"title": "Quick LLM Copy (files)",
"icon": "$(circuit-board)"
},
{
"command": "quick-llm-copy.copyScmDiff",
"title": "Quick LLM Copy (diff)",
"icon": "$(diff)"
}
],
"configuration": {
"title": "Quick LLM Copy",
"properties": {
"quickLLMCopy.prefixText": {
"type": "string",
"default": "Provided code:",
"description": "The text that appears before the copied code content"
},
"quickLLMCopy.codebaseText": {
"type": "string",
"default": "Codebase structure. You can ask for other files if needed:",
"description": "The text that appears before the codebase structure"
}
}
},
"menus": {
"explorer/context": [
{
"command": "quick-llm-copy.copyFiles",
"when": "resourceLangId || explorerResourceIsFolder",
"group": "2_workspace"
},
{
"command": "quick-llm-copy.copyFilesWithCodebase",
"when": "resourceLangId || explorerResourceIsFolder",
"group": "2_workspace"
}
],
"scm/title": [
{
"command": "quick-llm-copy.copyScmChanges",
"group": "navigation",
"when": "scmProvider == git"
},
{
"command": "quick-llm-copy.copyScmDiff",
"group": "navigation",
"when": "scmProvider == git"
}
]
}
},
"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": "node ./out/test/runTest.js",
"build-vsix": "npm run package && vsce package",
"version": "npm version --no-git-tag-version"
},
"devDependencies": {
"@types/vscode": "^1.60.0",
"@types/node": "^16.11.7",
"@types/mocha": "^9.0.0",
"@types/glob": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"esbuild": "^0.24.0",
"typescript": "^4.8.4",
"mocha": "^9.1.3",
"@vscode/test-electron": "^2.3.8",
"glob": "^7.2.0"
}
}