-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
103 lines (103 loc) · 2.64 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
102
103
{
"name": "@jackallabs/jackal.js",
"version": "3.5.8",
"description": "Javascript library for interacting with the Jackal Chain",
"keywords": [
"jackal",
"canine"
],
"exports": {
".": {
"import": {
"default": "./dist/index.es.js",
"types": "./dist/index.d.mts"
},
"require": {
"default": "./dist/index.cjs.js",
"types": "./dist/index.d.mts"
}
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"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]"
},
{
"name": "Marston Connell",
"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/proto-signing": "^0.32.3",
"@cosmjs/stargate": "^0.32.3",
"@jackallabs/bech32": "^1.2.0",
"@jackallabs/browserify-aes": "^11.2.0-CCM.1",
"@jackallabs/dogwood-tree": "^1.0.1",
"@jackallabs/jackal.js-protos": "2.3.2",
"@karnthis/plzsu": "^1.0.0",
"@keplr-wallet/types": "^0.12.44",
"browserify-des": "^1.0.2",
"browserify-sign": "^4.2.2",
"create-hash": "^1.2.0",
"eciesjs": "^0.4.11",
"for-each": "^0.3.3",
"ripemd160": "^2.0.2",
"ulid": "^2.3.0"
},
"devDependencies": {
"@btmills/prettier": "3.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitest/coverage-v8": "0.34.6",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"rollup-plugin-typescript-paths": "^1.4.0",
"tslib": "^2.6.2",
"typedoc": "^0.25.3",
"typescript": "^5.2.2",
"vite": "^5.1.5",
"vite-plugin-dts": "^4.0.3",
"vite-plugin-node-polyfills": "^0.17.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "0.34.6"
},
"overrides": {
"browserify-aes": "@jackallabs/[email protected]"
}
}