-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.55 KB
/
Copy pathpackage.json
File metadata and controls
151 lines (151 loc) · 4.55 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "dsh-library",
"version": "0.1.1",
"description": "Local document knowledge base for DeepSeek Harness: library_add/remove/list, hybrid semantic+keyword library_search with diversity re-ranking, relevance filtering and lost-in-the-middle avoidance, citation-aware injection, library_cite_check and library_diagnose 鈥?SQLite-backed index via the storage domain, local embedding, zero model downloads",
"repository": {
"type": "git",
"url": "git+https://github.com/PerryLink/dsh-library.git"
},
"homepage": "https://github.com/PerryLink/dsh-library#readme",
"bugs": {
"url": "https://github.com/PerryLink/dsh-library/issues"
},
"author": "PerryLink",
"private": false,
"type": "module",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"CHANGELOG.md",
"THIRD_PARTY_NOTICES.md",
"SECURITY.md",
"README.md",
"README.zh.md",
"README.es.md",
"README.pt.md",
"README.hi.md",
"LICENSE"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"dshWorkshop": {
"schema": "omdsh-workshop-package/v1",
"type": "plugin",
"integration": {
"protocol": "harness-profile",
"artifact": "cordis.patch.yml"
},
"install": {
"mode": "transactional",
"adapter": "profile-bundle",
"failurePolicy": "generation-rollback",
"touchesCurrentBeforeActivation": false
},
"lifecycle": {
"activation": "hot-reload",
"dispose": "supported"
},
"permissions": [
"fs:read",
"subprocess:spawn",
"session:append",
"storage:write",
"network:none",
"native-code:none"
],
"compatibility": {
"dshVersions": [
"0.1.0-rc.5",
"0.1.0-rc.6"
]
},
"capability": {
"id": "local-knowledge-library",
"kind": "tool",
"invocation": "library_add, library_remove, library_list, library_search, library_cite_check, library_diagnose",
"expected": "builds and queries a local document knowledge base (chunking, local embedding, SQLite-backed index) with diversity re-ranking, relevance filtering, lost-in-the-middle avoidance, citation verification and purge verification"
},
"evidence": {
"install": null,
"failureIsolation": null,
"hotReload": null,
"remove": null
}
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"deepseek",
"cordis",
"rag",
"knowledge-base",
"retrieval",
"embedding",
"vector-search",
"citation-validation",
"document-library"
],
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"packageManager": "pnpm@11.7.0",
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/schemastery": "^3.18.0",
"@deepseek-ai/dsh-fs": "0.1.0-rc.6",
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
"@deepseek-ai/dsh-session": "0.1.0-rc.6",
"@deepseek-ai/dsh-storage": "0.1.0-rc.6",
"@deepseek-ai/dsh-storage-json": "0.1.0-rc.6",
"@deepseek-ai/dsh-storage-domain": "0.1.0-rc.6",
"@deepseek-ai/dsh-subprocess": "0.1.0-rc.6",
"@deepseek-ai/dsh-tools": "0.1.0-rc.6"
},
"dependencies": {
"tsdown": "^0.22.14",
"typescript": "^5.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/schemastery": "^3.18.0",
"@deepseek-ai/dsh-agent": "0.1.0-rc.6",
"@deepseek-ai/dsh-commands": "0.1.0-rc.6",
"@deepseek-ai/dsh-fs": "0.1.0-rc.6",
"@deepseek-ai/dsh-fs-local": "0.1.0-rc.6",
"@deepseek-ai/dsh-llm": "0.1.0-rc.6",
"@deepseek-ai/dsh-session": "0.1.0-rc.6",
"@deepseek-ai/dsh-storage": "0.1.0-rc.6",
"@deepseek-ai/dsh-storage-domain": "0.1.0-rc.6",
"@deepseek-ai/dsh-storage-json": "0.1.0-rc.6",
"@deepseek-ai/dsh-subprocess": "0.1.0-rc.6",
"@deepseek-ai/dsh-subprocess-local": "0.1.0-rc.6",
"@deepseek-ai/dsh-tools": "0.1.0-rc.6",
"@types/node": "^22.19.0",
"vitest": "^3.2.0"
},
"scripts": {
"build": "node scripts/prepare.mjs",
"prepare": "node scripts/prepare.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"typecheck:ci": "tsc -p tsconfig.ci.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"verify:self-contained": "node scripts/verify-self-contained.mjs",
"verify:artifacts": "node scripts/verify-artifacts.mjs"
},
"license": "Apache-2.0"
}