-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.39 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "cursor-project-memory",
"displayName": "Project Memory",
"description": "Project memory sidebar: edit .cursor/rules/project-memory.mdc and project-completed.mdc (Cursor loads both as rules).",
"version": "0.3.2",
"publisher": "cursor-project-memory",
"repository": {
"type": "git",
"url": "https://github.com/general-alexson/cursor-project-memory.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"icon": "images/icon.png",
"contributes": {
"commands": [
{
"command": "cursorProjectMemory.openMemory",
"title": "Open Project Memory"
},
{
"command": "cursorProjectMemory.addMemoryEntry",
"title": "Add Memory Entry"
},
{
"command": "cursorProjectMemory.showHistory",
"title": "Show Memory History"
},
{
"command": "cursorProjectMemory.openGlobalMemory",
"title": "Open Global Memory"
},
{
"command": "cursorProjectMemory.addGlobalMemoryToWorkspace",
"title": "Add Global Memory to Workspace"
},
{
"command": "cursorProjectMemory.assimilateMemoryFiles",
"title": "Assimilate Existing Memory Files"
},
{
"command": "cursorProjectMemory.importCursorrulesIntoGlobalMemory",
"title": "Import .cursorrules into Global Memory"
}
],
"configuration": {
"title": "Project Memory",
"properties": {
"cursorProjectMemory.history.enabled": {
"type": "boolean",
"default": true,
"description": "Save local history when project-memory.mdc is saved (for rollback)."
},
"cursorProjectMemory.history.maxEntries": {
"type": "number",
"default": 20,
"minimum": 1,
"maximum": 100,
"description": "Maximum number of history entries to keep."
},
"cursorProjectMemory.globalMemory.enabled": {
"type": "boolean",
"default": true,
"description": "Show Global Memory in the sidebar (cross-workspace snippet library)."
}
}
},
"views": {
"explorer": [
{
"id": "cursorProjectMemory.memoryView",
"name": "Project Memory"
}
]
},
"menus": {
"view/item/context": [
{
"command": "cursorProjectMemory.openMemory",
"when": "view == cursorProjectMemory.memoryView",
"group": "1_navigation"
},
{
"command": "cursorProjectMemory.showHistory",
"when": "view == cursorProjectMemory.memoryView",
"group": "1_navigation"
},
{
"command": "cursorProjectMemory.assimilateMemoryFiles",
"when": "view == cursorProjectMemory.memoryView",
"group": "1_navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"generate-icon": "node scripts/generate-icon.js"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"pngjs": "^7.0.0",
"typescript": "^5.3.0"
}
}