forked from likecoin/likecoin-wallet-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.55 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
{
"version": "0.26.3",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@likecoin/wallet-connector",
"author": "Ng Wing Tat, David",
"module": "dist/wallet-connector.esm.js",
"size-limit": [
{
"path": "dist/wallet-connector.cjs.production.min.js",
"limit": "400 KB"
},
{
"path": "dist/wallet-connector.esm.js",
"limit": "350 KB"
}
],
"devDependencies": {
"@babel/core": "^7.18.5",
"@keplr-wallet/types": "^0.11.3",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.5.9",
"@storybook/addons": "^6.5.9",
"@storybook/react": "^6.5.9",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-modal": "^3.13.1",
"@walletconnect/legacy-types": "^2.0.0",
"@walletconnect/types": "^2.8.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"husky": "^8.0.1",
"postcss": "^8.4.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^7.0.8",
"tailwindcss": "^3.1.4",
"ts-jest": "^25.3.1",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@cosmjs/proto-signing": "^0.28.13",
"@headlessui/react": "1.7.11",
"@leapwallet/cosmos-snap-provider": "^0.1.24",
"@likecoin/authcore-js": "0.3.0-like.1",
"@likecoin/secretd-js": "^0.4.4",
"@walletconnect/browser-utils": "^1.8.0",
"@walletconnect/modal": "^2.4.5",
"@walletconnect/sign-client": "^2.8.0",
"@walletconnect/utils": "2.8.0",
"classnames": "^2.3.1",
"cosmjs-types": "^0.5.1",
"qrcode.react": "^3.1.0",
"react-intl": "^6.2.5"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
}
}