forked from hyperweb-io/cosmos-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.29 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.29 KB
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
{
"name": "@cosmos-kit/react",
"version": "2.10.11",
"description": "cosmos-kit wallet connector",
"author": "developers@cosmology.zone",
"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",
"source": "./src/index.ts",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "cjs/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
},
"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",
"clear": "rm -rf ./dist"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/cosmos-kit"
},
"keywords": [
"cosmos",
"cosmos-kit",
"cosmostation",
"leap",
"keplr",
"wallet"
],
"bugs": {
"url": "https://github.com/cosmology-tech/cosmos-kit/issues"
},
"jest": {
"testPathIgnorePatterns": [
"dist/"
]
},
"devDependencies": {
"@types/react": "^18.2",
"@types/react-dom": "^18.2"
},
"dependencies": {
"@chain-registry/types": "0.17.0",
"@cosmos-kit/core": "^2.8.9",
"@cosmos-kit/react-lite": "^2.6.9",
"@react-icons/all-files": "^4.1.0"
},
"resolutions": {
"@types/react": "^18"
},
"peerDependencies": {
"@interchain-ui/react": "^1.21.19",
"react": "^18",
"react-dom": "^18"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"gitHead": "2b5f2de5d9ed1580be4137736dfc6cce779679d1"
}