-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.7 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
{
"name": "@zerodev/wallet-react-ui",
"version": "0.0.3",
"description": "React wallet UI kit for ZeroDev (auth + signing flows)",
"repository": {
"type": "git",
"url": "git+https://github.com/zerodevapp/zerodev-wallet-sdk.git",
"directory": "packages/wallet-react-ui"
},
"sideEffects": [
"**/*.css"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/_types/index.d.ts",
"exports": {
".": {
"types": "./dist/_types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"src/**/*.ts",
"src/**/*.tsx",
"!dist/**/*.tsbuildinfo",
"!.env",
"!src/signing/**",
"!src/**/*.test.ts",
"!src/**/*.test.tsx",
"!src/**/*.stories.ts",
"!src/**/*.stories.tsx",
"!.changeset"
],
"scripts": {
"build": "pnpm run clean && pnpm run build:css && pnpm run build:js && pnpm run build:types",
"build:css": "npx @tailwindcss/cli -i ./src/styles.css -o ./dist/styles.css --minify",
"build:js": "vite build",
"build:types": "tsc --project ./tsconfig.build.json --outDir ./dist/_types --emitDeclarationOnly --declaration --declarationMap",
"dev": "tsc --watch",
"dev:css": "npx @tailwindcss/cli -i ./src/styles.css -o ./dist/styles.css --watch",
"typecheck": "tsc --noEmit --project ./tsconfig.build.json",
"clean": "rm -rf dist",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"react",
"components",
"ui",
"wallet",
"zerodev",
"web3"
],
"dependencies": {
"@zerodev/react-ui": "workspace:*"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"@wagmi/core": "^2.22.0 || ^3.0.0",
"@zerodev/wallet-core": "workspace:*",
"@zerodev/wallet-react": "workspace:*",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"viem": "^2.47.18",
"wagmi": "^2.19.0 || ^3.0.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@storybook/addon-a11y": "^10.3.3",
"@storybook/addon-docs": "^10.3.3",
"@storybook/react-vite": "^10.3.3",
"@tailwindcss/cli": "^4.2.2",
"@tailwindcss/postcss": "^4.2.2",
"@tanstack/react-query": "^5.90.21",
"@testing-library/react": "^16.3.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.7.0",
"postcss": "^8.5.8",
"react": "19.2.0",
"react-dom": "19.2.0",
"storybook": "^10.3.3",
"tailwindcss": "^4.2.2",
"typescript": "5.9.3",
"vite": "^6.4.1",
"vite-plugin-node-polyfills": "^0.25.0"
},
"type": "module"
}