{ "name": "@elizaos/plugin-native-filesystem", "version": "2.0.3-beta.7", "description": "Mobile-safe filesystem bridge for canonical FILE target=device operations on iOS/Android and desktop/AOSP.", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "sideEffects": false, "repository": { "type": "git", "url": "https://github.com/elizaos/eliza.git" }, "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" } }, "files": [ "dist" ], "keywords": [ "eliza", "plugin", "filesystem", "capacitor", "mobile", "ios", "android" ], "author": "elizaOS", "license": "MIT", "dependencies": { "@elizaos/core": "workspace:*", "zod": "^4.4.3" }, "peerDependencies": { "@elizaos/core": "workspace:*" }, "optionalDependencies": { "@capacitor/filesystem": "^8.1.2" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@capacitor/filesystem": "^8.1.2", "@types/node": "^25.0.3", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "scripts": { "build": "bun run build.ts", "dev": "bun --hot build.ts", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist .turbo", "test": "vitest run", "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 .", "check": "bun run typecheck && bun run test" }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": {} }, "eliza": { "platforms": [ "node", "ios", "android" ], "runtime": "node", "platformDetails": { "node": "Filesystem rooted under resolveStateDir()/workspace", "ios": "Capacitor Filesystem Directory.Documents", "android": "Capacitor Filesystem Directory.Documents" } } }