-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1014 Bytes
/
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
{
"name": "@mrtruongleo/dym-ts-sdk",
"version": "1.0.8",
"description": "Dymension sdk typescript",
"contributors": [
"mrtruongleo"
],
"main": "lib/esm/index.js",
"module": "lib/cjs/index.js",
"types": "lib/esm/index.d.ts",
"files": [
"lib/",
"*.md"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"clean": "rm -rf lib",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@injectivelabs/sdk-ts": "^1.14.5",
"@cosmjs/launchpad": "^0.27.1",
"bech32-2": "npm:bech32@^2.0.0"
},
"devDependencies": {
"typescript": "^5.3.3"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrtruongleo/dym-ts-sdk.git"
},
"keywords": [
"dym"
],
"author": "mrtruongleo",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrtruongleo/dym-ts-sdk/issues"
},
"homepage": "https://github.com/mrtruongleo/dym-ts-sdk#readme"
}