-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 3.18 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
{
"name": "chatgpt-append",
"displayName": "ChatGPT Append",
"description": "Saves all source code files in your project to a list of text files for copying/pasting into ChatGPT. Each file is limited to a configurable max size of characters to allow pasting into the conversation.",
"version": "1.6.0",
"repository": {
"type": "git",
"url": "git+https://github.com/primaryobjects/chatgpt-append.git"
},
"publisher": "primaryobjects",
"sponsor": {
"url": "https://github.com/sponsors/primaryobjects"
},
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "chatgpt-append.build",
"title": "ChatGPT Append"
},
{
"command": "chatgpt-append.buildSingleFile",
"title": "ChatGPT Append"
}
],
"configuration": {
"title": "ChatGPT Append",
"properties": {
"chatgptAppend.maxFileSize": {
"type": "number",
"default": 2000,
"description": "Maximum file size"
},
"chatgptAppend.folderName": {
"type": "string",
"default": "my_extension_files",
"description": "Folder name"
},
"chatgptAppend.ignoreFiles": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "List of files to ignore by exact filename or wildcard"
}
}
},
"menus": {
"explorer/context": [
{
"command": "chatgpt-append.buildSingleFile",
"when": "resourceLangId == plaintext || resourceLangId == python || resourceLangId == javascript || resourceLangId == css || resourceLangId == csharp || resourceLangId == java || resourceLangId == cpp || resourceLangId == c || resourceLangId == go || resourceLangId == ruby || resourceLangId == php || resourceLangId == swift || resourceLangId == kotlin || resourceLangId == rust || resourceLangId == shellscript || resourceLangId == perl || resourceLangId == objective-c || resourceLangId == fortran || resourceLangId == r || resourceLangId == julia || resourceLangId == lua || resourceLangId == tcl || resourceLangId == haskell || resourceLangId == ocaml || resourceLangId == scheme || resourceLangId == clojure || resourceLangId == erlang || resourceLangId == lisp || resourceLangId == scala || resourceLangId == html || resourceLangId == json || resourceLangId == typescript"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.77.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.36.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
},
"dependencies": {
"minimatch": "^9.0.0"
}
}