-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.92 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
{
"name": "@lum-network/sdk-javascript",
"version": "1.0.4",
"description": "Javascript SDK library for NodeJS and Web browsers to interact with the Lum Network.",
"author": "Lum Network <[email protected]>",
"homepage": "https://github.com/lum-network/lumjs#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "build/index.js",
"module": "build/index.mjs",
"typings": "build/index.d.ts",
"directories": {
"lib": "src"
},
"files": [
"build",
"!CHANGELOG.md"
],
"scripts": {
"build:cjs": "npx tsc -p ./tsconfig.json --outDir build --module commonjs || true",
"build:mjs": "npx tsc -p ./tsconfig.json --outDir mjs --module es2022 --declaration false || true",
"build:lib": "npx tsc",
"build:docs": "rimraf docs/lib && typedoc --entryPoints src/helpers --excludeExternals --readme none --out docs/lib --disableSources",
"clean:mjs": "rimraf mjs",
"clean:build": "rimraf build",
"clean": "npm run clean:mjs && npm run clean:build",
"build:rename": "publish-scripts --cmd rename --srcDir mjs --outDir build --findExt js --replaceExt mjs --no-rmDir",
"build": "npm run clean && npm run build:cjs && npm run build:mjs && npm run build:rename",
"codegen": "node scripts/codegen.js",
"prepare": "npm run build",
"lint": "eslint src --fix",
"test": "jest --runInBand --detectOpenHandles",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/lum-network/lumjs"
},
"keywords": [],
"bugs": {
"url": "https://github.com/lum-network/lumjs/issues"
},
"devDependencies": {
"@babel/cli": "7.24.5",
"@babel/core": "7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/generator": "7.24.5",
"@babel/node": "^7.23.9",
"@babel/parser": "^7.24.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.24.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.24.3",
"@babel/preset-env": "7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@cosmology/telescope": "^1.5.4",
"@protobufs/amino": "^0.0.11",
"@protobufs/cosmos": "^0.1.0",
"@protobufs/cosmos_proto": "^0.0.10",
"@protobufs/gogoproto": "^0.0.10",
"@protobufs/google": "^0.0.10",
"@protobufs/ibc": "^0.1.0",
"@types/jest": "^29.5.12",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.6.0",
"jest-in-case": "^1.0.2",
"prettier": "^3.2.5",
"publish-scripts": "1.10.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@cosmjs/amino": "^0.32.3",
"@cosmjs/crypto": "^0.32.3",
"@cosmjs/encoding": "^0.32.3",
"@cosmjs/json-rpc": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@cosmjs/tendermint-rpc": "^0.32.3",
"@cosmjs/utils": "^0.32.3",
"@ledgerhq/hw-app-cosmos": "^6.29.6",
"@ledgerhq/hw-transport": "^6.30.6",
"@ledgerhq/hw-transport-node-hid": "^6.28.6",
"chain-registry": "^1.46.2",
"cosmjs-utils": "^0.1.0",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.4.5",
"uuid": "^9.0.0"
}
}