mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-08 15:22:37 +02:00
The npm package was missing the actual binary download step - users got wrapper scripts pointing to non-existent binaries. Changes: - postinstall.js now downloads correct binary from GitHub releases - Added vestige.js wrapper for CLI binary - Exposed both vestige-mcp and vestige commands in package.json - Updated README with troubleshooting, storage info, CLI docs - Added .gitignore for downloaded binaries Fixes fresh install issues where Claude Desktop couldn't attach and vestige CLI wasn't found. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
611 B
JSON
24 lines
611 B
JSON
{
|
|
"name": "@vestige/mcp",
|
|
"version": "1.1.0",
|
|
"description": "Vestige MCP Server - AI Memory System for Claude and other assistants",
|
|
"bin": {
|
|
"vestige-mcp": "./bin/vestige-mcp.js",
|
|
"vestige": "./bin/vestige.js"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node scripts/postinstall.js"
|
|
},
|
|
"keywords": ["mcp", "claude", "ai", "memory", "vestige"],
|
|
"author": "Sam Valladares",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/samvallad33/vestige"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"os": ["darwin", "linux", "win32"],
|
|
"cpu": ["x64", "arm64"]
|
|
}
|