New mobile/ directory with Capacitor project: - Configurable server URL launcher (default: app.pedshub.com) - Android: foreground service + wake lock for background recording (AudioRecordingService preserved from existing TWA) - iOS: background audio mode + microphone permission - App ID: com.pedshub.scribe - Both platforms initialized and synced Existing android/ TWA project untouched — this is a separate project. Build: cd mobile && npx cap open android (or ios)
43 lines
762 B
JSON
43 lines
762 B
JSON
{
|
|
"name": "untildify",
|
|
"version": "4.0.0",
|
|
"description": "Convert a tilde path to an absolute path: `~/dev` → `/Users/sindresorhus/dev`",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/untildify",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"contributors": [
|
|
"silverwind <me@silverwind.io> (https://silverwind.io)"
|
|
],
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava && tsd"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"keywords": [
|
|
"tilde",
|
|
"expansion",
|
|
"expand",
|
|
"untildify",
|
|
"path",
|
|
"home",
|
|
"directory",
|
|
"user",
|
|
"shell",
|
|
"bash"
|
|
],
|
|
"devDependencies": {
|
|
"ava": "^1.4.1",
|
|
"rewire": "^4.0.1",
|
|
"tsd": "^0.7.2",
|
|
"xo": "^0.24.0"
|
|
}
|
|
}
|