forked from JackalLabs/jackal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.37 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
{
"name": "@jackallabs/jackal.js",
"version": "2.2.0",
"description": "Javascript library for interacting with the Jackal Chain",
"keywords": [
"jackal",
"canine"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"packit": "npm run build && npm pack --pack-destination packs",
"gen-docs": "npx typedoc"
},
"contributors": [
{
"name": "Jackal Labs",
"email": "[email protected]",
"url": "https://jackallabs.io"
},
{
"name": "Erin Rivas",
"email": "[email protected]"
},
{
"name": "Christopher Simanjuntak",
"email": "[email protected]"
},
{
"name": "Daniel Ahn",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JackalLabs/jackal.js.git"
},
"bugs": {
"url": "https://github.com/JackalLabs/jackal.js/issues"
},
"homepage": "https://github.com/JackalLabs/jackal.js/#README",
"dependencies": {
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "0.31.0",
"@cosmjs/stargate": "0.31.0",
"@jackallabs/jackal.js-protos": "1.4.1",
"@karnthis/plzsu": "^1.0.0",
"bech32": "^2.0.0",
"bip32": "^3.0.1",
"bip39": "3.1.0",
"bs58check": "3.0.1",
"eciesjs": "0.4.2",
"make-random": "^3.0.2"
},
"devDependencies": {
"@keplr-wallet/types": "^0.11.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-typescript": "^11.1.1",
"@types/bs58check": "^2.1.0",
"@types/jest": "^29.2.2",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^29.3.0",
"prettier": "^2.8.8",
"rollup-plugin-typescript-paths": "^1.4.0",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0",
"typedoc": "^0.24.8",
"typescript": "~4.9.4",
"vite": "^4.3.2",
"vite-plugin-dts": "^2.3.0",
"vite-tsconfig-paths": "^4.2.0"
}
}