-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 3.54 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
{
"name": "@lum-network/sdk-javascript",
"version": "0.8.9",
"license": "Apache-2.0",
"description": "Javascript SDK library for NodeJS and Web browsers to interact with the Lum Network.",
"homepage": "https://github.com/lum-network/sdk-javascript#readme",
"main": "build/index.js",
"typings": "build/index.d.ts",
"bugs": {
"url": "https://github.com/lum-network/sdk-javascript/issues"
},
"author": {
"name": "Lum Network"
},
"repository": {
"type": "git",
"url": "https://github.com/lum-network/sdk-javascript.git"
},
"tags": [
"lum-network",
"sdk",
"typescript",
"blockchain",
"rpc",
"cosmos",
"tendermint"
],
"engines": {
"node": "^16.0.0 || >=18.0.0"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"build": "yarn clean && yarn build:lib && yarn build:docs",
"build:lib": "tsc",
"build:docs": "rimraf docs/lib && typedoc --excludeExternals --readme none --out docs/lib --disableSources",
"clean": "rimraf build",
"lint": "eslint '**/*.{ts,js}'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,json,md,html,yml}'",
"bump": "npm version",
"preget-proto": "rm -rf proto",
"get-proto": "COSMOS_REF=1236c529873343a1967780774aa40f05c6d12f0e ICS_23_REF=cea74ba58ffbf87154701cd5959184acedf09cd6 IBC_REF=78be372cf9b33242c0ca3f0e48d4d156842e5941 LUM_REF=v1.5.2 sh ./scripts/get-proto.sh",
"define-proto": "sh ./scripts/define-proto.sh",
"postdefine-proto": "prettier --write \"src/codec/**/*.ts\"",
"millions:export": "npx ts-node ./scripts/index.ts millions export",
"dfract:sunset-distrib": "npx ts-node ./scripts/index.ts dfract sunset-distrib"
},
"dependencies": {
"@cosmjs/amino": "0.31.0",
"@cosmjs/crypto": "0.31.0",
"@cosmjs/encoding": "0.31.0",
"@cosmjs/json-rpc": "^0.31.0",
"@cosmjs/math": "0.31.0",
"@cosmjs/proto-signing": "0.31.0",
"@cosmjs/stargate": "0.31.0",
"@cosmjs/tendermint-rpc": "0.31.0",
"@cosmjs/utils": "0.31.0",
"@ledgerhq/hw-app-cosmos": "^6.28.2",
"@ledgerhq/hw-transport": "^6.28.5",
"@types/crypto-js": "^4.1.1",
"@types/ledgerhq__hw-transport": "^4.21.4",
"@types/uuid": "^9.0.2",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"long": "^4.0.0",
"uuid": "^9.0.0"
},
"optionalDependencies": {},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@ledgerhq/hw-transport-node-hid": "^6.11.2",
"@types/jest": "^29.5.3",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"axios": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-plugin-node": "^11.1.0",
"gts": "^3.1.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-proto": "^1.155.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.11.6",
"typescript": "^5.1.6"
}
}