{ "name": "@elizaos/plugin-line", "version": "2.0.3-beta.7", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "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" }, "./*.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" ], "scripts": { "build": "bun run build.ts", "test": "vitest run --config vitest.config.ts", "test:watch": "vitest --config vitest.config.ts", "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 .", "typecheck": "tsgo --noEmit -p tsconfig.json" }, "dependencies": { "@elizaos/core": "workspace:*", "@line/bot-sdk": "^11.0.0" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^22.19.17", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "publishConfig": { "access": "public" }, "eliza": { "platforms": [ "node" ], "runtime": "node", "platformDetails": { "node": "Node.js via main entry point" } }, "agentConfig": { "pluginParameters": { "LINE_CHANNEL_ACCESS_TOKEN": { "type": "string", "description": "Access token for Line Channel", "required": true, "sensitive": true }, "LINE_CHANNEL_SECRET": { "type": "string", "description": "Secret for Line Channel", "required": false, "sensitive": true }, "LINE_WEBHOOK_PATH": { "type": "string", "description": "Webhook path", "required": false, "sensitive": false }, "LINE_DM_POLICY": { "type": "string", "description": "DM policy (e.g. allow, deny, allowlist)", "required": false, "sensitive": false }, "LINE_GROUP_POLICY": { "type": "string", "description": "Group message policy (e.g. allow, deny)", "required": false, "sensitive": false }, "LINE_ALLOW_FROM": { "type": "string", "description": "Comma-separated allowed user list", "required": false, "sensitive": false }, "LINE_ENABLED": { "type": "boolean", "description": "Enable or disable this feature", "required": false, "sensitive": false } } } }