{ "name": "gbrain", "version": "0.4.1", "description": "Postgres-native personal knowledge brain with hybrid RAG search", "type": "module", "main": "src/core/index.ts", "bin": { "gbrain": "src/cli.ts" }, "exports": { ".": "./src/core/index.ts", "./engine": "./src/core/engine.ts", "./types": "./src/core/types.ts", "./operations": "./src/core/operations.ts" }, "scripts": { "dev": "bun run src/cli.ts", "build": "bun build --compile --outfile bin/gbrain src/cli.ts", "build:all": "bun build --compile --target=bun-darwin-arm64 --outfile bin/gbrain-darwin-arm64 src/cli.ts && bun build --compile --target=bun-linux-x64 --outfile bin/gbrain-linux-x64 src/cli.ts", "test": "bun test", "test:e2e": "bun test test/e2e/", "prepublish:clawhub": "bun run build:all", "publish:clawhub": "clawhub package publish . --family bundle-plugin" }, "openclaw": { "compat": { "pluginApi": ">=2026.4.0" } }, "dependencies": { "@anthropic-ai/sdk": "^0.30.0", "@modelcontextprotocol/sdk": "^1.0.0", "gray-matter": "^4.0.3", "openai": "^4.0.0", "pgvector": "^0.2.0", "postgres": "^3.4.0" }, "devDependencies": { "@types/bun": "latest" }, "license": "MIT" }