mirror of
https://github.com/kccleoc/seedpgp-web.git
synced 2026-03-06 17:37:51 +08:00
- Update package.json version to v1.4.7 - Update README.md header to v1.4.7 - Update GEMINI.md version references to v1.4.7 - Update RECOVERY_PLAYBOOK.md version to v1.4.7 - Update SECURITY_AUDIT_REPORT.md version to v1.4.7 - Move documentation files to doc/ directory for better organization - Add new documentation files: LOCAL_TESTING_GUIDE.md, SERVE.md, TAILS_OFFLINE_PLAYBOOK.md - Add Makefile and serve.ts for improved development workflow
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "seedpgp-web",
|
|
"private": true,
|
|
"version": "1.4.7",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test",
|
|
"test:integration": "bun test src/integration.test.ts",
|
|
"serve": "bun ./serve.ts",
|
|
"serve:py": "cd dist && python3 -m http.server 8000"
|
|
},
|
|
"dependencies": {
|
|
"@types/bip32": "^2.0.4",
|
|
"@types/bip39": "^3.0.4",
|
|
"@types/pako": "^2.0.4",
|
|
"bip32": "^5.0.0",
|
|
"buffer": "^6.0.3",
|
|
"html5-qrcode": "^2.3.8",
|
|
"jsqr": "^1.4.0",
|
|
"lucide-react": "^0.462.0",
|
|
"openpgp": "^6.3.0",
|
|
"pako": "^2.1.0",
|
|
"qrcode": "^1.5.4",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"tiny-secp256k1": "^2.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.6",
|
|
"@types/node": "^25.2.1",
|
|
"@types/qrcode": "^1.5.5",
|
|
"@types/qrcode-generator": "^1.0.6",
|
|
"@types/react": "^18.3.12",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@vitejs/plugin-basic-ssl": "^2.1.4",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.49",
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "^5.6.2",
|
|
"vite": "^6.0.3",
|
|
"vite-plugin-top-level-await": "^1.6.0",
|
|
"vite-plugin-wasm": "^3.5.0"
|
|
}
|
|
} |