- Implement ShareManager with native Capacitor sharing, web share fallback, and clipboard fallback plus typed share lifecycle events - Implement DeepLinkManager with native appUrlOpen and browser hash listeners, URL parsing for fusion schemes and universal links, and error events - Wire plugin exports and initializePlugins support for share/deepLinks options, and configure Capacitor iOS/Android fusion URL schemes - Add comprehensive Vitest coverage for sharing and deep-link behavior and document usage in the mobile package README
30 lines
794 B
JSON
30 lines
794 B
JSON
{
|
|
"name": "@fusion/mobile",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"cap": "cap",
|
|
"dev:ios": "tsx scripts/live-reload.ts --platform ios",
|
|
"dev:android": "tsx scripts/live-reload.ts --platform android",
|
|
"build:mobile": "pnpm --filter @fusion/dashboard build && npx cap sync",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@capacitor/app": "^7.1.2",
|
|
"@capacitor/core": "^7.0.0",
|
|
"@capacitor/push-notifications": "^7.0.0",
|
|
"@capacitor/share": "^7.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@capacitor/android": "^7.0.0",
|
|
"@capacitor/cli": "^7.0.0",
|
|
"@capacitor/ios": "^7.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.1.0"
|
|
}
|
|
}
|