-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.05 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
{
"name": "wdk-protocol-swidge-zerion",
"version": "0.1.0",
"description": "WDK Swidge protocol module for same-chain swaps and cross-chain bridges powered by the Zerion API.",
"keywords": [
"wdk",
"protocol",
"swap",
"bridge",
"swidge",
"zerion",
"ethereum",
"evm",
"erc-4337"
],
"author": "Zerion",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/zeriontech/wdk-protocol-swidge-zerion.git"
},
"bugs": {
"url": "https://github.com/zeriontech/wdk-protocol-swidge-zerion/issues"
},
"homepage": "https://github.com/zeriontech/wdk-protocol-swidge-zerion#readme",
"main": "index.js",
"type": "module",
"types": "./types",
"sideEffects": false,
"scripts": {
"build:types": "tsc && node scripts/patch-types.js && tsc -p tsconfig.types-test.json",
"demo": "node scripts/demo.js",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"dependencies": {
"@tetherto/wdk-wallet": "1.0.0-beta.11",
"bare-node-runtime": "^1.1.4"
},
"devDependencies": {
"@tetherto/wdk-wallet-evm": "1.0.0-beta.14",
"@tetherto/wdk-wallet-evm-erc-4337": "1.0.0-beta.9",
"cross-env": "10.1.0",
"ethers": "6.17.0",
"jest": "30.4.2",
"standard": "17.1.2",
"typescript": "5.8.3"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"bare": "./bare.js",
"default": "./index.js"
},
"./package": {
"default": "./package.json"
},
"./package.json": {
"default": "./package.json"
}
},
"files": [
"index.js",
"bare.js",
"src/",
"types/",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"standard": {
"ignore": [
"bare.js",
"tests/**/*.js"
]
}
}