forked from cosmology-tech/cosmos-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.74 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
{
"name": "@cosmos-kit/keplr",
"version": "2.6.9",
"description": "cosmos-kit wallet connector",
"author": "[email protected]",
"contributors": [
{
"name": "Jun Liu"
},
{
"name": "Dan Lynch"
},
{
"name": "Noah Saso"
},
{
"name": "Eliot Baker"
},
{
"name": "Delivan Jeonghyeok Yoo"
}
],
"homepage": "https://github.com/cosmology-tech/cosmos-kit#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "cjs/index.d.ts",
"directories": {
"lib": "src"
},
"files": [
"cjs",
"esm",
"!CHANGELOG.md",
"!LICENSE"
],
"scripts": {
"build:cjs": "yarn tsc -p tsconfig.json --outDir cjs --module commonjs || true",
"build:esm": "yarn tsc -p tsconfig.json --outDir esm --module es2022 || true",
"clean:cjs": "rimraf cjs",
"clean:esm": "rimraf esm",
"clean": "npm run clean:cjs && npm run clean:esm",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"prepare": "npm run build",
"lint": "eslint --ext .tsx,.ts .",
"format": "eslint --ext .tsx,.ts --fix .",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/cosmos-kit"
},
"keywords": [
"cosmos",
"cosmos-kit",
"keplr",
"wallet"
],
"bugs": {
"url": "https://github.com/cosmology-tech/cosmos-kit/issues"
},
"dependencies": {
"@cosmos-kit/keplr-extension": "^2.7.9",
"@cosmos-kit/keplr-mobile": "^2.6.9"
},
"gitHead": "2b5f2de5d9ed1580be4137736dfc6cce779679d1"
}