-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 765 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 765 Bytes
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
{
"name": "finance-client",
"version": "1.0.0",
"description": "AI-powered finance client: invoicing, payments, revenue tracking, and financial management",
"type": "module",
"bin": {
"finance": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"start": "node dist/cli/index.js",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@whop/sdk": "^0.0.30",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"inquirer": "^13.3.0",
"open": "^11.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}