forked from WoHinDu/AI-Project-Brief
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.46 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
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
{
"name": "ai-project-brief",
"publisher": "WoHinDu",
"displayName": "AI Project Brief: Codebase Consolidator for AI Assistants",
"description": "Quickly combine and export your project files for easy sharing with AI assistants like ChatGPT",
"repository": "https://github.com/WoHinDu/AI-Project-Brief",
"version": "1.3.0",
"license": "MIT",
"keywords": [
"file",
"combine",
"merge",
"concatenate"
],
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other",
"AI"
],
"main": "./extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "aiProjectBrief.combineFiles",
"title": "AI Project Brief: Combine Files"
},
{
"command": "aiProjectBrief.combineFilesToClipboard",
"title": "AI Project Brief: Combine Files to Clipboard"
},
{
"command": "aiProjectBrief.editCustomTexts",
"title": "AI Project Brief: Edit Custom Prefix/Suffix Texts"
}
],
"configuration": {
"title": "AI Project Brief",
"properties": {
"aiProjectBrief.filePatterns": {
"type": "array",
"items": {
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "File pattern in VSCode glob format"
},
"action": {
"type": "string",
"enum": [
"include",
"pathOnly",
"ignore"
],
"description": "Action to take for matching files"
}
},
"required": [
"pattern",
"action"
]
},
"default": [
{
"pattern": ".git/**",
"action": "ignore"
}
],
"description": "Specify how different file patterns should be handled"
},
"aiProjectBrief.respectGitignore": {
"type": "boolean",
"default": true,
"description": "Respect .gitignore when combining files"
},
"aiProjectBrief.customPrefixText": {
"type": "string",
"default": "",
"description": "Custom text to insert at the beginning of the combined content"
},
"aiProjectBrief.customSuffixText": {
"type": "string",
"default": "",
"description": "Custom text to insert at the end of the combined content"
}
}
}
},
"dependencies": {
"ignore": "^5.2.0",
"minimatch": "^5.1.0"
}
}