{ "name": "@elizaos/plugin-facewear", "version": "2.0.3-beta.7", "type": "module", "description": "Even Realities G1/G2 smartglasses control, display, microphone, bridge Wi-Fi setup, and diagnostics.", "main": "./dist/index.js", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "import": "./dist/index.js", "default": "./dist/index.js" }, "./register": { "types": "./dist/register.d.ts", "import": "./dist/register.js", "default": "./dist/register.js" }, "./*": { "types": "./dist/*.d.ts", "eliza-source": { "types": "./src/*.ts", "import": "./src/*.ts", "default": "./src/*.ts" }, "import": "./dist/*.js", "default": "./dist/*.js" } }, "scripts": { "typecheck": "tsgo --noEmit -p tsconfig.json", "lint": "bunx @biomejs/biome check --write --unsafe .", "test": "NODE_OPTIONS='--experimental-sqlite' vitest run --config ./vitest.config.ts", "build": "bun run build:js && bun run build:types", "build:js": "tsup --config ../tsup.plugin-packages.shared.ts", "build:types": "bunx tsc --noCheck -p tsconfig.build.json && node ../../packages/scripts/rewrite-dist-relative-imports-node-esm.mjs", "verify:app": "bunx vitest --root ../.. run packages/registry/src/first-party/facewear-registry.test.ts packages/app/src/plugin-registrations.test.ts", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format ." }, "dependencies": { "@elizaos/agent": "workspace:*", "@elizaos/core": "workspace:*", "@elizaos/shared": "workspace:*", "@elizaos/ui": "workspace:*", "lucide-react": "^1.0.0", "zod": "^4.4.3" }, "peerDependencies": { "react": "^19.0.0", "react-dom": "^19.0.0" }, "optionalDependencies": { "@abandonware/noble": "^1.9.2-25" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^25.0.3", "@types/react": "^19.2.3", "@types/react-dom": "^19.2.3", "bun-types": "^1.3.14", "react": "^19.0.0", "react-dom": "^19.0.0", "tsup": "^8.5.1", "typescript": "^6.0.3", "vite": "8.0.16", "vitest": "^4.0.17" }, "elizaos": { "plugin": { "displayName": "Facewear", "category": "hardware" }, "appRegister": "register" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "FACEWEAR_SMARTGLASSES_TRANSPORT": { "type": "string", "description": "Even Realities transport selection.", "required": false, "default": "auto", "enum": [ "auto", "even-bridge", "web-bluetooth", "noble" ] }, "FACEWEAR_SCAN_TIMEOUT_MS": { "type": "number", "description": "BLE scan timeout (ms) for Noble transport.", "required": false, "default": 10000 }, "FACEWEAR_AUTO_INIT": { "type": "boolean", "description": "Send G1 connection-ready init packets automatically.", "required": false, "default": true }, "FACEWEAR_INIT_MODE": { "type": "string", "description": "G1 connection-ready init mode.", "required": false, "default": "lens-specific", "enum": [ "lens-specific", "official", "android-f4" ] } } }, "publishConfig": { "access": "public" }, "types": "./dist/index.d.ts", "files": [ "registry-entry.json", "assets", "dist", "docs" ] }