-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1009 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1009 Bytes
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
{
"name": "@paynodelabs/sdk-js",
"version": "2.1.1",
"description": "The official JavaScript/TypeScript SDK for PayNode x402 protocol on Base L2.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"example:server": "ts-node examples/express-server.ts"
},
"keywords": [
"paynode",
"x402",
"base",
"web3",
"payments",
"ai-agents"
],
"author": "PayNodeLabs",
"license": "MIT",
"dependencies": {
"ethers": "^6.13.0",
"ioredis": "^5.10.1",
"express": "^4.19.2"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"overrides": {
"brace-expansion": "^5.0.5"
}
}