-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
138 lines (138 loc) · 3.22 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "prompt-tower",
"displayName": "prompt-tower",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/backnotprop/prompt-tower"
},
"author": {
"name": "Michael Ramos",
"url": "https://github.com/backnotprop"
},
"publisher": "backnotprop",
"icon": "icon.png",
"description": "A tool that helps you build prompts with lots of code blocks in them.",
"version": "0.1.12",
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "prompttower.show",
"title": "Show Prompt Tower"
},
{
"command": "prompttower.sendMethod",
"title": "Prompt Tower: Send Class Method"
},
{
"command": "prompttower.sendClass",
"title": "Prompt Tower: Send Class"
},
{
"command": "prompttower.sendFunction",
"title": "Prompt Tower: Send Function"
},
{
"command": "prompttower.sendText",
"title": "Prompt Tower: Send Selection"
},
{
"command": "prompttower.sendFile",
"title": "Prompt Tower: Send File"
},
{
"command": "prompttower.selectDirectory",
"title": "Prompt Tower: Enable Directory Selection"
}
],
"keybindings": [
{
"command": "prompttower.show",
"key": "ctrl+shift+0",
"mac": "cmd+shift+0"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "prompttower",
"title": "Prompt Tower",
"icon": "media/icon.svg"
}
]
},
"views": {
"prompttower": [
{
"id": "prompttowerPanel",
"name": "Prompt Tower"
}
]
},
"menus": {
"editor/context": [
{
"submenu": "prompttowerMenu",
"group": "9_cutcopypaste",
"when": "editorTextFocus"
}
],
"prompttowerMenu": [
{
"command": "prompttower.sendMethod"
},
{
"command": "prompttower.sendClass"
},
{
"command": "prompttower.sendFunction"
},
{
"command": "prompttower.sendText"
},
{
"command": "prompttower.sendFile"
},
{
"command": "prompttower.selectDirectory"
}
]
},
"submenus": [
{
"id": "prompttowerMenu",
"label": "Prompt Tower"
}
]
},
"activationEvents": [],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && mkdir -p out/prompt-tower && cp -r prompt-tower/release out/prompt-tower/release",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"dependencies": {
"minimatch": "^9.0.4"
}
}