paisa-mcp 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +45315 -0
- package/dist/index.js.map +319 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "paisa-mcp",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Paisa MCP server — personal finance tools for AI assistants",
|
|
5
|
+
"bin": {
|
|
6
|
+
"paisa-mcp": "dist/index.js"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm --sourcemap",
|
|
16
|
+
"gen:tools-doc": "bun src/tools-doc.ts",
|
|
17
|
+
"start": "node dist/index.js",
|
|
18
|
+
"test": "bun test",
|
|
19
|
+
"typecheck": "tsc --noEmit"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
23
|
+
"@scure/bip39": "^2.2.0",
|
|
24
|
+
"axios": "^1.16.1",
|
|
25
|
+
"hash-wasm": "^4.12.0",
|
|
26
|
+
"zod": "^3.25.17"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@paisa/reconciliation": "workspace:*",
|
|
30
|
+
"@paisa/types": "workspace:*",
|
|
31
|
+
"@types/bun": "^1.3.14",
|
|
32
|
+
"typescript": "^5.8.3"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=20.0.0"
|
|
36
|
+
}
|
|
37
|
+
}
|