-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@hiero-hackers/hiero-x402",
"version": "0.1.0",
"description": "x402 on Hiero with verifiable settlement and receipts. The official @x402 packages move the money; this repo proves it moved — an independent, facilitator-free settlement check and a receipt artifact for every payment an agent makes. Prototype.",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/hiero-hackers/hiero-x402.git"
},
"bugs": "https://github.com/hiero-hackers/hiero-x402/issues",
"homepage": "https://github.com/hiero-hackers/hiero-x402#readme",
"engines": {
"node": ">=20.0.0"
},
"sideEffects": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"hedera",
"hiero",
"x402",
"payments",
"receipts",
"micropayments"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:fuzz": "vitest run test/fuzz.test.ts",
"lint": "eslint src demo test",
"lint:fix": "eslint src demo test --fix",
"format": "prettier --write src demo test *.md research/*.md *.js *.ts",
"format:check": "prettier --check src demo test *.md research/*.md *.js *.ts",
"verify": "npm run typecheck && npm run lint && npm run format:check && npm run test:coverage",
"demo": "tsx --env-file=.env demo/up.ts",
"facilitator": "tsx --env-file=.env demo/facilitator.ts",
"server": "tsx --env-file=.env demo/server.ts",
"e2e": "tsx --env-file=.env demo/agent.ts",
"audit": "tsx --env-file=.env demo/audit.ts",
"screenshots": "node scripts/screenshots.mjs",
"provenance": "tsx demo/provenance.ts"
},
"dependencies": {
"@hiero-hackers/hiero-payment-requests": "^0.1.3",
"@hiero-hackers/hiero-receipts": "^0.2.2",
"@hiero-hackers/streams-node": "^0.2.0",
"@hiero-ledger/sdk": "2.85.0",
"@hono/node-server": "^2.0.12",
"@x402/core": "2.19.0",
"@x402/fetch": "2.19.0",
"@x402/hedera": "2.19.0",
"@x402/hono": "2.19.0",
"@x402/paywall": "2.19.0",
"hono": "^4.12.34",
"protobufjs": "^8.7.1"
},
"overrides": {
"@grpc/grpc-js": "^1.14.4",
"axios": "^1.19.0",
"bn.js@^4.0.0": "^4.12.3",
"protobufjs@^8.0.0": "^8.7.1",
"uuid@<11.1.1": "^11.1.1",
"ws": "^8.21.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-security": "^4.0.1",
"fast-check": "^4.9.0",
"globals": "^17.8.0",
"prettier": "^3.9.5",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.64.0",
"vitest": "^4.0.0"
}
}