-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
54
55
56
57
58
59
60
61
{
"name": "omni-bridge-sdk",
"version": "0.8.2",
"description": "SDK for Omni bridge transfers",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"test": "vitest",
"lint": "biome check --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"lefthook": "lefthook install",
"check-exports": "attw --pack .",
"release": "pnpm build && changeset publish"
},
"keywords": [
"blockchain",
"bridge",
"ethereum",
"near",
"solana"
],
"author": "NEAR One",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@ethereumjs/mpt": "7.0.0-alpha.1",
"@ethereumjs/rlp": "^5.0.2",
"@ethereumjs/util": "^9.1.0",
"@near-js/client": "^0.0.2",
"@near-wallet-selector/core": "^8.9.16",
"@solana/spl-token": "^0.4.12",
"@solana/web3.js": "^1.98.0",
"@wormhole-foundation/sdk": "^1.5.2",
"borsh": "^2.0.0",
"borsher": "^3.6.0",
"ethers": "^6.13.5",
"near-api-js": "^5.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.12",
"@types/node": "^22.13.1",
"lefthook": "^1.10.10",
"msw": "^2.7.0",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"pnpm": {
"overrides": {
"secp256k1@=5.0.0": ">=5.0.1"
}
}
}