Files
afilmory/packages/webgl-viewer/package.json
Innei be6fdce89a feat: enhance EXIF data processing and worker initialization
- Updated the EXIF data formatting logic to conditionally include GPS information only when latitude and longitude are available.
- Introduced a new worker initialization message structure to facilitate the transfer of shared data between the main process and workers.
- Enhanced the worker process to handle initialization messages and deserialize shared data for improved task management.
- Refactored the manifest loading and saving functions to support a new manifest structure, ensuring compatibility with the updated data handling.

Signed-off-by: Innei <tukon479@gmail.com>
2025-06-17 16:37:42 +08:00

38 lines
786 B
JSON

{
"name": "@afilmory/webgl-viewer",
"type": "module",
"version": "0.2.0",
"packageManager": "pnpm@10.12.1",
"description": "",
"author": "Innei",
"license": "MIT",
"exports": {
".": "./src/index.ts"
},
"main": "./src/index.ts",
"scripts": {
"build": "vite build",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "7.52.8",
"@types/react": "19.1.8",
"nbump": "2.1.2",
"tsdown": "0.12.7",
"unplugin-dts": "1.0.0-beta.0",
"vite": "6.3.5"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
}
}
}