-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.17 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
{
"name": "@open-design/dsh-runtime",
"version": "0.1.0",
"description": "DeepSeek Harness profile runtime for OpenDesign",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./startup": {
"types": "./dist/types/startup.d.ts",
"default": "./dist/startup.js"
},
"./invariant": {
"types": "./dist/types/invariant.d.ts",
"default": "./dist/invariant.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"dist/*.js",
"dist/types/**/*.d.ts",
"cordis.patch.yml",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"prepare": "pnpm run build",
"build": "tsx ./clean.ts && tsx ./esbuild.config.ts && tsc -p tsconfig.json --emitDeclarationOnly",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit"
},
"dependencies": {
"@deepseek-ai/dsh-cmdline": "0.1.1-rc.2",
"commander": "15.0.0"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=4.0.1",
"@deepseek-ai/cordis-plugin-loader": ">=1.0.2",
"@deepseek-ai/dsh-agent": ">=0.1.0-rc.6 || >=0.1.1-rc.0",
"@deepseek-ai/dsh-agent-default-model": ">=0.1.0-rc.6 || >=0.1.1-rc.0",
"@deepseek-ai/dsh-invariants": ">=0.1.0-rc.6 || >=0.1.1-rc.0",
"@deepseek-ai/dsh-llm": ">=0.1.0-rc.6 || >=0.1.1-rc.0",
"@deepseek-ai/dsh-session": ">=0.1.0-rc.6 || >=0.1.1-rc.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/cordis-plugin-loader": "1.0.2",
"@deepseek-ai/dsh-agent": "0.1.1-rc.2",
"@deepseek-ai/dsh-agent-default-model": "0.1.1-rc.2",
"@deepseek-ai/dsh-invariants": "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": "24.12.2",
"esbuild": "0.28.0",
"tsx": "4.22.3",
"typescript": "6.0.3",
"vitest": "4.1.6"
},
"engines": {
"node": ">=24"
}
}