package.json•1.42 kB
{
"name": "@izumisy/mcp-duckdb-memory-server",
"version": "1.1.2",
"private": false,
"description": "MCP Memory Server with DuckDB backend",
"homepage": "https://github.com/IzumiSy/mcp-duckdb-memory-server",
"repository": {
"type": "git",
"url": "git+https://github.com/IzumiSy/mcp-duckdb-memory-server.git"
},
"type": "module",
"main": "index.js",
"scripts": {
"dev": "pnpm build && npx @modelcontextprotocol/inspector pnpm start",
"build": "tsup src/index.ts && shx chmod +x dist/index.mjs",
"start": "node dist/index.mjs",
"prepare": "npm run build",
"test": "vitest run",
"type-check": "tsc --noEmit --pretty",
"changeset:publish": "pnpm build && changeset publish"
},
"bin": {
"mcp-duckdb-memory-server": "dist/index.mjs"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"memory",
"knowledge",
"graph",
"duckdb"
],
"author": "IzumiSy",
"license": "MIT",
"dependencies": {
"@duckdb/node-api": "1.2.0-alpha.15",
"@modelcontextprotocol/sdk": "^1.6.0",
"fuse.js": "^7.1.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@swc/core": "^1.13.5",
"@types/node": "^24",
"prettier": "^3",
"shx": "^0.4.0",
"tsup": "^8.4.0",
"typescript": "^5",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.8.1",
"engines": {
"node": "22.x"
}
}