dsh-deeppilot 0.3.0 → 0.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-deeppilot",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
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",
@@ -38,11 +38,11 @@
38
38
  },
39
39
  "client": {
40
40
  "inject": [
41
- "@deepseek-ai/dsh-client-runtime",
41
+ "@deepseek-ai/dsh-client-connection",
42
42
  "@deepseek-ai/dsh-client-locale",
43
- "@deepseek-ai/dsh-client-ui-settings"
43
+ "@deepseek-ai/dsh-client-ui-settings",
44
+ "@deepseek-ai/dsh-api-remotes"
44
45
  ],
45
- "external": [],
46
46
  "platform": "web"
47
47
  }
48
48
  },
@@ -55,6 +55,8 @@
55
55
  "README.md",
56
56
  "README.zh-CN.md",
57
57
  "SECURITY.md",
58
+ "docs/SECURITY_ROADMAP.md",
59
+ "docs/SECURITY_ROADMAP.zh-CN.md",
58
60
  "PRIVACY.md",
59
61
  "COMPATIBILITY.md",
60
62
  "THIRD_PARTY_NOTICES.md"
@@ -65,7 +67,7 @@
65
67
  "build:helpers": "sh scripts/build-all-helpers.sh",
66
68
  "prepack": "npm run build",
67
69
  "prepublishOnly": "npm test && npm run typecheck",
68
- "typecheck": "tsc --noEmit",
70
+ "typecheck": "tsc --noEmit && tsc -p tsconfig.tests.json --noEmit",
69
71
  "test": "tsx --test tests/*.test.ts"
70
72
  },
71
73
  "engines": {
@@ -80,14 +82,18 @@
80
82
  },
81
83
  "peerDependencies": {
82
84
  "@deepseek-ai/cordis": "^4.0.1",
83
- "@deepseek-ai/dsh-settings": "^0.1.1-rc.2",
84
- "@deepseek-ai/dsh-typert-protocol": "^0.1.1-rc.2",
85
+ "@deepseek-ai/dsh-api-remotes": "^0.1.1-rc.2 || ^0.1.2-alpha.1",
86
+ "@deepseek-ai/dsh-client-connection": "^0.1.1-rc.2 || ^0.1.2-alpha.1",
87
+ "@deepseek-ai/dsh-client-locale": "^0.1.1-rc.2 || ^0.1.2-alpha.1",
88
+ "@deepseek-ai/dsh-client-ui-settings": "^0.1.1-rc.2 || ^0.1.2-alpha.1",
89
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.1-rc.2 || ^0.1.2-alpha.1",
90
+ "@deepseek-ai/dsh-settings": "^0.1.1-rc.2 || ^0.1.2-alpha.1",
91
+ "@deepseek-ai/dsh-typert-protocol": "^0.1.1-rc.2 || ^0.1.2-alpha.1",
85
92
  "@deepseek-ai/schemastery": "^3.18.1",
86
93
  "react": "^18.2.0"
87
94
  },
88
95
  "devDependencies": {
89
96
  "@deepseek-ai/cordis": "^4.0.1",
90
- "@deepseek-ai/dsh-client-runtime": "^0.1.1-rc.2",
91
97
  "@deepseek-ai/dsh-settings": "^0.1.1-rc.2",
92
98
  "@deepseek-ai/dsh-typert-protocol": "^0.1.1-rc.2",
93
99
  "@deepseek-ai/schemastery": "^3.18.1",
@@ -100,5 +106,28 @@
100
106
  "tsx": "^4.23.12",
101
107
  "typescript": "^6.0.3"
102
108
  },
103
- "license": "MIT"
109
+ "license": "MIT",
110
+ "peerDependenciesMeta": {
111
+ "@deepseek-ai/dsh-api-remotes": {
112
+ "optional": true
113
+ },
114
+ "@deepseek-ai/dsh-client-connection": {
115
+ "optional": true
116
+ },
117
+ "@deepseek-ai/dsh-client-locale": {
118
+ "optional": true
119
+ },
120
+ "@deepseek-ai/dsh-client-ui-settings": {
121
+ "optional": true
122
+ },
123
+ "@deepseek-ai/dsh-client-ui-slots": {
124
+ "optional": true
125
+ },
126
+ "@deepseek-ai/dsh-settings": {
127
+ "optional": true
128
+ },
129
+ "@deepseek-ai/dsh-typert-protocol": {
130
+ "optional": true
131
+ }
132
+ }
104
133
  }