-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.58 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
{
"name": "@howells/revolutcli",
"version": "0.2.0",
"description": "CLI for Revolut Business — balances, transactions, accounts. Agent-first: structured JSON output, OAuth + JWT auth, schema introspection.",
"type": "module",
"license": "MIT",
"author": "Daniel Howells <daniel.howells@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/howells/revolutcli"
},
"homepage": "https://github.com/howells/revolutcli#readme",
"keywords": [
"revolut",
"bank",
"cli",
"finance",
"agent",
"ai"
],
"os": [
"darwin",
"linux"
],
"bin": {
"revolutcli": "./dist/index.js",
"revolutcli-mcp": "./dist/mcp.js"
},
"files": [
"dist",
"AGENTS.md",
"README.md",
"LICENSE",
".mcp.json"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:mcp": "tsx src/mcp.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "howells-lint",
"format": "howells-format",
"prepublishOnly": "pnpm build",
"prepare": "howells-husky"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,jsonc,css}": "howells-format"
},
"devDependencies": {
"@howells/husky": "^0.1.0",
"@howells/lint": "^0.1.3",
"@howells/typescript-config": "^0.1.2",
"@types/node": "^22.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@howells/cli": "^0.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
}
}