-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "@cablate/banini-tracker",
"version": "2.0.19",
"description": "巴逆逆反指標追蹤器 — 常駐排程 + CLI 雙模式",
"type": "module",
"bin": {
"banini-tracker": "dist/cli.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"dry": "tsx src/index.ts --dry",
"market": "tsx src/index.ts --max-posts=1",
"evening": "tsx src/index.ts --max-posts=3",
"cron": "tsx src/index.ts --cron",
"cli": "tsx src/cli.ts",
"build": "tsc",
"start": "node dist/index.js --cron",
"prepublishOnly": "npm run build"
},
"keywords": [
"banini",
"reverse-indicator",
"facebook",
"apify",
"telegram",
"claude"
],
"author": "cablate",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^12.8.0",
"commander": "^13.0.0",
"dotenv": "^16.4.0",
"groq-sdk": "^1.1.2",
"node-cron": "^4.2.1",
"openai": "^4.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.0.0",
"@types/node-cron": "^3.0.11",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
},
"files": [
"dist"
]
}