-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 842 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 842 Bytes
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
{
"name": "{{NAME}}",
"version": "0.1.0",
"description": "{{DESCRIPTION}}",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json"
},
"keywords": [
"dsh-plugin",
"deepseek-harness"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/YOUR_GITHUB_USERNAME/{{NAME}}.git"
},
"engines": {
"node": ">=22.19"
},
"dependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-tools": "^0.0.1-rc.1",
"@deepseek-ai/schemastery": "^3.18.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
}
}