-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.83 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
{
"name": "@lemmaoracle/x402",
"version": "0.1.20",
"description": "Drop-in replacement for @x402/* with automatic Lemma discovery and proof submission",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lemmaoracle/lemma.git",
"directory": "packages/x402"
},
"homepage": "https://github.com/lemmaoracle/lemma/tree/main/packages/x402#readme",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./advanced": {
"types": "./dist/advanced/index.d.ts",
"import": "./dist/advanced/index.js"
}
},
"scripts": {
"build": "tsc --build",
"build:circuit": "bash scripts/build.sh",
"dev": "tsc --watch",
"type-check": "tsc --noEmit",
"test": "bash -c 'if [ ! -f \"build/payment_js/payment.wasm\" ]; then echo \"🔧 Circuit not built. Building circuit first...\" && npm run build:circuit; fi && node circuits/payment.test.mjs'",
"test:vitest": "vitest run",
"test:watch": "vitest",
"test:circuit": "node circuits/payment.test.mjs",
"test:circuit:comprehensive": "node circuits/payment-comprehensive.test.mjs",
"register": "tsx scripts/register-circuit.ts"
},
"dependencies": {
"@x402/core": "^2.9.0",
"@x402/evm": "^2.9.0",
"@x402/hono": "^2.9.0",
"hono": "^4.6.14",
"poseidon-lite": "^0.3.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"circom2": "^0.2.22",
"circomlib": "^2.0.5",
"dotenv": "^16.4.7",
"snarkjs": "^0.7.5",
"tsx": "^4.19.0",
"typescript": "^5.7.3",
"vitest": "^2.0.0",
"wrangler": "^3.101.0"
},
"peerDependencies": {
"@lemmaoracle/sdk": "workspace:*"
}
}