46 lines
1.7 KiB
JSON
46 lines
1.7 KiB
JSON
{
|
|
"name": "@tensamin/tauri",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
"./controls": {
|
|
"types": "./src/windowControls.tsx",
|
|
"default": "./src/windowControls.tsx"
|
|
},
|
|
"./deeplinkHandler": {
|
|
"types": "./src/deeplinkHandler.tsx",
|
|
"default": "./src/deeplinkHandler.tsx"
|
|
},
|
|
"./qrCodeScanner": {
|
|
"types": "./src/qrCodeScanner.tsx",
|
|
"default": "./src/qrCodeScanner.tsx"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev:mobile:raw": "tauri android dev --host ${TAURI_DEV_HOST:-127.0.0.1}",
|
|
"start-adb:mobile:raw": "adb devices",
|
|
"build:mobile:raw": "tauri android build",
|
|
"dev:mobile": "if command -v nix >/dev/null 2>&1; then nix develop --command bun dev:mobile:raw; else bun dev:mobile:raw; fi",
|
|
"start-adb:mobile": "if command -v nix >/dev/null 2>&1; then nix develop --command bun start-adb:mobile:raw; else bun start-adb:mobile:raw; fi",
|
|
"build:mobile": "bun run render-version.ts && if command -v nix >/dev/null 2>&1; then nix develop --command bun build:mobile:raw; else bun build:mobile:raw; fi && bun run render-version.ts --unrender",
|
|
"gen-icons": "tauri icon ./logo.json && bun scripts/sync-electron-icons.ts",
|
|
"format": "bunx prettier --write .",
|
|
"lint": "eslint src"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/plugin-barcode-scanner": "~2",
|
|
"@tauri-apps/plugin-deep-link": "~2",
|
|
"@tauri-apps/plugin-log": "~2",
|
|
"@tauri-apps/plugin-notification": "~2",
|
|
"@tensamin/shared": "workspace:*",
|
|
"@tensamin/ui": "*",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2",
|
|
"@types/node": "^25.9.1"
|
|
}
|
|
}
|