-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "@gnolang/gno-js-client",
"version": "1.3.1",
"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": {
"@eslint/js": "^9.11.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.2.2",
"ts-proto": "^2.2.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"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.2",
"long": "^5.2.3",
"protobufjs": "^7.4.0"
}
}