forked from gnolang/gno-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "@gnolang/gno-js-client",
"version": "1.3.0",
"description": "Gno JS / TS Client",
"main": "./bin/index.js",
"author": "Milos Zivkovic <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://gno.land/",
"files": [
"bin/**/*"
],
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnolang/gno-js-client.git"
},
"keywords": [
"gno",
"sdk",
"client",
"js"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.0",
"ts-proto": "^1.172.0",
"typescript": "^5.4.2"
},
"scripts": {
"tsc": "tsc",
"lint": "eslint '**/*.ts' --fix",
"prettier": "prettier --write .",
"build": "yarn tsc",
"test": "jest",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn prettier"
},
"dependencies": {
"@cosmjs/ledger-amino": "^0.32.4",
"@gnolang/tm2-js-client": "^1.2.1",
"long": "^5.2.3",
"protobufjs": "^7.2.3"
}
}