{ "name": "@elizaos/plugin-instagram", "version": "2.0.3-beta.7", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/*.d.ts", "eliza-source": { "types": "./src/*.ts", "import": "./src/*.ts", "default": "./src/*.ts" }, "import": "./dist/*.js", "default": "./dist/*.js" } }, "files": [ "registry-entry.json", "dist" ], "dependencies": { "@elizaos/core": "workspace:*", "@types/node": "^25.0.3", "typescript": "^6.0.3" }, "devDependencies": { "@biomejs/biome": "2.5.3", "vitest": "^4.0.0" }, "scripts": { "build": "bun run build.ts", "dev": "bun --hot build.ts", "test": "vitest run --config vitest.config.ts", "test:watch": "vitest --config vitest.config.ts", "lint": "bunx @biomejs/biome check --write --unsafe .", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist .turbo .turbo-tsconfig.json tsconfig.tsbuildinfo", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format .", "lint:check": "bunx @biomejs/biome check .", "build:ts": "bun run build", "typecheck": "tsgo --noEmit -p tsconfig.json" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/elizaos/eliza.git" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "INSTAGRAM_USERNAME": { "type": "string", "description": "Instagram username for authentication", "required": true, "sensitive": false }, "INSTAGRAM_PASSWORD": { "type": "string", "description": "Instagram password for authentication", "required": true, "sensitive": true }, "INSTAGRAM_VERIFICATION_CODE": { "type": "string", "description": "Two-factor authentication verification code", "required": false, "sensitive": true }, "INSTAGRAM_PROXY": { "type": "string", "description": "Proxy URL for Instagram API requests", "required": false, "sensitive": false } } }, "eliza": { "platforms": [ "node" ], "runtime": "node", "platformDetails": { "node": "ESM build available via exports.import" } } }