forked from harystyleseze/careguard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.62 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
{
"name": "careguard",
"version": "1.0.0",
"description": "AI agent for elderly care financial coordination on Stellar",
"main": "index.js",
"scripts": {
"setup": "node --import tsx scripts/setup-wallets.ts",
"pharmacy-api": "node --import tsx services/pharmacy-api/server.ts",
"bill-audit-api": "node --import tsx services/bill-audit-api/server.ts",
"drug-api": "node --import tsx services/drug-interaction-api/server.ts",
"agent": "node --import tsx agent/server.ts",
"pharmacy-payment": "node --import tsx services/pharmacy-payment/server.ts",
"services": "concurrently --kill-others-on-fail \"npm run pharmacy-api\" \"npm run bill-audit-api\" \"npm run drug-api\" \"npm run pharmacy-payment\"",
"start": "node --experimental-strip-types --experimental-transform-types --no-warnings server.ts",
"dev": "node --experimental-strip-types --experimental-transform-types --no-warnings server.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@stellar/mpp": "^0.4.0",
"@stellar/stellar-sdk": "^14.6.1",
"@x402/core": "^2.10.0",
"@x402/express": "^2.10.0",
"@x402/fetch": "^2.10.0",
"@x402/stellar": "^2.10.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mppx": "^0.4.12",
"openai": "^6.34.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^2.1.8"
}
}