-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "@leapwallet/buffer-boba",
"description": "Buffer Boba is a library for decoding protocol buffers in the cosmos ecosystem.",
"version": "0.1.10",
"repository": "https://github.com/leapwallet/buffer-boba",
"author": "Leap Wallet",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"keywords": [
"cosmos",
"protocol-buffer",
"encoding",
"decoding",
"buffer"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.js"
}
},
"module": "./dist/index.es.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "run-s build:lib build:types",
"build:lib": "vite build",
"build:types": "tsc",
"lint": "eslint src",
"dev": "run-p watch:*",
"test": "vitest",
"coverage": "vitest --coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"@vitest/coverage-c8": "0.29.2",
"eslint": "8.36.0",
"npm-run-all": "4.1.5",
"typescript": "4.9.5",
"vite": "4.1.4",
"vitest": "0.29.2"
},
"dependencies": {
"@cosmjs/proto-signing": "0.31.3",
"base64js": "1.0.1",
"cosmjs-types": "0.9.0",
"long": "5.2.0",
"protobufjs": "7.2.5"
},
"peerDependencies": {
"@cosmjs/proto-signing": "0.31.x",
"long": "5.2.x",
"protobufjs": "7.2.x"
},
"resolutions": {
"long": "5.2.0"
}
}