feat: add companion API and Android APK shell

This commit is contained in:
Hermes Agent
2026-07-09 04:43:00 +00:00
parent bd0cf34aa3
commit 7eb9648eb7
92 changed files with 7907 additions and 877 deletions
+32 -1
View File
@@ -1 +1,32 @@
{"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"},"dependencies":{"@hermes-mobile/shared":"workspace:*","lucide-react":"^0.468.0","react":"^19.0.0","react-dom":"^19.0.0"},"devDependencies":{"@types/react":"^19.0.2","@types/react-dom":"^19.0.2","@vitejs/plugin-react":"^4.3.4","vite":"^6.0.7"}}
{
"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"
},
"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"
}
}