-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
{
"name": "addreth",
"version": "3.0.1",
"license": "MIT",
"author": "Pierre Bertet <hi@bpier.re>",
"description": "",
"keywords": [
"ethereum",
"eth",
"identicon",
"blockies",
"web3",
"dapps",
"badge",
"address",
"etherscan"
],
"homepage": "https://github.com/bpierre/addreth",
"bugs": "https://github.com/bpierre/addreth/issues",
"repository": "github:bpierre/addreth",
"scripts": {
"build": "pnpm tsc && node ./build.js",
"lint": "pnpm oxlint ./src --import-plugin --react-perf-plugin --jsx-a11y-plugin --allow pedantic"
},
"type": "module",
"sideEffects": false,
"module": "./dist/index.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"default": "./dist/index.js"
},
"./no-wagmi": {
"types": "./dist/index.d.ts",
"require": "./dist/index-no-wagmi.cjs.js",
"default": "./dist/index-no-wagmi.js"
},
"./styles.css": "./dist/index.css"
},
"files": [
"/dist"
],
"peerDependencies": {
"react": "18",
"react-dom": "18",
"wagmi": "2"
},
"devDependencies": {
"@compiled/babel-plugin": "^0.29.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vanilla-extract/css": "^1.15.3",
"@vanilla-extract/esbuild-plugin": "^2.3.8",
"@vanilla-extract/vite-plugin": "^4.0.13",
"@vitejs/plugin-react-swc": "^3.7.0",
"blo": "^1.2.0",
"esbuild": "^0.23.0",
"lightningcss": "^1.25.1",
"oxlint": "^0.6.1",
"rollup-plugin-preserve-directives": "^0.4.0",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-plugin-dts": "^3.9.1"
}
}