-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.34 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.34 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
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
{
"name": "ethereum-identity-kit",
"version": "0.2.76",
"description": "Ethereum Identity Kit - Complete your dapp with the Ethereum identity stack.",
"keywords": [
"ethereum identity kit",
"ethereum identity stack",
"ethereum follow protocol",
"ethereum name service",
"ethereum identity",
"ethereum",
"identity",
"kit",
"EIK",
"EFP",
"ENS",
"SIWE"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types.d.ts",
"typings": "dist/types.d.ts",
"scripts": {
"rollup": "rollup -c --bundleConfigAsCjs",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --project tsconfig.json --noEmit",
"checks": "npm run format && npm run typecheck && npm run lint && npm run rollup"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./css": "./dist/esm/index.css",
"./utils": {
"types": "./dist/types.d.ts",
"import": "./dist/esm/utils/index.js",
"require": "./dist/cjs/utils/index.js"
}
},
"repository": "https://github.com/ethereumidentitykit/ethereum-identity-kit",
"author": {
"name": "Ethereum Identity Kit",
"url": "https://ethidentitykit.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumidentitykit/ethereum-identity-kit/issues"
},
"homepage": "https://github.com/ethereumidentitykit/ethereum-identity-kit#readme",
"devDependencies": {
"@adraffy/ens-normalize": "^1.0.0",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@storybook/addon-essentials": "^8.4.6",
"@storybook/addon-interactions": "^8.4.6",
"@storybook/addon-onboarding": "^8.4.6",
"@storybook/blocks": "^8.4.6",
"@storybook/manager-api": "^8.4.7",
"@storybook/react": "^8.4.6",
"@storybook/react-vite": "^8.4.6",
"@storybook/test": "^8.4.6",
"@storybook/theming": "^8.4.7",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.0",
"babel-jest": "^29.0.0",
"clsx": "^2.0.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.13.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.4.6",
"tslib": "^2.8.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.18.0"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"viem": "^2.0.0",
"wagmi": "^2.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
}
}