generated from Dhaiwat10/react-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
{
"name": "@web3-ui/components",
"license": "MIT",
"version": "0.12.0",
"private": false,
"description": "React UI components for web3",
"keywords": [
"web3",
"ui",
"react",
"hooks",
"web3-ui",
"components"
],
"author": "Developer DAO",
"homepage": "https://github.com/Developer-DAO/web3-ui/",
"bugs": {
"url": "https://github.com/Developer-DAO/web3-ui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Developer-DAO/web3-ui/"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup ./src/index.tsx --format esm,cjs --dts --external react",
"dev": "tsup ./src/index.tsx --format esm,cjs --watch --dts --external react",
"lint": "TIMING=1 eslint src/**/*.ts* --fix",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "jest --coverage --colors",
"clean": "rm -rf node_modules",
"clean-windows": "rd /s /q node_modules"
},
"devDependencies": {
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-avatar": "1.0.0",
"@radix-ui/react-checkbox": "^1.0.0",
"@radix-ui/react-dialog": "1.0.0",
"@radix-ui/react-dropdown-menu": "^1.0.0",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-menu": "^1.0.0",
"@radix-ui/react-radio-group": "1.0.0",
"@radix-ui/react-slider": "1.0.0",
"@radix-ui/react-switch": "1.0.0",
"@radix-ui/react-tooltip": "1.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.4",
"@types/react": "18.0.15",
"@types/react-dom": "^18.0.6",
"alchemy-sdk": "^2.0.3",
"ankr-react": "^0.3.0",
"eslint": "^8.20.0",
"eslint-config-custom": "*",
"ethers": "^5.6.9",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"react": "18.1.0",
"ts-jest": "^28.0.5",
"tsconfig": "*",
"tsup": "^6.2.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@radix-ui/colors": "^0.1.8",
"@stitches/react": "^1.2.8",
"@web3-ui/hooks": "*",
"react-jazzicon": "^1.0.4"
},
"peerDependencies": {
"ethers": ">=5.5.1",
"react": ">=17",
"react-dom": ">=17",
"wagmi": "0.5.x"
},
"publishConfig": {
"access": "public"
}
}