-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 4.14 KB
/
package.json
File metadata and controls
164 lines (164 loc) · 4.14 KB
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
{
"name": "codegen-ide",
"displayName": "Codegen IDE",
"description": "VSCode Extension for Codegen - Create and manage async code agents",
"version": "0.1.1",
"publisher": "codegen",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"keywords": [
"codegen",
"ai",
"agent",
"code generation",
"automation"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "codegen.showAgentRuns",
"title": "Show Agent Runs",
"category": "Codegen"
},
{
"command": "codegen.createAgent",
"title": "Create New Agent",
"category": "Codegen"
},
{
"command": "codegen.refreshAgentRuns",
"title": "Refresh Agent Runs",
"category": "Codegen"
},
{
"command": "codegen.login",
"title": "Login",
"category": "Codegen"
},
{
"command": "codegen.logout",
"title": "Logout",
"category": "Codegen"
},
{
"command": "codegen.openAgentRun",
"title": "Open Agent Run",
"category": "Codegen"
}
],
"views": {
"explorer": [
{
"id": "codegenAgentRuns",
"name": "Codegen Agent Runs",
"when": "codegen.authenticated"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "codegen",
"title": "Codegen",
"icon": "$(robot)"
}
]
},
"views": {
"codegen": [
{
"id": "codegenAgentRuns",
"name": "Recent Agent Runs",
"when": "codegen.authenticated"
},
{
"id": "codegenWelcome",
"name": "Welcome",
"when": "!codegen.authenticated"
}
]
},
"viewsWelcome": [
{
"view": "codegenWelcome",
"contents": "Welcome to Codegen! 🤖\n\nTo get started, you need to authenticate with your Codegen account.\n\n[Login to Codegen](command:codegen.login)\n\nOnce logged in, you'll be able to:\n• View your recent agent runs\n• Create new agents\n• Manage your code automation\n\nVisit [codegen.com](https://codegen.com) to learn more."
}
],
"menus": {
"view/title": [
{
"command": "codegen.refreshAgentRuns",
"when": "view == codegenAgentRuns",
"group": "navigation"
},
{
"command": "codegen.createAgent",
"when": "view == codegenAgentRuns",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "codegen.openAgentRun",
"when": "view == codegenAgentRuns && viewItem == agentRun"
}
]
},
"configuration": {
"title": "Codegen",
"properties": {
"codegen.apiEndpoint": {
"type": "string",
"default": "https://api.codegen.com",
"description": "Codegen API endpoint"
},
"codegen.autoRefresh": {
"type": "boolean",
"default": true,
"description": "Automatically refresh agent runs"
},
"codegen.refreshInterval": {
"type": "number",
"default": 30,
"description": "Auto-refresh interval in seconds"
},
"codegen.webUrl": {
"type": "string",
"default": "https://codegen.com",
"description": "Codegen web URL for browser authentication"
}
}
}
},
"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/vscode": "^1.74.0",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/codegen-sh/codegen-ide.git"
}
}