-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.42 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
{
"name": "bice-cli",
"version": "0.0.5",
"description": "Unofficial BICE CLI. Manage your BICE accounts via terminal, REST API and more.",
"author": {
"name": "Felipe Ossandon",
"email": "fe.ossandon.u@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/felipetodev/bice-cli"
},
"keywords": [
"cli",
"mcp",
"bice",
"chile",
"agents",
"finance",
"banking",
"open-bank",
"automation"
],
"bin": {
"bice": "index.ts"
},
"module": "index.ts",
"type": "module",
"files": [
"index.ts",
"src/**/*.ts",
"README.md"
],
"scripts": {
"login": "bun src/commands/login.ts",
"logout": "bun src/commands/logout.ts",
"user": "bun src/commands/user.ts",
"whoami": "bun src/commands/whoami.ts",
"balance": "bun src/commands/balance.ts",
"products": "bun src/commands/products.ts",
"movements": "bun src/commands/movements.ts",
"transactions": "bun src/commands/transactions.ts",
"monthly-summary": "bun src/commands/monthly-summary.ts",
"portfolios-summary": "bun src/commands/portfolios-summary.ts",
"server": "bun run src/api/index.ts"
},
"dependencies": {
"@hono/zod-validator": "^0.7.6",
"chalk": "5.6.2",
"hono": "^4.12.12",
"playwright-chromium": "^1.59.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
}
}