-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.86 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
{
"name": "dsh-plugin-reducer",
"version": "0.3.1",
"description": "Find a 1-minimal failure-inducing set of DeepSeek Harness profile plugins without modifying the real profile.",
"type": "module",
"bin": {
"dsh-plugin-reducer": "./bin/dsh-plugin-reducer.js",
"dsh-reduce": "./bin/dsh-plugin-reducer.js"
},
"exports": {
".": "./src/index.js",
"./ddmin": "./src/ddmin.js"
},
"files": [
"bin",
"src",
"assets",
"schemas",
"docs",
"README.md",
"README.zh-CN.md",
"CONTRIBUTING.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md"
],
"scripts": {
"test": "node --test test/*.test.js",
"check:syntax": "node --check bin/dsh-plugin-reducer.js && node --check src/args.js && node --check src/ddmin.js && node --check src/dsh-command.js && node --check src/index.js && node --check src/machine-output.js && node --check src/probe.js && node --check src/profile-lab.js && node --check src/redact.js && node --check src/report.js && node --check examples/node-consumer/index.mjs && node --check scripts/init-upstream-profile.mjs",
"check": "npm run check:syntax && npm test",
"pack:check": "npm pack --dry-run",
"prepack": "npm run check"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"keywords": [
"deepseek",
"deepseek-harness",
"dsh",
"dsh-plugin",
"delta-debugging",
"plugin-debugging",
"minimal-reproduction"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ArmyWas/dsh-plugin-reducer.git"
},
"bugs": {
"url": "https://github.com/ArmyWas/dsh-plugin-reducer/issues"
},
"homepage": "https://github.com/ArmyWas/dsh-plugin-reducer#readme",
"author": "ArmyWas",
"license": "MIT",
"devDependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}