dsh-deeppilot 0.5.0 → 0.6.0-alpha.2
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/COMPATIBILITY.md +6 -4
- package/README.md +49 -2
- package/README.zh-CN.md +44 -2
- package/lib/index.d.ts +4 -4
- package/lib/index.js +4 -2
- package/lib/index.js.map +1 -1
- package/package.json +33 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-deeppilot",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0-alpha.2",
|
|
4
4
|
"description": "DeepPilot companion plugin for DeepSeek Harness: use DSH from a native iPhone app over an authenticated, direct connection to your own Mac.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -81,33 +81,40 @@
|
|
|
81
81
|
"ws": "^8.18.0"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
85
|
-
"@deepseek-ai/dsh
|
|
86
|
-
"@deepseek-ai/dsh-
|
|
87
|
-
"@deepseek-ai/dsh-client-
|
|
88
|
-
"@deepseek-ai/dsh-client-
|
|
89
|
-
"@deepseek-ai/dsh-client-ui-
|
|
90
|
-
"@deepseek-ai/dsh-
|
|
91
|
-
"@deepseek-ai/dsh-
|
|
92
|
-
"@deepseek-ai/
|
|
93
|
-
"
|
|
84
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
85
|
+
"@deepseek-ai/dsh": "^0.1.2-alpha.2",
|
|
86
|
+
"@deepseek-ai/dsh-api-remotes": "^0.1.2-alpha.2",
|
|
87
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.2",
|
|
88
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.2",
|
|
89
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.2",
|
|
90
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.2",
|
|
91
|
+
"@deepseek-ai/dsh-settings": "^0.1.2-alpha.2",
|
|
92
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.2",
|
|
93
|
+
"@deepseek-ai/schemastery": "^3.18.2",
|
|
94
|
+
"react": "^19.2.8"
|
|
94
95
|
},
|
|
95
96
|
"devDependencies": {
|
|
96
|
-
"@deepseek-ai/cordis": "^4.0.
|
|
97
|
-
"@deepseek-ai/dsh-settings": "^0.1.
|
|
98
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.
|
|
99
|
-
"@deepseek-ai/schemastery": "^3.18.
|
|
100
|
-
"@types/node": "^
|
|
101
|
-
"@types/qrcode": "1.5.
|
|
102
|
-
"@types/react": "^
|
|
97
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
98
|
+
"@deepseek-ai/dsh-settings": "^0.1.2-alpha.2",
|
|
99
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.2",
|
|
100
|
+
"@deepseek-ai/schemastery": "^3.18.2",
|
|
101
|
+
"@types/node": "^24.0.0",
|
|
102
|
+
"@types/qrcode": "1.5.6",
|
|
103
|
+
"@types/react": "^19.2.18",
|
|
103
104
|
"@types/ws": "^8.5.10",
|
|
104
|
-
"react": "^
|
|
105
|
+
"react": "^19.2.8",
|
|
105
106
|
"tsdown": "^0.22.2",
|
|
106
107
|
"tsx": "^4.23.12",
|
|
107
|
-
"typescript": "^
|
|
108
|
+
"typescript": "^7.0.2"
|
|
108
109
|
},
|
|
109
110
|
"license": "MIT",
|
|
110
111
|
"peerDependenciesMeta": {
|
|
112
|
+
"@deepseek-ai/cordis": {
|
|
113
|
+
"optional": true
|
|
114
|
+
},
|
|
115
|
+
"@deepseek-ai/dsh": {
|
|
116
|
+
"optional": true
|
|
117
|
+
},
|
|
111
118
|
"@deepseek-ai/dsh-api-remotes": {
|
|
112
119
|
"optional": true
|
|
113
120
|
},
|
|
@@ -128,6 +135,12 @@
|
|
|
128
135
|
},
|
|
129
136
|
"@deepseek-ai/dsh-typert-protocol": {
|
|
130
137
|
"optional": true
|
|
138
|
+
},
|
|
139
|
+
"@deepseek-ai/schemastery": {
|
|
140
|
+
"optional": true
|
|
141
|
+
},
|
|
142
|
+
"react": {
|
|
143
|
+
"optional": true
|
|
131
144
|
}
|
|
132
145
|
}
|
|
133
146
|
}
|