package.json•1.59 kB
{
"name": "narrative-graph-mcp",
"version": "0.1.0",
"description": "A Model Context Protocol server implementing the Random Tree Model for hierarchical narrative memory",
"main": "./dist/index.js",
"type": "module",
"bin": {
"narrative-graph-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:server": "node test-server.js",
"diagnose": "node diagnose.js",
"example": "node example.js",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/winston": "^2.4.4",
"date-fns": "^3.0.0",
"p-limit": "^6.0.0",
"uuid": "^10.0.0",
"winston": "^3.17.0",
"zod": "^3.24.4",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"keywords": [
"mcp",
"random-tree-model",
"narrative-memory",
"hierarchical-memory",
"ai-memory",
"cognitive-architecture"
],
"author": "Ty",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}