dsh-plugin-stardeck 0.20.1-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +162 -0
- package/cordis.patch.yml +5 -0
- package/lib/client.js +46342 -0
- package/lib/client.js.map +1 -0
- package/lib/index.d.mts +534 -0
- package/lib/index.mjs +7856 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-plugin-stardeck",
|
|
3
|
+
"version": "0.20.1-1",
|
|
4
|
+
"packageManager": "pnpm@11.7.0",
|
|
5
|
+
"description": "Starship-bridge orchestration for DeepSeek Harness: the captain issues plain-language orders from the bridge; the XO drafts verifiable missions; away-team subagents (recon/engineer/medic/scribe) execute in isolated workspaces with evidence-based acceptance and an append-only campaign ledger.",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "lib/index.mjs",
|
|
8
|
+
"types": "lib/index.d.mts",
|
|
9
|
+
"files": [
|
|
10
|
+
"lib",
|
|
11
|
+
"cordis.patch.yml",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsdown --config tsdown.config.ts",
|
|
16
|
+
"test": "node --import tsx --test tests/*.test.ts",
|
|
17
|
+
"verify": "node scripts/verify.mjs",
|
|
18
|
+
"verify:eval": "node scripts/run-eval.mjs",
|
|
19
|
+
"verify:e2e": "node scripts/run-e2e.mjs"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"dsh-plugin",
|
|
23
|
+
"deepseek-harness",
|
|
24
|
+
"multi-agent",
|
|
25
|
+
"orchestration",
|
|
26
|
+
"rts"
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"dsh": {
|
|
30
|
+
"bundle": {
|
|
31
|
+
"patch": "./cordis.patch.yml"
|
|
32
|
+
},
|
|
33
|
+
"client": {
|
|
34
|
+
"inject": [
|
|
35
|
+
"slots",
|
|
36
|
+
"sessions",
|
|
37
|
+
"locale"
|
|
38
|
+
],
|
|
39
|
+
"platform": "web",
|
|
40
|
+
"immediately": true
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@deepseek-ai/cordis": ">=0.1.0-rc.0",
|
|
45
|
+
"@deepseek-ai/dsh-client-runtime": ">=0.1.0-rc.0",
|
|
46
|
+
"@deepseek-ai/dsh-client-ui-conversation": ">=0.1.0-rc.0",
|
|
47
|
+
"@deepseek-ai/dsh-tools": ">=0.1.0-rc.0",
|
|
48
|
+
"@deepseek-ai/schemastery": ">=0.1.0-rc.0",
|
|
49
|
+
"react": ">=18",
|
|
50
|
+
"react-dom": ">=18"
|
|
51
|
+
},
|
|
52
|
+
"exports": {
|
|
53
|
+
".": {
|
|
54
|
+
"types": "./lib/index.d.mts",
|
|
55
|
+
"default": "./lib/index.mjs"
|
|
56
|
+
},
|
|
57
|
+
"./client": {
|
|
58
|
+
"default": "./lib/client.js"
|
|
59
|
+
},
|
|
60
|
+
"./package.json": "./package.json"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/node": "^22.20.0",
|
|
64
|
+
"@types/react": "~18.3.31",
|
|
65
|
+
"@types/three": "^0.185.4",
|
|
66
|
+
"promptfoo": "^0.122.0",
|
|
67
|
+
"react": "^18.3.1",
|
|
68
|
+
"tsdown": "^0.22.2",
|
|
69
|
+
"tsx": "^4.22.4",
|
|
70
|
+
"typescript": "^6.0.3"
|
|
71
|
+
},
|
|
72
|
+
"repository": {
|
|
73
|
+
"type": "git",
|
|
74
|
+
"url": "git+https://github.com/Kaiji-Z/dsh-plugin-stardeck.git"
|
|
75
|
+
},
|
|
76
|
+
"bugs": {
|
|
77
|
+
"url": "https://github.com/Kaiji-Z/dsh-plugin-stardeck/issues"
|
|
78
|
+
},
|
|
79
|
+
"homepage": "https://github.com/Kaiji-Z/dsh-plugin-stardeck#readme",
|
|
80
|
+
"engines": {
|
|
81
|
+
"node": ">=22.19"
|
|
82
|
+
},
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"three": "^0.185.1"
|
|
85
|
+
}
|
|
86
|
+
}
|