Files
hermes-mobile/apps/mobile/package.json
T
2026-07-09 04:57:47 +00:00

34 lines
1005 B
JSON

{
"name": "@hermes-mobile/mobile",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc -p tsconfig.json && vite build",
"preview": "vite preview --host 0.0.0.0",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src",
"cap:add:android": "cap add android",
"cap:sync": "npm run build && cap sync android",
"android:open": "cap open android",
"android:build:debug": "npm run cap:sync && cd android && ./gradlew assembleDebug"
},
"dependencies": {
"@hermes-mobile/shared": "file:../../packages/shared",
"lucide-react": "^0.468.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@capacitor/android": "^7.4.0",
"@capacitor/core": "^7.4.0",
"@capacitor/haptics": "^7.0.2"
},
"devDependencies": {
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"vite": "^6.0.7",
"@capacitor/cli": "^7.4.0"
}
}