forked from QCYTSN/dsh-dafeiyu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.93 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
{
"name": "dsh-dafeiyu",
"version": "0.1.6",
"description": "A desktop-native BigFish companion driven by DeepSeek Harness session events.",
"author": "QCYTSN",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./client": "./lib/client.js",
"./protocol": "./src/protocol.js",
"./reducer": "./src/companion-reducer.js",
"./package.json": "./package.json"
},
"files": [
"src/",
"lib/client.js",
"runtime/helper.py",
"runtime/animation_model.py",
"runtime/layout_store.py",
"runtime/__init__.py",
"runtime/bin/",
"native/macos/",
"scripts/build-helper.ps1",
"scripts/build-helper.sh",
"scripts/build-helper.mjs",
"scripts/run-python.mjs",
"scripts/generate_notification_sounds.py",
"scripts/test-packaged-helper.mjs",
"assets/pet/",
"assets/pet-manifest.json",
"assets/sounds/",
"docs/",
"cordis.patch.yml",
"requirements.txt",
"README.md",
"README_EN.md",
"CHANGELOG.md",
"ASSET_LICENSE.md",
"LICENSE"
],
"engines": {
"node": ">=22.19"
},
"dependencies": {
"@deepseek-ai/cosmokit": "1.8.2",
"@deepseek-ai/schemastery": "3.18.1",
"@standard-schema/spec": "1.1.0"
},
"bundleDependencies": [
"@deepseek-ai/cosmokit",
"@deepseek-ai/schemastery",
"@standard-schema/spec"
],
"scripts": {
"test": "node --test --test-timeout=10000 test/assets.test.js test/config-endpoint.test.js test/client-slot-key.test.js test/helper-command.test.js test/protocol.test.js test/status-copy.test.js test/reducer.test.js test/helper-lifecycle.test.js test/helper-restart.test.js test/plugin-integration.test.js",
"test:helper": "node --test test/helper-lifecycle.test.js",
"test:python": "node scripts/run-python.mjs -m unittest discover -s runtime/tests -t .",
"helper:headless": "node scripts/run-python.mjs runtime/helper.py --headless",
"helper:visual": "node scripts/run-python.mjs runtime/helper.py",
"build:helper": "node scripts/build-helper.mjs",
"build:helper:windows": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/build-helper.ps1",
"build:helper:linux": "bash scripts/build-helper.sh",
"build:helper:darwin": "bash native/macos/build.sh",
"test:helper:packaged": "node scripts/test-packaged-helper.mjs"
},
"dsh": {
"client": {
"inject": [
"@deepseek-ai/dsh-client-ui-settings-plugins"
],
"platform": "web"
},
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"keywords": [
"deepseek-harness",
"dsh-plugin",
"desktop-pet",
"agent-companion"
],
"repository": {
"type": "git",
"url": "git+https://github.com/QCYTSN/dsh-dafeiyu.git"
},
"bugs": {
"url": "https://github.com/QCYTSN/dsh-dafeiyu/issues"
},
"homepage": "https://github.com/QCYTSN/dsh-dafeiyu#readme",
"publishConfig": {
"access": "public"
},
"license": "SEE LICENSE IN ASSET_LICENSE.md"
}