-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "bybit-trading-bot",
"version": "0.1.0",
"description": "Telegram-to-Bybit automated trading bot (Step 1)",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"main": "dist/presentation/main.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"start": "node dist/presentation/main.js",
"dev": "tsx src/presentation/main.ts",
"preflight": "tsx src/presentation/preflight.ts",
"telegram-login": "tsx src/presentation/generateTelegramSession.ts",
"lint": "eslint src tests",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"better-sqlite3": "^12.11.1",
"dotenv": "^16.4.5",
"pino": "^9.5.0",
"telegram": "^2.26.22",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.9.0",
"eslint": "^9.14.0",
"pino-pretty": "^11.3.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
}
}