-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (82 loc) · 1.99 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
{
"name": "prompt-context-builder-plugin",
"displayName": "Prompt Context Builder",
"description": "plugin of prompt-context-builder(Based on project engineering files and other information, automatically generate context related to tasks to save the cost of writing prompt words.)",
"version": "0.2.6",
"publisher": "jtong",
"icon": "media/custom-explorer-icon.png",
"repository": "https://github.com/jtong/prompt_builder_vscode_plugin",
"engines": {
"vscode": "^1.74.0"
},
"activationEvents": [],
"categories": [
"Machine Learning"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Prompt Context Builder Configuration",
"properties": {
"promptContextBuilderPlugin.generateOutputToClipboard": {
"type": "string",
"enum": [
"none",
"text",
"path"
],
"default": "text",
"description": "Whether to copy the output to clipboard. 'none' for no output, 'text' for text output, 'path' for copied file path."
},
"promptContextBuilderPlugin.generateAllTemplate": {
"type": "string",
"enum": [
"xml",
"markdown"
],
"default": "xml",
"description": "template for Generate All Code Context command."
}
}
},
"commands": [
{
"command": "initializeConfigFile",
"title": "Init Config File"
},
{
"command": "generateAllCodeContext",
"title": "Generate All Code Context"
},
{
"command": "updateContext",
"title": "Ex: New Thread with New Context"
}
],
"viewsContainers": {
"activitybar": [
]
},
"views": {
},
"menus": {
"view/title": [
]
}
},
"scripts": {
"package": "webpack --mode development"
},
"devDependencies": {
"@types/vscode": "^1.73.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.6.8",
"handlebars": "^4.7.8",
"isomorphic-git": "^1.25.6",
"js-yaml": "^4.1.0",
"prompt-context-builder": "^1.2.2"
}
}