mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-22 21:15:44 +00:00
Complete rewrite of the support bot to stateless architecture: - State derived from group composition + chat history (survives restarts) - Card dashboard in team group with live status, preview, /join commands - Two-profile architecture (main + Grok) with profileMutex serialization - Grok join race condition fix via bufferedGrokInvitations - Card preview: newest-first truncation, newline sanitization, sender prefixes - Best-effort startup (invite link, group profile update) - Team group preferences: directMessages, fullDelete, commands - 122 tests across 27 suites
23 lines
548 B
JSON
23 lines
548 B
JSON
{
|
|
"name": "simplex-chat-support-bot",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@simplex-chat/types": "file:../../packages/simplex-chat-client/types/typescript",
|
|
"async-mutex": "^0.5.0",
|
|
"simplex-chat": "file:../../packages/simplex-chat-nodejs"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^1.6.1"
|
|
},
|
|
"author": "SimpleX Chat",
|
|
"license": "AGPL-3.0"
|
|
}
|