package.json•2.17 kB
{
"name": "mcpmem",
"version": "1.2.1",
"description": "MCP tool for storing and searching memories with semantic search capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcpmem": "./dist/cli.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "pnpm run lint && node build.mjs && tsc --emitDeclarationOnly",
"build:types": "tsc --emitDeclarationOnly",
"build:full": "pnpm run clean && pnpm run build && pnpm run build:types",
"build:prod": "pnpm run lint && node build.mjs --minify && tsc --emitDeclarationOnly",
"dev": "tsx watch src/cli.ts",
"dev:build": "tsc --watch",
"start": "tsx src/cli.ts",
"lint": "biome check src --error-on-warnings",
"fix": "biome check src --fix",
"type-check": "tsc --noEmit",
"tc": "tsc --noEmit",
"test": "jest",
"clean": "rm -rf dist .tsbuildinfo",
"prepublishOnly": "npm run build:full"
},
"keywords": [
"mcp",
"model-context-protocol",
"memory",
"semantic-search",
"embeddings",
"sqlite"
],
"author": {
"name": "Jay Simons",
"url": "https://yaa.bz"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"better-sqlite3": "^9.2.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"openai": "^4.24.1",
"ora": "^8.0.1",
"sqlite-vec": "^0.1.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@types/better-sqlite3": "^7.6.8",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"esbuild": "^0.25.9",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.20.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.15.0",
"repository": {
"type": "git",
"url": "https://github.com/your-username/mcpmem.git"
},
"mcp": {
"serverType": "memory",
"transport": [
"stdio"
],
"capabilities": {
"tools": true,
"logging": false,
"prompts": false,
"resources": false
}
},
"publishConfig": {
"access": "public"
}
}