-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.59 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
{
"name": "agentpay-gateway",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.2",
"pnpm": {
"overrides": {
"postcss": ">=8.5.10",
"ws": ">=8.21.0"
}
},
"scripts": {
"dev": "pnpm --filter @agentpay/web dev",
"build": "pnpm --filter @agentpay/shared build && pnpm --filter @agentpay/db build && pnpm --filter @agentpay/payments build && pnpm --filter @agentpay/adapters build && pnpm --filter @agentpay/agent build && pnpm --filter @agentpay/sdk build && pnpm --filter @agentpay/web build",
"typecheck": "pnpm --filter @agentpay/shared typecheck && pnpm --filter @agentpay/db typecheck && pnpm --filter @agentpay/payments typecheck && pnpm --filter @agentpay/adapters typecheck && pnpm --filter @agentpay/agent typecheck && pnpm --filter @agentpay/sdk typecheck && pnpm --filter @agentpay/web typecheck",
"test": "vitest run",
"test:watch": "vitest",
"worker:dev": "python -m uvicorn apps.worker.main:app --reload --port 8000",
"agent:demo": "tsx scripts/run-agent-demo.ts",
"smoke": "tsx scripts/smoke.ts",
"smoke:upstreams": "tsx scripts/smoke-upstreams.ts"
},
"dependencies": {
"@agentpay/adapters": "workspace:*",
"@agentpay/agent": "workspace:*",
"@agentpay/db": "workspace:*",
"@agentpay/payments": "workspace:*",
"@agentpay/shared": "workspace:*",
"@agentpay/sdk": "workspace:*"
},
"devDependencies": {
"@types/node": "latest",
"next": "latest",
"react": "latest",
"react-dom": "latest",
"tsx": "latest",
"typescript": "latest",
"vitest": "latest"
}
}