-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
202 lines (202 loc) · 5.36 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
{
"name": "app-developer-copilot",
"displayName": "App Developer Copilot",
"description": "App developer agent for building mobile apps",
"icon": "media/icon.jpeg",
"version": "1.0.4",
"preview": false,
"repository": {
"type": "git",
"url": "https://github.com/sindujaramaraj/app-developer-copilot.git"
},
"bugs": {
"url": "https://github.com/sindujaramaraj/app-developer-copilot/issues"
},
"homepage": "https://github.com/sindujaramaraj/app-developer-copilot",
"license": "MIT",
"publisher": "sindujaramaraj",
"author": {
"name": "Sinduja Ramaraj",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.93.1"
},
"categories": [
"AI",
"Chat",
"Programming Languages",
"Other"
],
"keywords": [
"app",
"developer",
"copilot",
"expo",
"react-native",
"mobile",
"Claude",
"OpenRouter",
"Anthropic",
"code",
"agent"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "App Developer Copilot",
"properties": {
"app-developer-copilot.useOwnModel": {
"order": 0,
"type": "boolean",
"default": false,
"description": "Use your own model"
},
"app-developer-copilot.apiProvider": {
"order": 1,
"type": "string",
"enum": [
"anthropic",
"openai",
"openrouter"
],
"enumItemLabels": [
"Anthropic",
"OpenAI",
"OpenRouter"
],
"default": "Anthropic",
"description": "API Provider"
},
"app-developer-copilot.apiKey": {
"order": 2,
"type": [
"securestring",
"null"
],
"default": null,
"description": "Provider API Key"
},
"app-developer-copilot.model": {
"order": 3,
"type": "string",
"enum": [
"claude-3-5-sonnet-latest",
"claude-3-5-haiku-latest",
"claude-3-opus-latest",
"gpt-4o",
"gpt-4o-mini",
"o1",
"o1-mini",
"o1-preview",
"openrouter/auto",
"anthropic/claude-3.5-sonnet",
"anthropic/claude-3.5-haiku",
"anthropic/claude-3-opus",
"openai/gpt-4o",
"openai/gpt-4o-mini",
"openai/o1",
"openai/o1-mini",
"openai/o1-preview"
],
"enumItemLabels": [
"Anthropic - Claude 3.5 Sonnet Latest",
"Anthropic - Claude 3.5 Haiku Latest",
"Anthropic - Claude 3 Opus Latest",
"OpenAI - GPT-4o",
"OpenAI - GPT-4o Mini",
"OpenAI - O1",
"OpenAI - O1 Mini",
"OpenAI - O1 Preview",
"OpenRouter - Auto",
"OpenRouter - Claude 3.5 Sonnet",
"OpenRouter - Claude 3.5 Haiku",
"OpenRouter - Claude 3 Opus",
"OpenRouter - GPT-4o",
"OpenRouter - GPT-4o Mini",
"OpenRouter - o1",
"OpenRouter - o1 Mini",
"OpenRouter - o1 Preview"
],
"description": "Model"
}
}
},
"commands": [
{
"command": "app-developer.mobile.create",
"title": "App Developer: Create a mobile app"
}
],
"views": {
"explorer": [
{
"type": "webview",
"id": "techStack.webview",
"name": "Tech Stack Configuration"
}
]
},
"chatParticipants": [
{
"id": "app-developer.mobile",
"fullName": "Mobile App Developer",
"name": "app-developer-mobile",
"description": "I will help you build mobile apps",
"isSticky": true,
"commands": [
{
"name": "create",
"description": "What would you like to create?"
},
{
"name": "run",
"description": "Run the app"
},
{
"name": "help",
"description": "Get help with using the extension"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.0.5",
"@ai-sdk/openai": "^1.0.8",
"@openrouter/ai-sdk-provider": "^0.0.6",
"@vscode/extension-telemetry": "^0.9.8",
"ai": "^4.0.18",
"openai": "^4.76.3"
}
}