-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 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
{
"name": "x402-open",
"version": "1.2.9",
"description": "",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "echo 'No runnable entry. Import the package in your app.'",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run --reporter=dot"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^24.9.2",
"@types/supertest": "^2.0.16",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^2.1.4"
},
"dependencies": {
"@solana/kit": "^5.0.0",
"@solana/web3.js": "^1.95.3",
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"viem": "^2.21.34",
"@scure/base": "^1.1.9",
"zod": "^3.23.8",
"x402": "^0.7.0"
},
"peerDependencies": {
"express": ">=4"
}
}