-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.64 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
88
89
90
91
92
93
94
95
{
"name": "@lifi/wdk-protocol-swidge-lifi",
"version": "0.5.1",
"description": "WDK Swidge module for LI.FI — lets any WDK wallet account swap and bridge tokens via LI.FI using the ISwidgeProtocol interface.",
"keywords": [
"wdk",
"protocol",
"swidge",
"swap",
"bridge",
"lifi",
"evm",
"erc-4337"
],
"author": "LI.FI",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/lifinance/wdk-lifi-swidge-protocol.git"
},
"main": "index.js",
"types": "./types/index.d.ts",
"type": "module",
"files": [
"src/",
"examples/",
"types/",
"index.js",
"bare.js",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md",
".env.example"
],
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"build:types": "tsc",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=tests/integration",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --testPathIgnorePatterns=tests/integration",
"test:integration": "cross-env NODE_OPTIONS=--experimental-vm-modules jest tests/integration --testTimeout=120000",
"example:discover": "node examples/discover-chains-and-tokens.js",
"example:swap": "node -r dotenv/config examples/swap-usdt-to-usdc.js",
"example:bridge": "node -r dotenv/config examples/bridge-usdt.js",
"changeset": "changeset",
"changeset:version": "changeset version && npm install --package-lock-only",
"changeset:publish": "npm run build:types && changeset publish"
},
"dependencies": {
"@tetherto/wdk-wallet": "1.0.0-beta.14",
"bare-node-runtime": "^1.1.4",
"ethers": "6.17.0"
},
"peerDependencies": {
"@tetherto/wdk-wallet-evm": ">=1.0.0-beta.8",
"@tetherto/wdk-wallet-evm-erc-4337": ">=1.0.0-beta.5"
},
"peerDependenciesMeta": {
"@tetherto/wdk-wallet-evm-erc-4337": {
"optional": true
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.0",
"@tetherto/wdk-wallet-evm": "1.0.0-beta.8",
"@tetherto/wdk-wallet-evm-erc-4337": "1.0.0-beta.5",
"cross-env": "10.0.0",
"dotenv": "^16.4.7",
"jest": "30.0.5",
"standard": "17.1.2",
"typescript": "^6.0.3"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"bare": "./bare.js",
"default": "./index.js"
},
"./package": {
"default": "./package.json"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"standard": {
"ignore": [
"bare.js",
"tests/**/*.js"
]
}
}