-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.32 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.32 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
{
"name": "sentimeter",
"version": "1.0.0",
"module": "index.ts",
"type": "module",
"description": "A sentiment-based stock trading bot for the Indonesian Stock Exchange (IHSG/IDX). Sentimeter crawls financial news from Indonesian portals, extracts stock tickers using AI, fetches market data, and generates daily buy recommendations with entry prices, stop losses, and target prices.",
"private": true,
"author": {
"name": "snowfluke"
},
"scripts": {
"dev": "bun run scripts/dev.ts",
"dev:api": "bun run --watch src/api/index.ts",
"dev:web": "bun run --cwd web dev",
"build:api": "bun build src/api/index.ts --outdir=dist --target=bun",
"build:web": "bun run --cwd web build",
"build": "bun run build:web && bun run build:api",
"serve": "bun run dist/index.js",
"job:morning": "bun run src/jobs/daily-analysis.ts --schedule=morning",
"job:evening": "bun run src/jobs/daily-analysis.ts --schedule=evening",
"db:migrate": "bun run src/lib/database/migrate.ts",
"typecheck": "bunx tsc --noEmit && bunx tsc --noEmit --project web/tsconfig.json"
},
"dependencies": {
"cheerio": "^1.0.0",
"openai": "^6.22.0",
"yahoo-finance2": "^3.13.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}