-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 801 Bytes
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
{
"name": "telegram-lsp-backend",
"version": "0.6.0",
"description": "Backend server for telegram.nvim — a Telegram TUI client for Neovim",
"keywords": ["telegram", "neovim", "neovim-plugin", "tdlib", "tdjson", "tui", "chat", "messaging", "telegram-client"],
"scripts": {
"start": "tsx src/server.ts",
"pretest": "pgrep -f 'tsx src/server\\.ts' | xargs -r kill 2>/dev/null; true",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"dotenv": "^16.4.0",
"express": "^4.19.0",
"tdl": "^8.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^26.1.1",
"@types/ws": "^8.18.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}