-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.63 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.63 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
{
"name": "@unionlabs/sdk",
"version": "2.0.0-beta.2",
"type": "module",
"license": "MIT",
"author": "@unionlabs",
"homepage": "https://docs.union.build/typescript",
"description": "Union TypeScript SDK 2",
"repository": {
"type": "git",
"url": "https://github.com/unionlabs/union.git",
"directory": "ts-sdk"
},
"publishConfig": {
"access": "public",
"provenance": true,
"directory": "dist",
"linkDirectory": false
},
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./*": "./src/*.ts",
"./examples/*": "./examples/*.ts",
"./internal/*": null
},
"scripts": {
"build": "pnpm build-esm && pnpm build-annotate && pnpm build-cjs && build-utils pack-v3",
"build-annotate": "babel build/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-esm": "tsc -b tsconfig.build.json",
"docgen": "docgen",
"check": "tsc -b tsconfig.json",
"check:circular": "dpdm -T src",
"check:examples": "tsc -p tsconfig.examples.json",
"codegen": "build-utils prepare-v3",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"@effect/experimental": "catalog:peer",
"@effect/platform": "catalog:peer",
"effect": "catalog:peer",
"viem": "catalog:peer"
},
"devDependencies": {
"@babel/cli": "catalog:",
"@babel/core": "catalog:",
"@babel/plugin-transform-export-namespace-from": "catalog:",
"@babel/plugin-transform-modules-commonjs": "catalog:",
"@cosmjs/math": "0.33.1",
"@effect/build-utils": "catalog:",
"@effect/docgen": "catalog:",
"@effect/experimental": "catalog:",
"@effect/platform": "catalog:",
"@effect/vitest": "catalog:",
"@types/node": "catalog:",
"babel-plugin-annotate-pure-calls": "catalog:",
"dpdm": "catalog:",
"effect": "catalog:",
"madge": "catalog:",
"tsx": ">=4.8.1 <5.0.0-0",
"typescript": "catalog:",
"viem": "catalog:",
"vitest": "catalog:"
},
"dependencies": {
"@aptos-labs/ts-sdk": "1.34.0",
"@cosmjs/cosmwasm-stargate": "catalog:",
"@cosmjs/proto-signing": "catalog:",
"@cosmjs/stargate": "catalog:",
"@cosmjs/tendermint-rpc": "catalog:",
"@effect/typeclass": "catalog:",
"@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": "^16.10.0",
"graphql-request": "^7.1.2"
}
}