-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@perrylink/dsh-plugin-kit",
"version": "0.1.8",
"description": "Shared zero-runtime-dependency toolkit for PerryLink DSH plugins: a pluggable Provider registry seam, fail-closed approval and adaptive session-event gates, mechanical verify scripts, shared sanitize/pricing/judge modules, and a new-plugin skeleton.",
"author": "PerryLink",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/PerryLink/dsh-plugin-kit"
},
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./seam": {
"types": "./lib/seam/provider.d.ts",
"default": "./lib/seam/provider.js"
},
"./gates": {
"types": "./lib/gates/index.d.ts",
"default": "./lib/gates/index.js"
},
"./shared": {
"types": "./lib/shared/index.d.ts",
"default": "./lib/shared/index.js"
},
"./verify": {
"types": "./lib/verify/index.d.ts",
"default": "./lib/verify/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"src",
"template",
"cordis.patch.yml",
"README.md",
"README.zh.md",
"README.es.md",
"README.pt.md",
"README.hi.md",
"CHANGELOG.md",
"SECURITY.md",
"THIRD_PARTY_NOTICES.md",
"LICENSE"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"build": "node scripts/prepare.mjs",
"prepare": "node scripts/prepare.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:ci": "tsc -p tsconfig.ci.json --noEmit",
"test": "vitest run",
"verify:self-contained": "node scripts/verify-self-contained.mjs",
"verify:artifacts": "node scripts/verify-artifacts.mjs"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"deepseek",
"cordis",
"perrylink",
"provider",
"seam",
"approval",
"sanitize",
"pricing",
"judge"
],
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"packageManager": "pnpm@11.7.0",
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.2",
"@deepseek-ai/dsh-session": ">=0.1.2-rc.1 <0.2.0 || >=0.1.5-alpha.1 <0.2.0",
"@deepseek-ai/dsh-tools": ">=0.1.2-rc.1 <0.2.0 || >=0.1.5-alpha.1 <0.2.0",
"@deepseek-ai/dsh-user-approval": ">=0.1.2-rc.1 <0.2.0 || >=0.1.5-alpha.1 <0.2.0",
"@deepseek-ai/schemastery": "^3.18.2"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
},
"@deepseek-ai/dsh-session": {
"optional": true
},
"@deepseek-ai/dsh-tools": {
"optional": true
},
"@deepseek-ai/dsh-user-approval": {
"optional": true
},
"@deepseek-ai/schemastery": {
"optional": true
}
},
"dependencies": {
"typescript": "^6.0.3"
},
"devDependencies": {
"@types/node": "^22.19.0",
"vitest": "^4.1.10"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/PerryLink"
}
}