-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.25 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
{
"name": "@ceramicstudio/multiauth",
"author": "3Box Labs",
"version": "0.2.3",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"module": "dist/multiauth.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/core": "^6.1.9",
"@web3-react/fortmatic-connector": "^6.1.6",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/portis-connector": "^6.1.9",
"@web3-react/torus-connector": "^6.1.9",
"@web3-react/walletconnect-connector": "^6.2.0",
"caip": "^0.9.2",
"grommet": "^2.17.2",
"jotai": "^0.16.6",
"styled-components": "^5.3.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@rollup/plugin-image": "^2.0.6",
"@size-limit/preset-small-lib": "^4.11.0",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/parser": "^4.24.0",
"babel-loader": "^8.2.2",
"eslint": "^7.27.0",
"eslint-config-3box": "^0.2.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"size-limit": "^4.11.0",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/multiauth.cjs.production.min.js",
"limit": "200 KB"
},
{
"path": "dist/multiauth.esm.js",
"limit": "100 KB"
}
]
}