-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "flow-dev-wallet",
"version": "0.1.0",
"description": "Flow Dev Wallet - Multi-signer wallet supporting passkey, seed phrase, and private key",
"private": true,
"scripts": {
"dev": "bun next dev",
"build": "bun next build",
"start": "bun next start",
"lint": "bun next lint"
},
"dependencies": {
"@flowindex/evm-wallet": "^0.1.0",
"@flowindex/flow-passkey": "latest",
"@flowindex/flow-signer": "latest",
"@onflow/fcl": "^1.21.9",
"@onflow/rlp": "^1.2.4",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.6",
"elliptic": "^6.5.4",
"eslint": "8.49.0",
"eslint-config-next": "^16.2.1",
"lucide-react": "^0.577.0",
"motion": "^12.38.0",
"next": "^16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.6.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.47.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.0",
"typescript": "^5.9.3"
}
}