what-was-that 0.1.9
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 +99 -0
- package/assets/happy.svg +53 -0
- package/assets/idle.svg +55 -0
- package/assets/lexicon.json +1757 -0
- package/assets/question.svg +61 -0
- package/assets/thinking.svg +60 -0
- package/cordis.patch.yml +3 -0
- package/dsh.plugin.json +12 -0
- package/lib/client.js +15595 -0
- package/lib/index.js +15078 -0
- package/package.json +90 -0
package/package.json
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "what-was-that",
|
|
3
|
+
"description": "A tiny octopus desktop pet that explains AI-jargon in plain language for the DeepSeek Harness web GUI.",
|
|
4
|
+
"version": "0.1.9",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/SH-9999/what-was-that",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/SH-9999/what-was-that.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/SH-9999/what-was-that/issues"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"dsh",
|
|
16
|
+
"dsh-plugin",
|
|
17
|
+
"chat",
|
|
18
|
+
"explainer",
|
|
19
|
+
"jargon",
|
|
20
|
+
"octopus"
|
|
21
|
+
],
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "lib/index.js",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"default": "./lib/index.js"
|
|
30
|
+
},
|
|
31
|
+
"./client": {
|
|
32
|
+
"default": "./lib/client.js"
|
|
33
|
+
},
|
|
34
|
+
"./package.json": "./package.json"
|
|
35
|
+
},
|
|
36
|
+
"dsh": {
|
|
37
|
+
"bundle": {
|
|
38
|
+
"patch": "./cordis.patch.yml"
|
|
39
|
+
},
|
|
40
|
+
"client": {
|
|
41
|
+
"platform": "web",
|
|
42
|
+
"inject": [
|
|
43
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
44
|
+
"@deepseek-ai/dsh-client-ui-slots",
|
|
45
|
+
"@deepseek-ai/dsh-client-locale"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"lib/index.js",
|
|
51
|
+
"lib/client.js",
|
|
52
|
+
"assets/",
|
|
53
|
+
"cordis.patch.yml",
|
|
54
|
+
"dsh.plugin.json",
|
|
55
|
+
"LICENSE"
|
|
56
|
+
],
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build": "node build.mjs",
|
|
59
|
+
"typecheck": "tsc --noEmit"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"@deepseek-ai/cordis": "^4.0.1-rc.1",
|
|
63
|
+
"@deepseek-ai/dsh-agent": "*",
|
|
64
|
+
"@deepseek-ai/dsh-typert-protocol": "*",
|
|
65
|
+
"@deepseek-ai/dsh-typert-registry": "*",
|
|
66
|
+
"@deepseek-ai/dsh-client-runtime": "*",
|
|
67
|
+
"@deepseek-ai/dsh-client-ui-slots": "*",
|
|
68
|
+
"@deepseek-ai/dsh-client-locale": "*",
|
|
69
|
+
"react": "^18.2.0"
|
|
70
|
+
},
|
|
71
|
+
"peerDependenciesMeta": {
|
|
72
|
+
"@deepseek-ai/cordis": { "optional": true },
|
|
73
|
+
"@deepseek-ai/dsh-agent": { "optional": true },
|
|
74
|
+
"@deepseek-ai/dsh-typert-protocol": { "optional": true },
|
|
75
|
+
"@deepseek-ai/dsh-typert-registry": { "optional": true },
|
|
76
|
+
"@deepseek-ai/dsh-client-runtime": { "optional": true },
|
|
77
|
+
"@deepseek-ai/dsh-client-ui-slots": { "optional": true },
|
|
78
|
+
"@deepseek-ai/dsh-client-locale": { "optional": true },
|
|
79
|
+
"react": { "optional": true }
|
|
80
|
+
},
|
|
81
|
+
"dependencies": {
|
|
82
|
+
"zod": "^4.4.3"
|
|
83
|
+
},
|
|
84
|
+
"devDependencies": {
|
|
85
|
+
"@types/node": "^24.0.0",
|
|
86
|
+
"@types/react": "^18.2.0",
|
|
87
|
+
"esbuild": "^0.25.0",
|
|
88
|
+
"typescript": "^6.0.3"
|
|
89
|
+
}
|
|
90
|
+
}
|