forked from cosmology-tech/cosmos-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 3.61 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@cosmos-kit/keplr",
"version": "0.19.7",
"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": "main/index.js",
"module": "module/index.js",
"typings": "types/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"types",
"main",
"module"
],
"scripts": {
"build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build": "npm run build:module && npm run build:main",
"build:ts": "tsc --project ./tsconfig.json",
"prepare": "npm run build",
"dev": "cross-env NODE_ENV=development babel-node src/index",
"watch": "cross-env NODE_ENV=development babel-watch src/index",
"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": [],
"bugs": {
"url": "https://github.com/cosmology-tech/cosmos-kit/issues"
},
"jest": {
"testPathIgnorePatterns": [
"main/",
"module/",
"types/"
]
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.19.1",
"@babel/eslint-parser": "^7.5.4",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.1",
"@babel/preset-typescript": "^7.16.7",
"@cosmjs/cosmwasm-stargate": "^0.29.0",
"@cosmjs/stargate": "^0.29.0",
"@types/jest": "^29.0.3",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.0.3",
"babel-watch": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "8.23.1",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"jest": "^29.0.3",
"jest-in-case": "^1.0.2",
"prettier": "^2.1.2",
"regenerator-runtime": "^0.13.7",
"ts-jest": "^29.0.1",
"typescript": "4.8.3"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"@chain-registry/keplr": "1.0.0",
"@chain-registry/types": "^0.11.0",
"@chakra-ui/react": "^2.2.9",
"@cosmos-kit/core": "^0.19.9",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@keplr-wallet/types": "^0.11.3",
"@keplr-wallet/wc-client": "^0.11.3",
"@walletconnect/client": "1.8.0",
"events": "3.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0"
},
"peerDependencies": {
"@cosmjs/cosmwasm-stargate": "^0.28",
"@cosmjs/stargate": "^0.28"
},
"gitHead": "6d42132a3dfe3b621c14a7ad19111fc0d6c2cbd1"
}