-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
94 lines (94 loc) · 2.96 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
{
"name": "carbon-js-sdk",
"version": "0.11.39-beta.1",
"description": "TypeScript SDK for Carbon blockchain",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/Switcheo/carbon-js-sdk",
"author": "Switcheo <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "nodemon yarn build",
"build": "yarn run lint && tsc && tsc-alias",
"cp-proto": "cp ~/go/src/github.com/Switcheo/carbon/gen/proto-ts.tar.gz .",
"sync-proto": "sh scripts/update-proto.sh",
"sync-register": "yarn sync-reset && sh scripts/generate-registry.sh",
"sync-reset": "find . -type f -name 'export.ts' -delete && rm -f src/codec/*-models.ts",
"test": "tsc && node lib/test.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"prepare": "yarn run build",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run lint",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags",
"ws": "^7.4.6"
},
"nodemonConfig": {
"delay": 500,
"ext": "ts, css, js, json",
"watch": [
"./src",
"./package.json"
]
},
"files": [
"lib/**/*"
],
"dependencies": {
"@cityofzion/neon-api": "^4.9.0",
"@cityofzion/neon-core": "^4.9.0",
"@cityofzion/neon-core-next": "npm:@cityofzion/neon-core@^5.0.0",
"@cityofzion/neon-js": "^4.9.0",
"@cosmjs/stargate": "~0.31.3",
"@cosmos-kit/leap": "^0.15.12",
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"@keplr-wallet/types": "^0.12.107",
"@ledgerhq/hw-transport-webhid": "^6.20.0",
"@ledgerhq/hw-transport-webusb": "^6.20.0",
"@metamask/detect-provider": "^2.0.0",
"@zilliqa-js/zilliqa": "^2.2.0",
"base58check": "^2.0.0",
"bignumber.js": "^9.1.0",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"cosmjs-types": "^0.5.2",
"dayjs": "^1.10.5",
"eth-sig-util": "^3.0.1",
"ethers": "^5.6.0",
"eventemitter3": "^5.0.0",
"jwt-decode": "^4.0.0",
"ledger-cosmos-js": "^2.1.8",
"lodash": "^4.17.21",
"neo-dapi": "^2.0.4",
"neo3-dapi": "^1.0.1",
"node-fetch": "^2.6.1",
"query-string": "^7.0.1",
"secp256k1": "^4.0.2",
"secp256r1": "^0.0.3",
"semver": "^7.3.7",
"tsc-alias": "^1.2.11",
"typescript": "^4.3.5",
"wif": "^2.0.6"
},
"devDependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.29.5",
"@types/lodash": "^4.14.174",
"@types/node": "^17.0.6",
"@types/node-fetch": "^2.5.12",
"@types/ripemd160": "^2.0.0",
"@types/secp256k1": "^4.0.2",
"@types/semver": "^7.3.13",
"@types/w3c-web-hid": "^1.0.2",
"@types/w3c-web-usb": "^1.0.5",
"@types/websocket": "^1.0.4",
"@types/wif": "^2.0.2",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"dotenv": "^10.0.0",
"eslint": "^8.42.0",
"prettier": "2.5.1"
}
}