-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "x402unified",
"version": "1.0.0",
"description": "A unified SDK around the @x402 ecosystem",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run --exclude test/integration/**",
"test:watch": "vitest --exclude test/integration/**",
"test:integration": "vitest run test/integration",
"test:e2e": "node test-e2e.js",
"test:all": "npm run test && npm run test:integration && npm run test:e2e",
"example:express": "tsx examples/express.ts",
"example:hono": "tsx examples/hono.ts"
},
"license": "MIT",
"author": "fzn0x",
"homepage": "https://github.com/fzn0x/x402sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/fzn0x/x402sdk.git"
},
"dependencies": {
"@x402/core": "*",
"@x402/evm": "*",
"@x402/hono": "*",
"@x402/paywall": "*"
},
"devDependencies": {
"@hono/node-server": "^1.19.9",
"@types/express": "^4.17.25",
"@types/node": "^25.3.0",
"dotenv": "^17.3.1",
"express": "^4.18.0",
"hono": "^4.0.0",
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"viem": "^2.46.3",
"vitest": "^4.0.18"
}
}