{ "name": "@elizaos/capacitor-browser-surface", "version": "2.0.3-beta.7", "description": "Layers isolated native web surfaces (iOS WKWebView pool, Android out-of-process WebView) for the Browser view's third-party tabs.", "keywords": [ "browser", "webview", "isolation", "surface" ], "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", "dist/", "ios/Sources/", "ios/Plugin.xcodeproj/", "*.podspec", "dist" ], "author": "elizaOS", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/elizaOS/eliza" }, "scripts": { "build": "node ../../packages/scripts/with-package-build-lock.mjs plugins/plugin-native-browser-surface -- bun run build:unlocked", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist", "prepublishOnly": "bun run build", "test": "vitest run --config vitest.config.ts", "watch": "tsc --watch", "build:unlocked": "bun run clean && tsc && bunx rollup -c rollup.config.mjs", "typecheck": "tsgo --noEmit -p tsconfig.json", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format ." }, "devDependencies": { "@capacitor/core": "^8.3.1", "@rollup/plugin-node-resolve": "^16.0.0", "rollup": "^4.60.2", "typescript": "^6.0.3", "vitest": "^4.0.18" }, "peerDependencies": { "@capacitor/core": "^8.3.1" }, "publishConfig": { "access": "public" }, "capacitor": { "ios": { "src": "ios", "podName": "ElizaosCapacitorBrowserSurface" }, "android": { "src": "android" } }, "elizaos": { "platforms": [ "browser", "node" ], "runtime": "both", "platformDetails": { "browser": "Not supported — a web host has no native child web surface; every method rejects as unavailable.", "node": "Not supported on the desktop shell (desktop uses the Electrobun WebContentsView path); every method rejects as unavailable.", "ios": true, "android": true } } }