-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
30
31
32
33
34
35
36
37
38
39
{
"name": "cursor-bank",
"public": true,
"version": "1.0.1",
"license": "MIT",
"description": "Cursor Memory Bank is a powerful feature that enhances AI assistance by maintaining perfect documentation between sessions. It addresses the AI's session memory limitations by creating a structured documentation system that serves as the AI's persistent memory.",
"keywords": [
"memory-bank",
"cursor",
"ai",
"documentation",
"claude"
],
"main": "index.js",
"bin": {
"cursor-bank": "./index.js"
},
"author": "Alexey Elizarov <alex.elizarov1@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/tacticlaunch/cursor-bank.git"
},
"scripts": {
"start": "node index.js"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/tacticlaunch/cursor-bank/issues"
},
"homepage": "https://github.com/tacticlaunch/cursor-bank#readme",
"dependencies": {
"commander": "^12.1.0",
"debug": "^4.4.0",
"fs-extra": "^11.1.1",
"simple-git": "^3.21.0"
}
}