dsh-pet-dom 2.0.0
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/README.md +77 -0
- package/assets/cover.png +0 -0
- package/assets/miku.gif +0 -0
- package/cordis.patch.yml +15 -0
- package/lib/brain.js +198 -0
- package/lib/console.js +422 -0
- package/lib/index.js +147 -0
- package/lib/mascot.js +1050 -0
- package/package.json +31 -0
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-pet-dom",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "在 DeepSeek Harness Web 界面上跳跃的桌面宠物(Miku):真实物理跳跃、自动识别页面可落脚区域、规划巡游与突发小动作;支持键盘控制玩法与可调控制台(高亮/合并/主题色/透明度),设置自动保存。",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dsh",
|
|
7
|
+
"dsh-plugin",
|
|
8
|
+
"deepseek-harness",
|
|
9
|
+
"pet",
|
|
10
|
+
"mascot",
|
|
11
|
+
"widget",
|
|
12
|
+
"desktop-pet"
|
|
13
|
+
],
|
|
14
|
+
"type": "module",
|
|
15
|
+
"main": "lib/index.js",
|
|
16
|
+
"files": [
|
|
17
|
+
"lib",
|
|
18
|
+
"assets",
|
|
19
|
+
"cordis.patch.yml",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"dsh": {
|
|
23
|
+
"bundle": {
|
|
24
|
+
"patch": "./cordis.patch.yml"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"license": "MIT"
|
|
31
|
+
}
|