{ "name": "@elizaos/plugin-native-settings", "version": "2.0.3-beta.7", "type": "module", "description": "Android Device Settings overlay app for ElizaOS — brightness, volume, Android roles, and system settings shortcuts.", "main": "./dist/index.js", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" }, "./plugin": { "types": "./dist/plugin.d.ts", "import": "./dist/plugin.js", "default": "./dist/plugin.js" }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/*.d.ts", "import": "./dist/*.js", "default": "./dist/*.js" } }, "scripts": { "typecheck": "tsgo --noEmit -p tsconfig.json", "lint": "bunx @biomejs/biome check --write --unsafe .", "test": "bunx vitest run --config ./vitest.config.ts", "build": "bun run build:js && bun run build:types", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist", "build:js": "tsup --config ../tsup.plugin-packages.shared.ts", "build:types": "tsc --noCheck -p tsconfig.build.json", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format ." }, "dependencies": { "@elizaos/app-core": "workspace:*", "@elizaos/capacitor-system": "workspace:*", "@elizaos/core": "workspace:*", "@elizaos/shared": "workspace:*", "@elizaos/ui": "workspace:*", "lucide-react": "^1.0.0" }, "peerDependencies": { "react": "^19.0.0", "react-dom": "^19.0.0" }, "elizaos": { "app": { "displayName": "Device Settings", "category": "system", "androidOnly": true, "heroImage": "assets/hero.png" }, "appRegister": "register" }, "publishConfig": { "access": "public" }, "types": "./dist/index.d.ts", "files": [ "dist" ], "devDependencies": { "tsup": "^8.5.1", "typescript": "^6.0.3", "vitest": "^4.0.17" } }