qrcodedemo/package.json
Michael Mainguy de188fb77a Add ImageTracer integration and precise coordinate system for bitmap vectorization
- Integrated ImageTracer npm package for bitmap-to-vector conversion
- Fixed coordinate system to use 33x33 QR code coordinate space
- Implemented precise decimal coordinates for perfect centering
- Added custom bitmap-to-vector conversion as fallback
- Fixed white box and image positioning alignment
- Added comprehensive debugging and error handling
2025-08-01 17:01:23 -05:00

22 lines
397 B
JSON

{
"name": "qrcodes",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.7.0",
"vite": "^7.0.4"
},
"dependencies": {
"imagetracer": "^0.2.2",
"qrcode": "^1.5.4",
"react": "^19.1.1",
"react-dom": "^19.1.1"
}
}