Documentation Index
Fetch the complete documentation index at: https://docs.quepass.com/llms.txt
Use this file to discover all available pages before exploring further.
1. Prerequisites
- Node.js >= 18.x
- npm >= 9.x (or yarn/pnpm)
- TypeScript >= 5.3.3 (recommended)
- Vite >= 6.0.0 (recommended bundler)
2. Setup
PROJECT STRUCTURE (Reference: quepass-offline-app)
my-verification-app/
+— src/
| +— App.tsx // Root application component
| +— main.tsx // Entry point with CSS imports
| +— routes/
| | +— Welcome.tsx // SDK initialization page
| | +— DocumentCapture.tsx // Document-only capture
| | +— FaceCapture.tsx // Face-only capture
| | +— DocumentFaceCapture.tsx // Document + Face capture
| | +— Error.tsx // Error handling page
| +— components/ // Shared UI components
| +— context/ // React context providers
+— package.json
+— vite.config.ts
+— tsconfig.json
+— index.html
- REFERENCE APP DEPENDENCIES (quepass-offline-app/package.json):
- RUNNING THE REFERENCE APP