-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.97 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
{
"name": "intentfence-service",
"version": "0.16.0",
"private": true,
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "vinext dev",
"build": "vinext build",
"start": "vinext start",
"test": "npm run build && node --experimental-strip-types --test tests/*.test.mjs",
"test:protocol": "node --experimental-strip-types --test tests/receipt-crypto.test.mjs",
"sdk:check": "tsc -p sdk/typescript/tsconfig.json && python -m py_compile sdk/python/intentfence/__init__.py",
"mcp:stdio": "node --experimental-strip-types scripts/glama-mcp-server.mjs",
"smoke:mcp:docker": "node scripts/smoke-stdio-mcp.mjs --docker",
"smoke:mcp:stdio": "node scripts/smoke-stdio-mcp.mjs",
"smoke:protocol": "node --experimental-strip-types scripts/smoke-protocol.mjs",
"lint": "eslint . --ignore-pattern dist --ignore-pattern .next --ignore-pattern work --ignore-pattern outputs"
},
"dependencies": {
"@coinbase/x402": "2.1.0",
"@payai/facilitator": "^2.4.3",
"@x402/core": "^2.18.0",
"@x402/evm": "^2.18.0",
"@x402/extensions": "^2.18.0",
"@x402/next": "^2.18.0",
"drizzle-orm": "0.45.2",
"next": "16.2.11",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.47.0",
"@cloudflare/workers-types": "^5.20260713.1",
"@modelcontextprotocol/sdk": "1.30.0",
"@tailwindcss/postcss": "4.2.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"@vitejs/plugin-rsc": "0.5.26",
"eslint": "9.39.4",
"eslint-config-next": "16.2.6",
"react-server-dom-webpack": "19.2.8",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"vinext": "0.0.50",
"vite": "^8.1.4",
"wrangler": "^4.110.0",
"zod": "^4.4.3"
},
"overrides": {
"axios": "1.19.0",
"fast-uri": "3.1.4",
"postcss": "8.5.23",
"sharp": "0.35.3",
"ws": "8.21.0"
},
"type": "module"
}