-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.02 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.02 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@lumera-protocol/sdk-js",
"version": "0.2.7",
"description": "Lumera JS/TS SDK — CosmJS+REST blockchain client and Cascade (sn-api) client",
"publishConfig": { "access": "public" },
"files": [
"dist/esm",
"dist/cjs",
"dist/types",
"docs/api",
"README.md",
"LICENSE"
],
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"./compat/blake3": {
"browser": "./dist/esm/compat/blake3.browser.js",
"node": "./dist/esm/compat/blake3.node.js",
"types": "./dist/types/compat/blake3.node.d.ts"
},
"./compat/zstd": {
"browser": "./dist/esm/compat/zstd.browser.js",
"node": "./dist/esm/compat/zstd.node.js",
"types": "./dist/types/compat/zstd.node.d.ts"
}
},
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"gen:snapi": "openapi-typescript docs/snapi-swagger.json -o src/types/snapi.gen.ts",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "vitest run",
"coverage": "vitest run --coverage",
"dev": "vitest",
"docs": "typedoc --out docs/api src/index.ts",
"e2e:browser": "node scripts/e2e-browser-example.mjs",
"proto:clean": "rm -rf proto",
"proto:download": "npm run proto:clean && npm run proto:download:lumera && npm run proto:download:deps",
"proto:download:lumera": "buf export buf.build/lumera-protocol/lumera:76f5a5038df84649b0b0557064206d4e -o protos",
"proto:download:deps": "buf export buf.build/cosmos/cosmos-sdk:5a6ab7bc14314acaa912d5e53aef1c2f -o protos && buf export buf.build/cosmos/cosmos-proto:04467658e59e44bbb22fe568206e1f70 -o protos && buf export buf.build/googleapis/googleapis:004180b77378443887d3b55cabc00384 -o protos",
"codegen:clean": "rm -rf src/codegen",
"codegen": "telescope transpile --config telescope.json",
"codegen:fix": "ts-node scripts/post-codegen-fix.ts",
"codegen:full": "npm run codegen:clean && npm run proto:download && npm run codegen",
"generate": "npm run codegen:full && npm run codegen:fix",
"generate:watch": "telescope transpile --config telescope.json --watch"
},
"dependencies": {
"@bufbuild/protobuf": "^2.2.2",
"@cosmjs/amino": "^0.36.0",
"@cosmjs/crypto": "^0.36.0",
"@cosmjs/encoding": "^0.36.0",
"@cosmjs/proto-signing": "^0.36.0",
"@cosmjs/stargate": "^0.36.0",
"@cosmjs/tendermint-rpc": "^0.36.0",
"@interchainjs/cosmos": "^1.18.0",
"@interchainjs/encoding": "^1.18.0",
"@interchainjs/math": "^1.18.0",
"@interchainjs/pubkey": "^1.18.0",
"@interchainjs/types": "^1.18.0",
"@interchainjs/utils": "^1.18.0",
"@mongodb-js/zstd": "^2.0.0",
"@bokuweb/zstd-wasm": "^0.0.27",
"blake3": "^2.1.7",
"bs58": "^6.0.0",
"cosmjs-types": "^0.9.0",
"formdata-node": "^6.0.3",
"rq-library-wasm": "^1.0.2",
"undici": "^6.19.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@hyperweb/telescope": "^2.0.3",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vitest/browser": "^2.1.2",
"playwright": "^1.57.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"fast-glob": "^3.3.3",
"glob": "^10.4.2",
"happy-dom": "^15.8.3",
"minimatch": "^10.0.3",
"openapi-typescript": "^7.4.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"shelljs": "^0.10.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.5.3",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"minimatch": "^8.0.0"
}
},
"license": "Apache-2.0",
"repository": "github.com/LumeraProtocol/sdk-js"
}