-
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) · 1.66 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.66 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": "@devessentials/zfy-cli",
"version": "0.1.0",
"description": "Third-party CLI, SDK, and MCP server for the Zeffy API — donation reports for nonprofits and AI agents.",
"keywords": [
"zeffy",
"nonprofit",
"donations",
"fundraising",
"cli",
"mcp",
"ai-agents"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/EssentialsDev/zfy-cli.git"
},
"bugs": "https://github.com/EssentialsDev/zfy-cli/issues",
"homepage": "https://github.com/EssentialsDev/zfy-cli#readme",
"publishConfig": {
"access": "public"
},
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.33.0",
"bin": {
"zfy": "./dist/cli/index.js",
"zfy-mcp": "./dist/mcp/server.js"
},
"main": "./dist/sdk/index.js",
"types": "./dist/sdk/index.d.ts",
"exports": {
".": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/sdk/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build && pnpm test && pnpm typecheck"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"commander": "^12.1.0",
"csv-stringify": "^6.5.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"pdfkit": "^0.15.1",
"picocolors": "^1.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/pdfkit": "^0.13.9",
"msw": "^2.7.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}