-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.21 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
{
"name": "dsh-fork-graph",
"version": "0.1.0",
"description": "Git-graph style conversation fork topology for DeepSeek Harness (dsh): see which session forked from which, and jump between branches.",
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"cordis",
"session",
"fork",
"graph",
"visualization"
],
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/types/client/index.d.ts",
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-conversation"
]
}
},
"files": [
"lib/index.js",
"lib/client.js",
"lib/client.js.map",
"lib/types/**/*.d.ts",
"cordis.patch.yml",
"assets/*.svg"
],
"scripts": {
"build": "npm run build:types && npm run build:bundle",
"build:types": "tsc -p tsconfig.build.json",
"build:bundle": "tsdown",
"prepare": "tsdown",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chouyong/dsh-fork-graph.git"
},
"bugs": {
"url": "https://github.com/chouyong/dsh-fork-graph/issues"
},
"homepage": "https://github.com/chouyong/dsh-fork-graph#readme",
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=4.0.1",
"@deepseek-ai/dsh-client-runtime": ">=0.0.1-rc.1",
"@deepseek-ai/dsh-client-ui-slots": ">=0.0.1-rc.1",
"react": "^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-brand": "^0.0.1-rc.1",
"@deepseek-ai/dsh-client-ui-slots": "0.0.1-rc.1",
"@types/node": "^24.13.3",
"@types/react": "~18.3.1",
"jsdom": "^29.1.1",
"react": "^18.2.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}