-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "x402-core",
"version": "1.0.0",
"description": "",
"main": "./src/index.mjs",
"exports": {
".": "./src/index.mjs",
"./legacy": "./src/legacy/index.mjs",
"./v1": "./src/v1/index.mjs",
"./v2": "./src/v2/index.mjs",
"./v2/exact/evm": "./src/v2/exact/evm/index.mjs",
"./v2/config": "./src/v2/config/index.mjs",
"./v2/transports/http": "./src/v2/transports/http/index.mjs"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:coverage:src": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage --collectCoverageFrom='src/**/*.mjs'",
"test:file": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:v1": "node tests/v1/1-full-process.mjs",
"test:v2": "node tests/v2/1-full-process.mjs"
},
"keywords": [],
"author": "a6b8",
"license": "MIT",
"type": "module",
"dependencies": {
"viem": "^2.31.4"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"jest": "^30.2.0"
}
}