-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
124 lines (124 loc) · 4.1 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
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
117
118
119
120
121
122
123
124
{
"name": "@nibiruchain/nibijs",
"description": "The TypeScript SDK for the Nibiru blockchain.",
"version": "4.5.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NibiruChain/ts-sdk"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"generate-barrels": "barrelsby -c barrelsby.json --delete -l all -S -e \".test.ts|.config.ts|.codegen.ts\"",
"build": "bash ./scripts/build.sh",
"build:tsc": "rm -rf dist && tsc --build",
"build:watch": "tsc --build --watch",
"docgen": "yarn run typedoc --tsconfig tsconfig.json --plugin typedoc-plugin-markdown --plugin typedoc-plugin-missing-exports",
"docgen:changes": "git diff-index --name-only origin/HEAD -- | grep -q \"src\" && yarn docgen || true",
"clean": "tsc --clean",
"commit": "cz",
"gql-generate": "graphql-code-generator --config ./src/gql/graphql-codegen/codegen.ts",
"test": "jest",
"test:verbose": "jest --verbose --detectOpenHandles",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint -c .eslintrc.json './**/*.{ts,js}'",
"lint:ci": "yarn lint . --format junit",
"lint:md": "markdownlint --ignore node_modules --ignore .git",
"localnet": "bash scripts/localnet.sh",
"format": "yarn lint --fix",
"format:md": "yarn lint:md --fix",
"proto-gen": "bash ./scripts/protocgen.sh",
"prettier": "prettier --write . --ignore-path .gitignore",
"eslint": "eslint --fix . --ignore-path .gitignore",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@cosmjs/tendermint-rpc": "^0.32.3",
"bignumber.js": "^9.1.1",
"cross-fetch": "4.0.0",
"graphql": "^16.9.0",
"graphql-ws": "^5.16.0",
"pako": "^2.1.0"
},
"peerDependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@cosmjs/tendermint-rpc": "^0.32.3",
"graphql": "^16.9.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.28.1",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/client-preset": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.1.2",
"@types/long": "^4.0.0",
"@types/node": "^16.11.7",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.30.7",
"barrelsby": "^2.8.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.2",
"jest": "^29.0.0",
"lint-staged": "^13.2.2",
"long": "^5.2.0",
"markdownlint-cli": "^0.28.1",
"prettier": "^2.4.1",
"semantic-release": "19.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.14.0",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^4.4.3",
"ws": "^8.14.1"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix . --ignore-path .gitignore",
"prettier --write . --ignore-path .prettierignore",
"git add ."
],
"*.json": [
"prettier --write . --ignore-path .prettierignore",
"git add ."
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"gitHead": "bac1729be8575a9e75bf9e04447a63c45e227c8c",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}