forked from tomfunk/fungible
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.47 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
{
"name": "fungible",
"version": "0.0.0-nobumpnecessary",
"description": "Terminal UI for personal finance — Plaid sync, CSV import, AI assistant, and MCP server",
"type": "module",
"homepage": "https://github.com/tomfunk/fungible",
"author": "",
"keywords": [],
"main": "out/main/index.js",
"scripts": {
"dev": "node --import tsx/esm tui/index.tsx",
"gui": "electron-vite dev",
"gui:demo": "FUNGIBLE_DEMO=1 electron-vite dev",
"gui:build": "electron-vite build",
"gui:dist": "electron-vite build && electron-builder",
"gui:dist:mac": "electron-vite build && electron-builder --mac",
"gui:dist:win": "electron-vite build && electron-builder --win",
"gui:dist:linux": "electron-vite build && electron-builder --linux",
"demo": "FUNGIBLE_DATA_DIR=$HOME/.fungible-demo node --import tsx/esm tui/index.tsx --demo",
"setup": "node --import tsx/esm tui/index.tsx --setup",
"link": "node --import tsx/esm scripts/link.ts",
"import-csv": "node --import tsx/esm scripts/import-csv.ts",
"seed-rules": "node --import tsx/esm scripts/seed-rules.ts",
"mcp": "node --import tsx/esm mcp/server.ts",
"api": "node --import tsx/esm api/server.ts",
"typecheck": "tsc --noEmit && tsc --noEmit -p gui/renderer",
"test": "~/.nvm/versions/node/v22.22.3/bin/node ./node_modules/.bin/vitest run",
"test:watch": "~/.nvm/versions/node/v22.22.3/bin/node ./node_modules/.bin/vitest",
"test:e2e": "electron-vite build && playwright test"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"bin": {
"fungible": "bin/fungible"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.100.1",
"@libsql/client": "^0.17.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"dotenv": "^17.4.2",
"ink": "^7.0.5",
"openai": "^6.41.0",
"plaid": "^42.2.0",
"react": "^19.2.7",
"tsx": "^4.22.4",
"zod": "^4.4.3"
},
"overrides": {
"@noble/hashes": "1.8.0"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"electron": "^43.0.0",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"ink-testing-library": "^4.0.0",
"jsdom": "^29.1.1",
"react-dom": "^19.2.7",
"recharts": "^3.9.1",
"typescript": "^6.0.3",
"vite": "^7.3.5",
"vitest": "^3.2.4"
}
}