memoer
Version:
Memory management system for LLMs
43 lines • 876 B
JSON
{
"name": "memoer",
"version": "0.1.13",
"description": "Memory management system for LLMs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"memory",
"ai",
"conversation",
"context"
],
"repository": {
"type": "git",
"url": "https://github.com/GeLi2001/memoer"
},
"homepage": "https://memoer-doc.vercel.app/docs/intro",
"bugs": {
"url": "https://github.com/GeLi2001/memoer/issues"
},
"author": "Ge Li",
"license": "Apache-2.0",
"dependencies": {
"ai": ">=2.0.0"
},
"peerDependencies": {
"ai": ">=2.0.0"
},
"devDependencies": {
"rimraf": "^6.0.1",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"build": "pnpm run clean && tsc --build --force"
}
}