-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "preflight-asp",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"migrate": "tsx src/db/migrate.ts",
"generate:openapi": "tsx scripts/generate-openapi.ts",
"selftest:release": "tsx scripts/selftest-release.ts",
"benchmark:v5": "tsx scripts/generate-v5-benchmark.ts",
"paid:v5": "tsx scripts/run-v5-paid.ts",
"web:lint": "npm run lint --prefix web",
"web:build": "npm run build --prefix web",
"cli:build": "npm run build --prefix packages/cli"
},
"dependencies": {
"@fastify/rate-limit": "^11.1.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@okxweb3/x402-core": "^0.1.0",
"@okxweb3/x402-evm": "^0.2.1",
"@okxweb3/x402-fastify": "^0.1.1",
"@okxweb3/x402-fetch": "^0.1.0",
"fastify": "^5.10.0",
"pino": "^10.3.1",
"postgres": "^3.4.9",
"ulid": "^3.0.2",
"viem": "^2.55.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.10.0",
"tsx": "^4.23.0",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"overrides": {
"fast-uri": "^3.1.4",
"fast-json-stringify": {
"fast-uri": "^4.1.1"
}
}
}