-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.04 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
73
74
75
76
77
78
79
80
{
"name": "express402-yellow-mcp",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc --project tsconfig.build.json",
"start": "node build/index.js",
"demo": "tsx scripts/ensure-redis.ts && tsx src/agentkit-demo.ts",
"demo:client": "tsx src/client-demo.ts",
"demo:siwx": "tsx scripts/ensure-redis.ts && tsx src/siwx-demo.ts",
"demo:agentkit": "tsx scripts/ensure-redis.ts && tsx src/agentkit-demo.ts",
"demo:sentifi": "tsx src/sentifi/server/demo.ts",
"demo:sentifi-new": "tsx src/sentifi/server/demo.ts",
"suifi": "tsx scripts/suifi-demo.ts",
"suifi-demo": "tsx scripts/suifi-demo.ts",
"suifi-yellow": "tsx scripts/suifi-yellow-demo.ts",
"suifi-auto-eval": "tsx scripts/suifi-auto-eval-demo.ts",
"suifi-evaluate": "tsx scripts/suifi-evaluate.ts",
"suifi-metrics": "tsx scripts/suifi-metrics.ts",
"demo:production": "tsx scripts/simple-production-demo.ts",
"ensure-redis": "tsx scripts/ensure-redis.ts",
"e2e:paid-tools": "tsx src/e2e-paid-tools.ts",
"e2e:paid-tools:ci": "tsx src/e2e-paid-tools.ts",
"merchant-spend": "tsx src/merchant-spend.ts",
"merchant-offramp": "tsx src/merchant-offramp.ts",
"agent-onramp": "tsx src/agent-onramp.ts",
"check-production": "tsx scripts/check-production-state.ts",
"app-session-init": "tsx src/app-session-init.ts",
"minimal-session": "tsx src/minimal-session-demo.ts",
"generate-wallet": "tsx scripts/generate-agent-wallet.ts",
"setup": "tsx scripts/setup-dev.ts",
"test": "tsx scripts/ensure-redis.ts && vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/*.test.ts",
"test:e2e": "vitest run tests/*-e2e.test.ts",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"format": "prettier --write src/**/*.ts tests/**/*.ts",
"format:check": "prettier --check src/**/*.ts tests/**/*.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@coinbase/agentkit": "^0.10.4",
"@coinbase/agentkit-model-context-protocol": "^0.2.0",
"@erc7824/nitrolite": "^0.5.3",
"@lifi/sdk": "^3.15.4",
"@modelcontextprotocol/sdk": "^1.9.0",
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "^2.3.0",
"@upstash/redis": "^1.34.3",
"chalk": "^5.6.2",
"dotenv": "^16.4.7",
"dotenv-cli": "^7.4.2",
"ioredis": "^5.4.1",
"json-stable-stringify": "^1.1.1",
"node-cron": "^4.2.1",
"siwe": "^2.3.2",
"viem": "^2.45.1",
"ws": "^8.18.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}