-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "boz",
"version": "2.1.1",
"description": "Open-source AI market analyzer that combines real-time data, technical indicators, macro context, news, and sentiment into structured insights.",
"main": "dist/main.js",
"bin": {
"boz": "./dist/main.js"
},
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"dev:cli": "tsx src/main.ts",
"ping": "node dist/utils/ping.js",
"build:cli": "tsc && node scripts/install-global.js",
"start:cli": "node dist/main.js",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [
"ai",
"market-analysis",
"stocks",
"trading",
"technical-indicators",
"sentiment",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/AlGhozaliRamadhan/boz.git"
},
"bugs": {
"url": "https://github.com/AlGhozaliRamadhan/boz/issues"
},
"homepage": "https://github.com/AlGhozaliRamadhan/boz#readme",
"author": "AGR",
"license": "ISC",
"type": "module",
"dependencies": {
"ajv": "^8.17.1",
"axios": "^1.17.0",
"dotenv": "^17.4.2",
"isomorphic-dompurify": "^3.16.0",
"marked": "^18.0.5",
"marked-terminal": "^7.3.0",
"next": "^16.2.9",
"openai": "^6.42.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rss-parser": "^3.13.0",
"technicalindicators": "^3.1.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"yahoo-finance2": "^3.15.2"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "^25.9.3",
"@types/react": "19.2.17",
"@vitest/coverage-v8": "^4.1.5",
"postcss": "^8.5.15",
"vitest": "^4.1.8"
},
"overrides": {
"postcss": "^8.5.15",
"marked-terminal": {
"marked": "$marked"
}
}
}