-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 947 Bytes
/
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
{
"name": "@initia/amino-converter",
"version": "0.1.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc --module commonjs",
"lint": "npx eslint . --fix",
"prepare": "husky",
"prepublishOnly": "rm -rf ./dist && npm run build"
},
"author": "Initia Foundation",
"license": "Apache-2.0",
"description": "Amino types and proto registry for initia chains",
"files": [
"dist"
],
"devDependencies": {
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@initia/initia.proto": "^0.2.4",
"@initia/opinit.proto": "^0.0.11"
},
"lint-staged": {
"src/**/*.{mjs|ts}": [
"npx eslint . --fix"
]
}
}