-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "richfolio",
"version": "1.5.0",
"description": "A zero-maintenance morning email digest for your investment portfolio. Set your target allocations once, get a daily briefing with allocation gaps, buy signals, and relevant news — automatically via GitHub Actions.",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx src/index.ts",
"weekly": "tsx src/index.ts --weekly",
"intraday": "tsx src/index.ts --intraday",
"refresh": "tsx src/index.ts --refresh",
"typecheck": "tsc --noEmit",
"test": "node --import=tsx/esm --test test/util.test.ts",
"smoke": "npx tsx smoke/smoke-fx.ts && npx tsx smoke/smoke-conversion.ts && npx tsx smoke/smoke-money-format.ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/furic/richfolio.git"
},
"keywords": [
"portfolio",
"investing",
"stocks",
"etf",
"allocation",
"rebalancing",
"ai",
"gemini",
"technical-analysis",
"email",
"telegram",
"github-actions"
],
"author": "furic",
"license": "ISC",
"bugs": {
"url": "https://github.com/furic/richfolio/issues"
},
"homepage": "https://github.com/furic/richfolio#readme",
"dependencies": {
"@google/genai": "^1.42.0",
"dotenv": "^17.3.1",
"resend": "^6.9.2",
"yahoo-finance2": "^3.13.0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"prettier": "^3.3.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}