forked from leapwallet/name-matcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "@leapwallet/name-matcha",
"description": "Name Matcha is a javascript library for resolving names to wallet addresses in the cosmos universe.",
"version": "1.0.0",
"repository": "https://github.com/leapwallet/name-matcha",
"author": "Leap Wallet",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"keywords": [
"cosmos",
"cosmwasm",
"name-resolution"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
}
},
"module": "./dist/index.es.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "run-s build:*",
"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/cosmwasm-stargate": "0.30.0",
"bech32": "1.1.4"
},
"peerDependencies": {
"@cosmjs/cosmwasm-stargate": "0.30.0"
}
}