-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "@neutron-org/contracts2ts",
"version": "1.5.0",
"main": "lib/index.js",
"license": "MIT",
"author": "Sergey Ratiashvili <serg.s.r@gmail.com>",
"bin": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/neutron-org/contracts2ts"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc -p tsconfig.json",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.5.4",
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.3",
"@types/yargs": "^17.0.32",
"commander": "^12.0.0",
"cosmjs-types": "0.9.0",
"crypto-js": "^4.2.0",
"express": "^4.18.2",
"json-schema": "^0.4.0",
"json-schema-to-typescript": "14.1.0",
"lodash": "^4.17.21",
"node-recursive-directory": "^1.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "7.3.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.2",
"typescript": "^5.4.2"
}
}