-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "@ddv12138/dsh-hash-edit",
"version": "0.1.0",
"description": "Hash-anchored read/replace/undo for DeepSeek Harness (DSH), ported from pi-hashline-edit-pro. Every line gets a stable 3-char base-62 anchor; stale/ambiguous anchors are rejected, never fuzzy-matched; undo persists across restarts.",
"license": "MIT",
"author": "ddv12138",
"keywords": [
"dsh",
"deepseek-harness",
"hashline",
"anchor",
"editing",
"plugin",
"agent",
"cordis"
],
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./core": "./src/plugin.js",
"./takeover": "./src/takeover.js",
"./engine": "./src/engine.js"
},
"files": [
"index.js",
"cordis.patch.yml",
"src/",
"README.md",
"LICENSE",
"CONTEXT.md"
],
"scripts": {
"test": "node --test",
"test:coverage": "node --experimental-test-coverage --test",
"test:coverage:threshold": "node scripts/coverage-gate.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@deepseek-ai/dsh-tools": "^0.0.1-rc.1"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
}
}