-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.79 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
{
"name": "txtcode",
"version": "0.1.0",
"description": "Remote IDE control via WhatsApp/Telegram/Discord/Slack/Teams/Signal - Code from anywhere using AI-powered messaging",
"keywords": [
"ai",
"claude",
"cli",
"code-assistant",
"discord",
"gemini",
"ide",
"messaging-ide",
"microsoft-teams",
"mobile-coding",
"openai",
"remote",
"remote-development",
"signal",
"slack",
"telegram",
"text-based-coding",
"whatsapp"
],
"license": "MIT",
"author": "",
"bin": {
"txtcode": "dist/cli/index.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run copy-data",
"copy-data": "node -e \"require('fs').cpSync('src/data', 'dist/data', {recursive: true})\"",
"dev": "tsc --watch",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepublishOnly": "npm run build",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@slack/bolt": "^4.6.0",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"botbuilder": "^4.23.3",
"chalk": "^4.1.2",
"discord.js": "^14.25.1",
"dotenv": "^16.3.1",
"gradient-string": "^3.0.0",
"keytar": "^7.9.0",
"link-preview-js": "^3.2.0",
"openai": "^6.19.0",
"qrcode-terminal": "^0.12.0",
"telegraf": "^4.15.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/qrcode-terminal": "^0.12.2",
"oxfmt": "^0.34.0",
"oxlint": "^1.49.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
},
"preferGlobal": true,
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}