This commit is contained in:
imeepos 2025-12-25 16:22:37 +08:00
parent ab0bcc8721
commit a74f52cc51
4 changed files with 2763 additions and 6 deletions

2
.npmrc
View File

@ -1,2 +1,2 @@
@repo:registry=https://gitea.bowongai.com/api/packages/bowong/npm/
//gitea.bowongai.com/api/packages/bowong/npm/:_authToken=43a1f5492d9f27ad8a9de598e27693fef1aa837c
//gitea.bowongai.com/api/packages/bowong/npm/:_authToken=43a1f5492d9f27ad8a9de598e27693fef1aa837c

View File

@ -41,7 +41,7 @@ const Toast = (function () {
// insets = staticInsets
// })
let toastTimer: number | null = null
let toastTimer: ReturnType<typeof setTimeout> | null = null
const show = (params?: ShowParams): void => {
const { renderContent, title, duration = 2000, hideBackdrop = true } = params || {}
hide()
@ -90,7 +90,7 @@ const Toast = (function () {
}
// loading
let loadingTimer: number | null = null
let loadingTimer: ReturnType<typeof setTimeout> | null = null
const showLoading = (params?: ShowParams): void => {
const { renderContent, title, duration = 1500, hideBackdrop = false } = params || {}
hideLoading()

2756
bun.lock Normal file

File diff suppressed because it is too large Load Diff

View File

@ -2,9 +2,10 @@
"name": "expo-duooomi-app",
"main": "expo-router/entry",
"version": "1.0.0",
"packageManager": "bun@1.3.3",
"packageManager": "bun@1.3.5",
"private": true,
"scripts": {
"claude": "claude --dangerously-skip-permissions",
"start": "dotenv -e .env.development -- expo start",
"start:test": "dotenv -e .env.test -- expo start",
"start:prod": "dotenv -e .env.production -- expo start",
@ -31,8 +32,8 @@
"export:icp:ios:skip": "bun run scripts/export-icp-source.ts --platform ios --skip-prebuild"
},
"dependencies": {
"@repo/core": "0.0.1",
"@repo/sdk": "0.0.1",
"@repo/core": "1.0.1",
"@repo/sdk": "1.0.1",
"@better-auth/expo": "^1.4.5",
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "^2.2.0",