-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 KB
/
package.json
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
{
"name": "@moonbeam-network/mrl",
"version": "3.0.7",
"description": "Moonbeam Routed Liquidity",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"link": "pnpm ln --global",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"test:update": "vitest -u"
},
"repository": {
"directory": "packages/mrl",
"type": "git",
"url": "git+https://github.com/moonbeam-foundation/xcm-sdk.git"
},
"keywords": ["moonbeam", "moonriver", "mrl"],
"author": "moonbeam-foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/moonbeam-foundation/xcm-sdk/issues"
},
"homepage": "https://moonbeam-foundation.github.io/xcm-sdk/latest",
"files": ["build"],
"type": "module",
"exports": {
"import": "./build/index.mjs",
"types": "./build/index.d.ts",
"default": "./build/index.mjs"
},
"types": "./build/index.d.ts",
"main": "./build/index.mjs",
"dependencies": {
"@moonbeam-network/xcm-builder": "workspace:*",
"@moonbeam-network/xcm-config": "workspace:*",
"@moonbeam-network/xcm-sdk": "workspace:*",
"@moonbeam-network/xcm-types": "workspace:*",
"@moonbeam-network/xcm-utils": "workspace:*",
"big.js": "^6.2.1"
},
"peerDependencies": {
"@polkadot/api": "15.5.1",
"@polkadot/api-augment": "15.5.1",
"@polkadot/types": "15.5.1",
"@polkadot/util": "13.3.1",
"@polkadot/util-crypto": "13.3.1",
"@wormhole-foundation/sdk-connect": "^1.4.5",
"@wormhole-foundation/sdk-evm": "^1.4.5",
"viem": "^2.21.7"
}
}