{ "name": "@elizaos/plugin-relationships", "version": "2.0.3-beta.7", "description": "Entity and relationship knowledge graph for Eliza agents. Provides the ENTITY umbrella action (person/org/place/project/concept CRUD), EntityStore with identity merge engine, RelationshipStore for typed edges, voice-observer-bridge, and an entity-graph context provider. Backed by drizzle pgSchema('app_relationships').", "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" }, "./*.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": [ "assets", "dist" ], "keywords": [ "eliza", "plugin", "relationships", "entities", "knowledge-graph", "agent" ], "author": "elizaOS", "license": "MIT", "dependencies": { "@elizaos/agent": "workspace:*", "@elizaos/app-core": "workspace:*", "@elizaos/core": "workspace:*", "@elizaos/shared": "workspace:*", "@elizaos/ui": "workspace:*", "drizzle-orm": "^0.45.1" }, "peerDependencies": { "@elizaos/plugin-sql": "workspace:*", "react": "^19.0.0", "react-dom": "^19.0.0" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/node": "^25.0.3", "@types/react": "^19.0.0", "@types/react-dom": "^19.0.0", "react": "^19.0.0", "react-dom": "^19.0.0", "tsup": "^8.5.1", "typescript": "^6.0.3", "vite": "^8.0.0", "vitest": "^4.0.0" }, "scripts": { "build": "bun run build:js && bun run build:views && bun run build:types", "build:js": "tsup --config ../tsup.plugin-packages.shared.ts", "build:views": "bunx --bun vite build --config vite.config.views.ts", "build:types": "tsc --noCheck -p tsconfig.build.json", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist .turbo", "test": "bunx vitest run --config ./vitest.config.ts", "typecheck": "tsgo --noEmit -p tsconfig.json", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "check": "bun run typecheck && bun run test", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format ." }, "publishConfig": { "access": "public" }, "elizaos": { "app": { "displayName": "Relationships", "category": "personal" } }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": {} }, "eliza": { "platforms": [ "node" ], "runtime": "node", "platformDetails": { "node": "Default export (Node.js)" } } }