-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 957 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "memory",
"version": "1.0.0",
"description": "This is a memory MCP server for the desktop extension, designed to run locally on your machine.",
"scripts": {
"package": "npx @anthropic-ai/dxt pack && (mkdir -p ./dist 2>/dev/null || mkdir .\\dist 2>nul || echo) && (mv *.dxt ./dist/memory.dxt 2>/dev/null || move *.dxt .\\dist\\memory.dxt 2>nul || echo 'Please manually move the .dxt file')",
"package-ps": "npx @anthropic-ai/dxt pack && powershell -Command \"if (!(Test-Path './dist')) { New-Item -ItemType Directory -Path './dist' -Force }; Get-ChildItem -Name '*.dxt' | ForEach-Object { Move-Item $_ './dist/memory.dxt' }\""
},
"devDependencies": {
"@anthropic-ai/dxt": "^0.1.0"
},
"keywords": [
"mcp",
"memory",
"claude-desktop",
"dxt",
"node"
],
"author": "hidao80",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}