-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 4.35 KB
/
package.json
File metadata and controls
157 lines (157 loc) · 4.35 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
{
"name": "cursor-autopilot-local",
"publisher": "local",
"icon": "autopilot_icon.jpg",
"displayName": "Cursor Autopilot (Local Fork)",
"description": "Local fork — Cursor chat through Telegram/Feishu/Email for remote collaboration",
"version": "0.1.0",
"engines": {
"vscode": "^1.99.0"
},
"categories": [
"AI",
"Chat"
],
"Issues": {
"url": "https://github.com/j0ntz/cursor-autopilot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/j0ntz/cursor-autopilot.git"
},
"homepage": "https://github.com/j0ntz/cursor-autopilot",
"keywords": [
"cursor",
"ai",
"autopilot",
"telegram",
"remote",
"coding"
],
"activationEvents": [
"onStartupFinished",
"onCommand:cursorInject.send",
"onCommand:autopilot.test"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cursorInject.send",
"title": "Inject text into Cursor Chat"
},
{
"command": "autopilot.test",
"title": "Test Autopilot Injection"
}
],
"configuration": {
"title": "Cursor Autopilot",
"properties": {
"autopilot.enabled": {
"type": "boolean",
"default": false,
"description": "Enable/disable autopilot framework"
},
"autopilot.adapters": {
"type": "array",
"default": [
"telegram"
],
"items": {
"type": "string",
"enum": ["telegram", "email", "feishu"]
},
"description": "Active adapters for inbound message polling"
},
"autopilot.telegram.token": {
"type": "string",
"default": "",
"description": "Telegram bot token (from @BotFather)"
},
"autopilot.telegram.chatId": {
"type": "string",
"default": "",
"description": "Telegram chat ID to send/receive messages"
},
"autopilot.email.host": {
"type": "string",
"default": "smtp.gmail.com",
"description": "SMTP host for email adapter"
},
"autopilot.email.port": {
"type": "number",
"default": 587,
"description": "SMTP port (587 for STARTTLS, 465 for SSL)"
},
"autopilot.email.secure": {
"type": "boolean",
"default": false,
"description": "Use SSL/TLS (true for port 465, false for STARTTLS on 587)"
},
"autopilot.email.user": {
"type": "string",
"default": "",
"description": "Email address for SMTP authentication"
},
"autopilot.email.pass": {
"type": "string",
"default": "",
"description": "Email password or app-specific password"
},
"autopilot.email.to": {
"type": "string",
"default": "",
"description": "Recipient email address"
},
"autopilot.feishu.appId": {
"type": "string",
"default": "",
"description": "Feishu/Lark app ID"
},
"autopilot.feishu.appSecret": {
"type": "string",
"default": "",
"description": "Feishu/Lark app secret"
},
"autopilot.feishu.useWebhook": {
"type": "boolean",
"default": false,
"description": "Use webhook mode instead of WebSocket for Feishu"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.53.0",
"@types/express": "^5.0.3",
"axios": "^1.10.0",
"express": "^5.1.0",
"imap": "^0.8.19",
"mailparser": "^3.7.4",
"node-telegram-bot-api": "^0.66.0",
"nodemailer": "^6.9.0",
"socks-proxy-agent": "^8.0.5"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.8",
"@types/node-telegram-bot-api": "^0.64.0",
"@types/nodemailer": "^6.4.0",
"@types/vscode": "1.99.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.25.1",
"typescript": "^5.8.3"
}
}