-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "memorymesh",
"version": "0.2.8",
"description": "An MCP server that uses a knowledge graph to store and recall structured memory for AI models",
"license": "MIT",
"author": "CheMiguel23",
"homepage": "https://github.com/CheMiguel23/memorymesh",
"bugs": "https://github.com/CheMiguel23/memorymesh/issues",
"type": "module",
"main": "dist/index.js",
"bin": {
"memorymesh": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && tsc-alias && shx chmod +x dist/*.js && copyfiles -u 1 src/data/schemas/*.json src/data/*.json dist/",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "ts-node --esm src/index.ts",
"start:claude": "ts-node --esm src/index.ts",
"start:prod": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"copyfiles": "^2.4.1",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
}
}