{ "name": "@elizaos/capacitor-mobile-agent-bridge", "version": "2.0.3-beta.7", "description": "Outbound tunnel from a phone-hosted Eliza agent so a remote Mac client can reach it. See docs/reverse-direction-tunneling.md.", "keywords": [ "agent", "tunnel", "relay", "mobile", "ios", "android" ], "main": "./dist/plugin.cjs.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "exports": { ".": { "types": "./dist/esm/index.d.ts", "bun": "./src/index.ts", "development": "./src/index.ts", "import": "./dist/esm/index.js", "require": "./dist/plugin.cjs.js" }, "./package.json": "./package.json" }, "unpkg": "dist/plugin.js", "files": [ "android/src/main/", "android/build.gradle", "ios/Sources/", "ios/Plugin.xcodeproj/", "*.podspec", "dist" ], "author": "elizaOS", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/elizaOS/eliza" }, "scripts": { "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "fmt": "bunx @biomejs/biome check --write --unsafe .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format .", "build": "node ../../packages/scripts/with-package-build-lock.mjs plugins/plugin-native-mobile-agent-bridge -- bun run build:unlocked", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist", "test": "vitest run", "watch": "tsc --watch", "prepublishOnly": "bun run build", "build:unlocked": "bun run clean && tsc && bunx rollup -c rollup.config.mjs", "typecheck": "tsgo --noEmit -p tsconfig.json" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@capacitor/core": "^8.3.1", "rollup": "^4.60.2", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "peerDependencies": { "@capacitor/core": "^8.3.1" }, "publishConfig": { "access": "public" }, "capacitor": { "ios": { "src": "ios", "podName": "ElizaosCapacitorMobileAgentBridge" }, "android": { "src": "android" } }, "elizaos": { "platforms": [ "browser" ], "runtime": "both", "platformDetails": { "browser": "Fallback for non-native runtimes. Real transport lives on iOS/Android only.", "ios": true, "android": true } } }