-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1010 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
{
"name": "paygate",
"version": "0.1.0",
"private": true,
"description": "Paygate — x402 payment infrastructure for AI agents. Charge agents in stablecoins, on-chain, with no humans in the loop.",
"license": "MIT",
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "turbo run test -- --watch",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"db:generate": "pnpm --filter @paygate/db generate",
"db:migrate": "pnpm --filter @paygate/db migrate",
"db:studio": "pnpm --filter @paygate/db studio",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^22.10.0",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
}
}