- Vite + React app with dark Bitcoin-orange theme - HD Wallet: generate, display seed/xpub/addresses, save with encryption - Single addresses: P2PKH, P2WPKH, P2TR, P2PK, P2SH (multisig) - Decrypt: load encrypted JSON wallet and reveal private data - Bitcoin SVG icon in public/icons/ - Vite proxy /api → localhost:8000
27 lines
603 B
JSON
27 lines
603 B
JSON
{
|
|
"name": "bitcoin-address-generator",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"vite": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^5.1.1",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
"globals": "^16.5.0",
|
|
"vite": "^7.3.1"
|
|
}
|
|
}
|