forked from unionlabs/union
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.64 KB
/
package.json
File metadata and controls
96 lines (96 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
96
{
"name": "@unionlabs/sdk",
"version": "1.9.9",
"type": "module",
"license": "MIT",
"author": "@unionlabs",
"description": "Union TypeScript SDK 2",
"repository": {
"type": "git",
"url": "https://github.com/unionlabs/union.git",
"directory": "ts-sdk"
},
"files": ["LICENSE", "README.md", "dist", "package.json", "src"],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": "./src/*.js",
"./ucs03": {
"import": "./dist/ucs03/index.js",
"types": "./dist/ucs03/index.d.ts"
},
"./evm": {
"import": "./dist/evm/index.js",
"types": "./dist/evm/index.d.ts"
},
"./cosmos": {
"import": "./dist/cosmos/index.js",
"types": "./dist/cosmos/index.d.ts"
},
"./evm/abi": {
"import": "./dist/evm/abi/index.js",
"types": "./dist/evm/abi/index.d.ts"
},
"./evm/ucs03": {
"import": "./dist/evm/ucs03/index.js",
"types": "./dist/evm/ucs03/index.d.ts"
},
"./evm/erc20": {
"import": "./dist/evm/erc20.js",
"types": "./dist/evm/erc20.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
},
"./schema": {
"import": "./dist/schema/index.js",
"types": "./dist/schema/index.d.ts"
}
},
"scripts": {
"build": "pnpm build-esm && pnpm build-annotate",
"build-annotate": "babel dist/ --plugins annotate-pure-calls --out-dir dist/ --source-maps",
"build-esm": "tspc -b tsconfig.build.json",
"check": "tspc -b tsconfig.json",
"check:circular": "dpdm -T src",
"check:examples": "tspc -p tsconfig.examples.json",
"prepare": "ts-patch install -s",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"@effect/platform": "^0.84",
"effect": "^3.16",
"viem": "^2"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@cosmjs/math": "^0.33.1",
"@cosmjs/proto-signing": "^0.33.0",
"@effect/build-utils": "^0.7.7",
"@effect/platform": "0.84.6",
"@types/node": "^22.13.1",
"babel-plugin-annotate-pure-calls": "^0.5.0",
"dpdm": "^3.14.0",
"effect": "3.16.3",
"ts-patch": "^3.3.0",
"vitest": "^3.0.5"
},
"dependencies": {
"@aptos-labs/ts-sdk": "1.34.0",
"@cosmjs/cosmwasm-stargate": "^0.33.1",
"@cosmjs/stargate": "^0.33.1",
"@cosmjs/tendermint-rpc": "^0.33.1",
"@mysten/sui": "^1.30.1",
"@pythnetwork/hermes-client": "^2.0.0",
"@redstone-finance/sdk": "^0.8.0",
"@scure/base": "1.2.4",
"crc": "^4.3.2",
"gql.tada": "^1.8.10",
"graphql-request": "^7.1.2"
}
}