forked from EveripediaNetwork/wagmi-magic-connector
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "@magiclabs/wagmi-connector",
"version": "2.1.1",
"description": "wagmi connector to connect with Magic SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": "https://github.com/magiclabs/wagmi-magic-connector",
"license": "MIT",
"keywords": [
"wagmi",
"extension",
"magic"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc-esm-fix --target='dist' --ext='.js'",
"format": "rome format . --write",
"lint": "rome check .",
"lint:fix": "yarn lint --apply",
"watch:build": "tsc -p tsconfig.json -w",
"release": "yarn build && changeset publish"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@changesets/cli": "^2.24.0",
"@magic-ext/oauth": "^12.3.0",
"@magic-sdk/provider": "^28.6.0",
"@wagmi/connectors": "^4.1.14",
"@wagmi/core": "^2.6.5",
"magic-sdk": "^28.6.0",
"tsc-esm-fix": "^2.20.10"
},
"devDependencies": {
"@types/node": "^20.11.24",
"changeset": "^0.2.6",
"rome": "12.0.0",
"typescript": "^5.0.4",
"viem": "2.x"
},
"peerDependencies": {
"viem": "2.x"
},
"files": [
"dist",
"!**/*.test.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}