-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.05 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
{
"name": "dsh-memoryrouter",
"version": "0.1.1",
"description": "MemoryRouter plugin for DeepSeek Harness (dsh): persistent, cross-session conversation memory. Stores clean user/assistant exchanges and recalls relevant memories at the start of every turn — channel-agnostic, hooked at the harness core.",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"pretest": "npm run build",
"test": "node --test tests/*.test.mjs",
"prepublishOnly": "npm run typecheck && npm test",
"prepack": "npm run build"
},
"license": "MIT",
"author": "John Rood <john@johnrood.com> (https://memoryrouter.ai)",
"repository": {
"type": "git",
"url": "git+https://github.com/John-Rood/dsh-memoryrouter.git"
},
"homepage": "https://memoryrouter.ai",
"bugs": {
"url": "https://github.com/John-Rood/dsh-memoryrouter/issues"
},
"keywords": [
"deepseek",
"dsh",
"harness",
"deepseek-harness",
"memory",
"memoryrouter",
"ai-memory",
"persistent-memory",
"agent-memory",
"cordis"
],
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-agent": "^0.1.0-rc.6 || ^0.1.1-rc.1",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6 || ^0.1.1-rc.1",
"@deepseek-ai/dsh-session": "^0.1.0-rc.6 || ^0.1.1-rc.1"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-agent": "0.1.1-rc.2",
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
"@types/node": "^22.10.0",
"typescript": "^5.9.2"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
}
}