-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 913 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "cursor-memory-bank",
"version": "1.0.0",
"description": "A Cursor MCP server that implements the Cline Memory Bank concept",
"main": "dist/index.js",
"bin": {
"cursor-memory-bank": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest"
},
"keywords": [
"cursor",
"mcp",
"memory-bank",
"ai",
"context"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"markdown-it": "^14.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.19",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}