-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 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
{
"name": "finsight",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Local-first, AI-friendly personal portfolio tracker. Plain-text files are the source of truth; every command outputs JSON for AI tools.",
"keywords": [
"portfolio",
"personal-finance",
"investment-tracker",
"net-worth",
"yfinance",
"ai-friendly",
"local-first",
"vault",
"obsidian",
"cli"
],
"homepage": "https://github.com/ApeCodeAI/finsight#readme",
"bugs": "https://github.com/ApeCodeAI/finsight/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ApeCodeAI/finsight.git"
},
"license": "Apache-2.0",
"author": "ApeCode.ai and FinSight contributors (https://apecode.ai)",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm -r --parallel exec tsc -b",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"demo": "node scripts/demo.mjs",
"demo:zh": "node scripts/demo.mjs zh",
"dev:web": "pnpm --filter @finsight/web dev"
},
"engines": { "node": ">=22" }
}