-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.67 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
{
"name": "agent-discipline",
"version": "0.1.0",
"description": "Out-of-tree DeepSeek Harness bundle: an executable implementation of the Harness Engineering Methodology (HARNESS-METHODOLOGY-SPEC v1.0) — agent-discipline prompt section + artifact scaffolding tool + compliance audit tool.",
"license": "MIT",
"private": false,
"type": "module",
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"packageManager": "pnpm@11.24.0",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./invariant": "./lib/invariant.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"dsh": {
"bundle": {
"patch": "cordis.patch.yml"
}
},
"pnpm": {
"autoInstallPeers": false
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"check": "npm run lint && npm run test && npm run build"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=0.1.0-0",
"@deepseek-ai/dsh-system-prompt": ">=0.1.0-0",
"@deepseek-ai/dsh-tools": ">=0.1.0-0"
},
"devDependencies": {
"@deepseek-ai/cordis": "link:..\\deepseek-harness\\vendor\\cordis",
"@deepseek-ai/dsh-app-boot": "link:..\\deepseek-harness\\packages\\boot\\app-boot",
"@deepseek-ai/dsh-invariants": "link:..\\deepseek-harness\\packages\\runtime-diagnostics\\invariants",
"@deepseek-ai/dsh-system-prompt": "link:..\\deepseek-harness\\packages\\core\\system-prompt",
"@deepseek-ai/dsh-tools": "link:..\\deepseek-harness\\packages\\core\\tools",
"@types/node": "^26.3.0",
"typescript": "^5.7.0",
"vitest": "^4.0.0"
}
}