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)
34 lines
659 B
JSON
Executable file
34 lines
659 B
JSON
Executable file
{
|
|
"name": "sisteransi",
|
|
"version": "1.0.5",
|
|
"description": "ANSI escape codes for some terminal swag",
|
|
"main": "src/index.js",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Terkel Gjervig",
|
|
"email": "terkel@terkel.com",
|
|
"url": "https://terkel.com"
|
|
},
|
|
"scripts": {
|
|
"test": "tape test/*.js | tap-spec"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/terkelg/sisteransi"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"types": "./src/sisteransi.d.ts",
|
|
"keywords": [
|
|
"ansi",
|
|
"escape codes",
|
|
"escape",
|
|
"terminal",
|
|
"style"
|
|
],
|
|
"devDependencies": {
|
|
"tap-spec": "^5.0.0",
|
|
"tape": "^4.13.2"
|
|
}
|
|
}
|