-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"name": "@arbitrum/orbit-sdk",
"description": "TypeScript SDK for building Arbitrum Orbit chains",
"version": "0.23.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-orbit-sdk.git",
"author": "Offchain Labs, Inc.",
"license": "Apache-2.0",
"peerDependencies": {
"viem": "^1.20.0"
},
"dependencies": {
"@arbitrum/sdk": "^4.0.2",
"@arbitrum/token-bridge-contracts": "^1.2.2",
"@offchainlabs/fund-distribution-contracts": "^1.0.1",
"@safe-global/protocol-kit": "^4.0.2",
"ethers": "^5.7.2"
},
"resolutions": {
"**/base-x": "3.0.11"
}
}