-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.26 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
{
"name": "cursor-memory-manager",
"displayName": "Cursor Memory Manager",
"description": "智能记忆管理系统for Cursor",
"version": "0.0.1",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "cursor-memory.storeMemory",
"title": "Store Memory",
"category": "Cursor Memory"
},
{
"command": "cursor-memory.retrieveMemory",
"title": "Retrieve Memory",
"category": "Cursor Memory"
}
],
"configuration": {
"title": "Cursor Memory Manager",
"properties": {
"cursorMemory.autoStore": {
"type": "boolean",
"default": true,
"description": "是否自动存储记忆"
},
"cursorMemory.storageLocation": {
"type": "string",
"default": "./data",
"description": "记忆存储位置"
}
}
}
},
"scripts": {
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/node": "^14.17.0",
"@types/vscode": "^1.60.0"
},
"dependencies": {
"axios": "^1.11.0",
"node-fetch": "^3.3.2",
"ws": "^8.18.3"
}
}