-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.95 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
{
"name": "dsh-advisor",
"version": "0.3.1",
"type": "module",
"description": "dsh plugin bundle porting the omp advisor subsystem: a per-session reviewer model that observes the primary transcript and injects severity-ranked advice (nit/concern/blocker).",
"repository": {
"type": "git",
"url": "https://github.com/omdsh-dev/dsh-advisor"
},
"keywords": [
"dsh",
"dsh-plugin"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/client.d.ts",
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"scripts"
],
"scripts": {
"typecheck": "tsc --noEmit && tsc -p tsconfig.client.json --noEmit && tsc -p tsconfig.spec.json --noEmit",
"build": "tsc -p tsconfig.build.json && node scripts/build-client.mjs",
"prepare": "pnpm build",
"prepack": "pnpm build",
"test": "vitest run"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-store",
"@deepseek-ai/dsh-client-ui-settings-plugins",
"@deepseek-ai/dsh-client-locale"
],
"platform": "web"
}
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.2",
"@deepseek-ai/dsh-agent": "^0.1.2-rc.1",
"@deepseek-ai/dsh-api-gateway": "^0.1.2-rc.1",
"@deepseek-ai/dsh-api-remotes": "^0.1.2-rc.1",
"@deepseek-ai/dsh-api-settings-controller": "^0.1.2-rc.1",
"@deepseek-ai/dsh-api-session-controller": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-connection": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-locale": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-store": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-settings": "^0.1.2-rc.1",
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-rc.1",
"@deepseek-ai/dsh-commands": "^0.1.2-rc.1",
"@deepseek-ai/dsh-llm": "^0.1.2-rc.1",
"@deepseek-ai/dsh-session": "^0.1.2-rc.1",
"@deepseek-ai/dsh-settings": "^0.1.2-rc.1",
"@deepseek-ai/dsh-timeout": "^0.1.2-rc.1",
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-rc.1",
"@deepseek-ai/dsh-typert-registry": "^0.1.2-rc.1",
"react": "^18.2.0",
"@deepseek-ai/schemastery": "^3.18.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.2.0",
"@types/react": "~18.3.1",
"@types/react-dom": "~18.3.7",
"esbuild": "^0.28.2",
"jsdom": "29.1.1",
"lightningcss": "^1.33.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.0",
"vitest": "^3.0.0"
},
"engines": {
"node": "^22.19 || >=24"
},
"license": "MIT"
}