forked from unionlabs/union
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@unionlabs/client",
"version": "0.0.45",
"homepage": "https://union.build",
"description": "Union Labs cross-chain transfers client",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": ["dist", "LICENSE", "README.md", "package.json"],
"scripts": {
"build": "tsup --config='tsup.config.ts'",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "vitest --run",
"prepublish": "bun run build",
"postinstall": "patch-package",
"knip": "knip --config='knip.json'",
"clean": "rm -rf dist node_modules",
"test:typecheck": "vitest --typecheck.only",
"typedoc": "deno run --allow-all npm:typedoc@latest --out .docs ./src/mod.ts",
"check-package": "deno run --allow-all npm:publint --strict && deno run --allow-all npm:@arethetypeswrong/cli@latest --pack --ignore-rules 'cjs-resolves-to-esm'"
},
"dependencies": {
"@aptos-labs/ts-sdk": "^1.33.1",
"@cosmjs/amino": "^0.32.4",
"@cosmjs/cosmwasm-stargate": "0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@scure/base": "^1.2.1",
"neverthrow": "^8.1.1",
"ofetch": "^1.4.1",
"ox": "^0.6.0",
"patch-package": "^8.0.0",
"viem": "^2.22.3"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "^1.1.15",
"@types/node": "^22.10.5",
"consola": "^3.3.3",
"cosmjs-types": "^0.9.0",
"jsr": "^0.13.2",
"knip": "^5.41.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unionlabs/union.git",
"directory": "typescript-sdk"
},
"license": "MIT",
"engineStrict": true,
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"keywords": ["web3", "cross-chain", "ibc"]
}