-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.33 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": "ibc-v2-ts-relayer",
"version": "0.0.1",
"description": "A relayer in TS for IBC v2",
"scripts": {
"build": "tsc --noEmit && tsdown",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:gno:e2e": "vitest run --config vitest.config.gno.ts",
"test:txs:e2e": "vitest run --config vitest.config.txs.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"bin": {
"ibc-v2-relayer": "./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@atomone/cosmos-ibc-types": "^1.0.4",
"@clockworkgr/ibc-v2-client-ts": "^0.0.1",
"@cosmjs/crypto": "^0.38.1",
"@cosmjs/encoding": "^0.38.1",
"@cosmjs/math": "^0.38.1",
"@cosmjs/proto-signing": "^0.38.1",
"@cosmjs/stargate": "^0.38.1",
"@cosmjs/tendermint-rpc": "^0.38.1",
"@cosmjs/utils": "^0.38.1",
"@gnolang/gno-js-client": "^2.0.2",
"@gnolang/gno-types": "^1.0.8",
"@gnolang/tm2-js-client": "^2.0.4",
"@gnolang/tm2-rpc": "^1.0.0",
"@napi-rs/keyring": "^1.2.0",
"better-sqlite3": "^12.8.0",
"commander": "^14.0.3",
"dexie": "^4.4.2",
"fake-indexeddb": "^6.2.5",
"graphql-request": "^7.4.0",
"handlebars": "^4.7.9",
"sqlite": "^5.1.1",
"sqlite3": "^6.0.1",
"wait-on": "^9.0.4",
"winston": "^3.19.0"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@eslint/js": "^10.0.1",
"@keplr-wallet/types": "^0.13.20",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.2",
"@vitest/coverage-istanbul": "^4.1.4",
"eslint": "^10.2.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"happy-dom": "^20.8.9",
"jsdom": "^29.0.2",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts"
}