-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathpackage.json
76 lines (76 loc) · 2.22 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
72
73
74
75
76
{
"name": "@unionlabs/client",
"version": "0.1.3",
"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": "bunx typedoc@latest --out .docs ./src/mod.ts",
"check-package": "bunx publint --strict && bunx @arethetypeswrong/cli@latest --pack --ignore-rules 'cjs-resolves-to-esm'"
},
"dependencies": {
"@aptos-labs/ts-sdk": "1.35.0",
"@cosmjs/amino": "^0.33.0",
"@cosmjs/cosmwasm-stargate": "0.33.0",
"@cosmjs/proto-signing": "^0.33.0",
"@cosmjs/stargate": "0.33.0",
"@cosmjs/tendermint-rpc": "^0.33.0",
"@scure/base": "^1.2.4",
"graphql-request": "^7.1.2",
"neverthrow": "^8.1.1",
"ofetch": "^1.4.1",
"ox": "^0.6.9",
"patch-package": "^8.0.0",
"tsconfig-paths": "^4.2.0",
"viem": "^2.22.21"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@tsconfig/strictest": "^2.0.5",
"@types/bun": "^1.2.2",
"@types/node": "^22.13.1",
"consola": "^3.4.0",
"cosmjs-types": "^0.9.0",
"gql.tada": "^1.8.10",
"jsr": "^0.13.3",
"got": "^14.4.6",
"knip": "^5.43.6",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"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"]
}