-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.59 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
{
"name": "@arbitrum/chain-sdk",
"description": "TypeScript SDK for building Arbitrum chains",
"version": "0.26.0",
"main": "./dist/index.js",
"files": [
"./dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./chains": {
"types": "./dist/chains.d.ts",
"default": "./dist/chains.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
},
"./constants": {
"types": "./dist/constants.d.ts",
"default": "./dist/constants.js"
},
"./contracts/*": {
"types": "./dist/contracts/*",
"default": "./dist/contracts/*"
}
},
"typesVersions": {
"*": {
"chains": [
"./dist/chains.d.ts"
],
"utils": [
"./dist/utils/index.d.ts"
],
"constants": [
"./dist/constants.d.ts"
],
"contracts/*": [
"./dist/contracts/*"
]
}
},
"repository": "git+https://github.com/OffchainLabs/arbitrum-chain-sdk.git",
"author": "Offchain Labs, Inc.",
"license": "Apache-2.0",
"scripts": {
"prepare": "cd .. && npm run build"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"viem": "^1.20.0"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@arbitrum/sdk": "^4.0.4",
"@arbitrum/token-bridge-contracts": "^1.2.2",
"@offchainlabs/fund-distribution-contracts": "^1.0.1",
"@safe-global/protocol-kit": "^4.1.7",
"abitype": "^0.9.8",
"ethers": "^5.7.2"
}
}