-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.08 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.08 KB
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
{
"name": "cursor-supermemory",
"version": "1.0.01",
"description": "Persistent AI memory for Cursor — powered by Supermemory",
"type": "module",
"bin": {
"cursor-supermemory": "./dist/cli.js"
},
"scripts": {
"build": "bun build ./src/cli.ts --outfile ./dist/cli.js --target node && bun build ./src/mcp-server.ts --outfile ./dist/mcp-server.js --target node && bun build ./src/hooks/session-start.ts --outfile ./dist/session-start.js --target node && bun build ./src/hooks/session-end.ts --outfile ./dist/session-end.js --target node",
"typecheck": "tsc --noEmit",
"dev": "bun run src/cli.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"supermemory": "^4.11.1"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
},
"files": ["dist", "rules", "skills", "commands", "hooks", ".cursor-plugin", ".mcp.json"],
"keywords": ["cursor", "supermemory", "mcp", "memory", "ai", "plugin"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/supermemoryai/cursor-supermemory"
}
}