-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.25 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
{
"name": "@jackallabs/jackal.js-protos",
"version": "2.3.2",
"description": "Package of all protos used by Jackal.js",
"keywords": [
"jackal",
"canine",
"protos"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.es.js"
}
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"compile": "./scripts/protocgen.sh",
"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]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JackalLabs/jackal.js-protos.git"
},
"bugs": {
"url": "https://github.com/JackalLabs/jackal.js-protos/issues"
},
"homepage": "https://github.com/JackalLabs/jackal.js-protos/#README",
"dependencies": {
"@cosmjs/amino": "^0.32.3",
"@cosmjs/encoding": "^0.32.3",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/math": "^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",
"@jackallabs/banshee": "1.0.2",
"cosmjs-types": "^0.8.0",
"grpc-web": "^1.5.0",
"protobufjs": "^7.2.5",
"ts-proto": "^1.164.0",
"vite-plugin-node-polyfills": "^0.17.0"
},
"devDependencies": {
"@btmills/prettier": "3.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-typescript": "^11.1.5",
"@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.2.10",
"vite-plugin-dts": "^4.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "0.34.6"
}
}