-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.17 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
{
"name": "@vaporfi/core-wagmi-connector",
"version": "1.0.4",
"description": "An injected connector for core wallet.",
"keywords": [
"wagmi",
"viem",
"ethereum",
"avalanche",
"connector"
],
"repository": {
"type": "git",
"url": "https://github.com/VaporFi/core-wagmi-connector.git"
},
"license": "MIT",
"author": "Hitesh Agrawal (https://github.com/Thehitesh172)",
"contributors": [
{
"name": "Jose Mejias"
}
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup src/index.ts --clean --dts --format cjs,esm --external viem,wagmi",
"prepare": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@wagmi/core": "1.3.8",
"typescript": "5.1.6",
"viem": "1.5.3",
"wagmi": "1.3.9"
},
"devDependencies": {
"tsup": "7.2.0"
},
"peerDependencies": {
"viem": "1.5.3",
"wagmi": "1.3.9"
},
"engines": {
"node": ">=18"
}
}