All checks were successful
/ build-web (push) Successful in 5m35s
/ build-desktop (linux) (push) Successful in 9m41s
/ build-mobile (push) Successful in 20m12s
/ release (push) Successful in 1m51s
Dependency builds / Build web (pull_request) Has been skipped
Dependency builds / Build desktop (pull_request) Has been skipped
Dependency builds / Build mobile (pull_request) Has been skipped
36 lines
1.7 KiB
JSON
36 lines
1.7 KiB
JSON
{
|
|
"name": "@tensamin/tauri",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
"./deeplinkHandler": {
|
|
"types": "./src/deeplinkHandler.tsx",
|
|
"default": "./src/deeplinkHandler.tsx"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev:mobile:raw": "adb reverse tcp:3000 tcp:3000 && tauri android dev --host ${TAURI_DEV_HOST:-127.0.0.1}",
|
|
"start-adb:mobile:raw": "adb devices",
|
|
"build:mobile:raw": "tauri android build",
|
|
"build:mobile:ci": "node render-version.ts && trap 'node render-version.ts --unrender' EXIT && tauri android build --debug",
|
|
"dev:mobile": "if command -v nix >/dev/null 2>&1 && [ -z \"$IN_NIX_SHELL\" ]; then nix develop ../..#tauri --command pnpm run dev:mobile:raw; else pnpm run dev:mobile:raw; fi",
|
|
"start-adb:mobile": "if command -v nix >/dev/null 2>&1 && [ -z \"$IN_NIX_SHELL\" ]; then nix develop ../..#tauri --command pnpm run start-adb:mobile:raw; else pnpm run start-adb:mobile:raw; fi",
|
|
"build:mobile": "node render-version.ts && trap 'node render-version.ts --unrender' EXIT && if command -v nix >/dev/null 2>&1 && [ -z \"$IN_NIX_SHELL\" ]; then nix develop ../..#tauri --command pnpm run build:mobile:raw; else pnpm run build:mobile:raw; fi",
|
|
"gen-icons": "tauri icon ./logo.json && node scripts/sync-electron-icons.ts",
|
|
"format": "pnpm exec prettier --write .",
|
|
"lint": "eslint src"
|
|
},
|
|
"dependencies": {
|
|
"@methanium/ui": "*",
|
|
"@tauri-apps/api": "^2.11.1",
|
|
"@tauri-apps/plugin-deep-link": "~2.4.9",
|
|
"@tensamin/shared": "workspace:*",
|
|
"react": "^19.2.8",
|
|
"react-dom": "^19.2.8"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.11.4",
|
|
"@types/node": "^26.1.2"
|
|
}
|
|
}
|