-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
133 lines (133 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
126
127
128
129
130
131
132
133
{
"name": "@viaprotocol/web3-wallets",
"version": "1.1.14",
"private": false,
"description": "Universal interface for web3 wallets",
"author": "Via Protocol (https://via.exchange)",
"license": "MIT",
"repository": "https://github.com/viaprotocol/web3-wallets.git",
"bugs": {
"url": "https://github.com/viaprotocol/web3-wallets/issues"
},
"keywords": [
"blockchain",
"ethereum",
"react",
"solana",
"web3",
"typescript"
],
"sideEffects": false,
"source": "src/index.ts",
"exports": {
"./package.json": "./package.json",
".": {
"module": "./build/index.esm.js",
"default": "./build/index.cjs.js"
},
"./types": {
"types": "./build/types.d.ts"
}
},
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"typesVersions": {
"*": {
"types": [
"build/types.d.ts"
]
}
},
"files": [
"/build"
],
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"clean": "shx rm -rf ./build",
"build": "yarn clean && microbundle --entry src/index.ts --jsx React.createElement --visualize --tsconfig tsconfig.json --compress false --format esm,cjs",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"publish:yalc": "yarn build && yalc publish --no-script --push",
"publish:rc": "npm version prerelease --preid=rc && yarn build && npm publish --tag rc --access public",
"publish:latest": "yarn build && npm publish --tag latest --access public",
"build:test": "microbundle --visualise --tsconfig tsconfig.json",
"test:treeshake": "agadoo"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"contributors": [
{
"name": "Aleksey Lisun",
"url": "https://github.com/insulineru"
},
{
"name": "Iower",
"url": "https://github.com/iower"
},
{
"name": "Max Korolev",
"url": "https://github.com/nrjshka"
}
],
"peerDependencies": {
"ethers": "5.7.2",
"react": "^18.1.0"
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.3.0",
"@cosmjs/launchpad": "0.24.1",
"@cosmjs/stargate": "^0.27.0",
"@ethersproject/providers": "^5.6.8",
"@gnosis.pm/safe-apps-provider": "^0.14.0",
"@gnosis.pm/safe-apps-sdk": "^7.8.0",
"@keplr-wallet/cosmos": "^0.9.9",
"@keplr-wallet/types": "^0.10.13",
"@metamask/providers": "^8.1.1",
"@solana/spl-name-service": "^0.1.4",
"@solana/wallet-adapter-base": "^0.9.9",
"@solana/wallet-adapter-phantom": "^0.9.8",
"@solana/web3.js": "^1.43.5",
"@tanstack/query-sync-storage-persister": "^4.24.10",
"@tanstack/react-query": "^4.24.10",
"@tanstack/react-query-persist-client": "^4.24.10",
"@uniswap/permit2-sdk": "^1.2.0",
"@walletconnect/web3-provider": "^1.7.8",
"abitype": "^0.1.7",
"ethers": "5.7.2",
"ismobilejs": "^1.1.1",
"long": "^5.2.0",
"rango-sdk": "^0.0.5",
"web3": "^1.10.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.12",
"agadoo": "^2.0.0",
"eslint": "^8.18.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"microbundle": "^0.15.1",
"rollup-plugin-polyfill-node": "^0.10.2",
"shx": "^0.3.4",
"ts-patch": "^2.0.1",
"typescript": "^4.7.3",
"typescript-transform-paths": "^3.3.1"
},
"browserslist": [
"last 2 major versions",
"Chrome >= 60",
"Firefox >= 60",
"Firefox ESR",
"iOS >= 12",
"Safari >= 12",
"not op_mini all",
"not Explorer <= 11",
"not dead"
]
}