31 lines
771 B
JSON
31 lines
771 B
JSON
{
|
|
"name": "openclaw-memory",
|
|
"version": "1.0.0",
|
|
"description": "Structured memory system for OpenClaw agents",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node src/index.ts",
|
|
"migrate": "ts-node src/db/migrate.ts"
|
|
},
|
|
"keywords": ["openclaw", "memory", "semantic-search"],
|
|
"author": "daotong",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"pg": "^8.11.3",
|
|
"dotenv": "^16.3.1",
|
|
"cors": "^2.8.5",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.10.0",
|
|
"@types/pg": "^8.10.9",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/uuid": "^9.0.7",
|
|
"typescript": "^5.3.3",
|
|
"ts-node": "^10.9.2"
|
|
}
|
|
} |