-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "@many-things/cw-hyperlane",
"packageManager": "[email protected]",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint . --ext ts",
"prettier": "prettier ./script ./example ./tests ./codegen.ts --write",
"build": "yarn clean && esbuild ./script --bundle --outfile=./dist/index.js --platform=node",
"start": "yarn build && node ./dist/index.js",
"cw-hpl": "yarn start",
"cw-hpl-exp": "tsx ./example",
"dev": "tsx ./script"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@hyperlane-xyz/sdk": "^3.7.0",
"@hyperlane-xyz/utils": "^3.7.0",
"@injectivelabs/sdk-ts": "1.14.13",
"axios": "^1.6.7",
"colors": "^1.4.0",
"commander": "^11.1.0",
"cosmjs-types": "^0.9.0",
"decompress": "^4.2.1",
"inversify": "^6.0.1",
"lodash": "^4.17.21",
"readline": "^1.3.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@cosmwasm/ts-codegen": "^0.35.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/decompress": "^4.2.7",
"@types/eslint": "^8",
"@types/js-yaml": "^4.0.8",
"@types/lodash": "^4.17.4",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.1",
"ts-yaml": "^1.0.0",
"tsx": "^3.13.0",
"typescript": "^5.1.6"
}
}