-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.26 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@toreleon/azoth",
"version": "0.1.3",
"description": "AI stock trading assistant CLI for Vietnam equity research, portfolio analysis, backtesting, paper trading, and DNSE broker workflows",
"type": "module",
"license": "MIT",
"keywords": [
"vietnam stock market",
"ai trading assistant",
"equity research",
"stock analysis",
"portfolio management",
"backtesting",
"paper trading",
"terminal cli",
"dnse",
"hose",
"hnx",
"upcom"
],
"repository": {
"type": "git",
"url": "git+https://github.com/toreleon/Azoth.git"
},
"bugs": {
"url": "https://github.com/toreleon/Azoth/issues"
},
"homepage": "https://github.com/toreleon/Azoth#readme",
"engines": {
"node": ">=20"
},
"bin": {
"azoth": "dist/src/cli/azoth.js"
},
"files": [
"dist/src",
"assets",
"docs",
"ROADMAP.md",
"README.md",
"package.json"
],
"scripts": {
"azoth": "tsx src/cli/azoth.tsx",
"build": "rm -rf dist && tsc -p tsconfig.json && chmod +x dist/src/cli/azoth.js",
"changeset": "changeset",
"changeset:version": "changeset version",
"prepack": "pnpm build",
"release": "pnpm build && pnpm publish --access public --provenance",
"smoke:packaged": "pnpm build && node dist/src/cli/azoth.js --version",
"start": "node dist/src/cli/azoth.js",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"better-sqlite3": "^11.5.0",
"cheerio": "^1.0.0",
"ink": "^5.0.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"technicalindicators": "^3.1.0",
"undici": "^6.20.0",
"yaml": "^2.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.7.0",
"@types/react": "^18.3.12",
"ink-testing-library": "^4.0.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}