dsh-claude-subscription 0.2.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 ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "dsh-claude-subscription",
3
+ "version": "0.2.0",
4
+ "packageManager": "pnpm@11.19.0",
5
+ "description": "Claude Pro/Max subscription for DeepSeek Harness with official Anthropic OAuth login and automatic token refresh",
6
+ "type": "module",
7
+ "main": "./lib/index.js",
8
+ "exports": {
9
+ ".": "./lib/index.js",
10
+ "./client": "./lib/client.js",
11
+ "./cordis.patch.yml": "./cordis.patch.yml",
12
+ "./package.json": "./package.json"
13
+ },
14
+ "files": [
15
+ "lib/*.js",
16
+ "cordis.patch.yml",
17
+ "README.md",
18
+ "README.en.md",
19
+ "AGENTS.md",
20
+ "LICENSE",
21
+ "SECURITY.md",
22
+ "THIRD_PARTY_NOTICES.md",
23
+ "docs/assets/*.png"
24
+ ],
25
+ "dsh": {
26
+ "bundle": {
27
+ "patch": "./cordis.patch.yml"
28
+ },
29
+ "client": {
30
+ "inject": [
31
+ "@deepseek-ai/dsh-api-remotes",
32
+ "@deepseek-ai/dsh-client-connection",
33
+ "@deepseek-ai/dsh-client-locale",
34
+ "@deepseek-ai/dsh-client-runtime",
35
+ "@deepseek-ai/dsh-client-ui-conversation",
36
+ "@deepseek-ai/dsh-client-ui-model-selection",
37
+ "@deepseek-ai/dsh-client-ui-settings",
38
+ "@deepseek-ai/dsh-client-ui-tool"
39
+ ],
40
+ "platform": "web"
41
+ }
42
+ },
43
+ "scripts": {
44
+ "build": "tsdown --config tsdown.config.mjs",
45
+ "test": "node --test tests/*.test.mjs",
46
+ "check": "pnpm run test && pnpm run build && pnpm pack --pack-destination .artifacts"
47
+ },
48
+ "keywords": [
49
+ "dsh-plugin",
50
+ "deepseek",
51
+ "deepseek-harness",
52
+ "dsh",
53
+ "anthropic",
54
+ "claude",
55
+ "claude-pro",
56
+ "claude-max",
57
+ "subscription",
58
+ "oauth"
59
+ ],
60
+ "license": "MIT",
61
+ "publishConfig": {
62
+ "access": "public"
63
+ },
64
+ "engines": {
65
+ "node": "^22.19.0 || >=24.0.0"
66
+ },
67
+ "peerDependencies": {
68
+ "@deepseek-ai/cordis": "4.0.1",
69
+ "@deepseek-ai/dsh-api-remotes": "0.1.0-rc.6 || 0.1.0-rc.7",
70
+ "@deepseek-ai/dsh-client-connection": "0.1.0-rc.6 || 0.1.0-rc.7",
71
+ "@deepseek-ai/dsh-client-locale": "0.1.0-rc.6 || 0.1.0-rc.7",
72
+ "@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6 || 0.1.0-rc.7",
73
+ "@deepseek-ai/dsh-client-ui-conversation": "0.1.0-rc.6 || 0.1.0-rc.7",
74
+ "@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.6 || 0.1.0-rc.7",
75
+ "@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6 || 0.1.0-rc.7",
76
+ "@deepseek-ai/dsh-client-ui-settings": "0.1.0-rc.6 || 0.1.0-rc.7",
77
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6 || 0.1.0-rc.7",
78
+ "@deepseek-ai/dsh-credentials": "0.1.0-rc.6 || 0.1.0-rc.7",
79
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.6 || 0.1.0-rc.7",
80
+ "@deepseek-ai/dsh-llm-pi-ai": "0.1.0-rc.6 || 0.1.0-rc.7",
81
+ "@deepseek-ai/dsh-settings": "0.1.0-rc.6 || 0.1.0-rc.7",
82
+ "@deepseek-ai/schemastery": "3.18.1",
83
+ "@earendil-works/pi-ai": "0.82.1",
84
+ "react": "^18.2.0"
85
+ },
86
+ "devDependencies": {
87
+ "tsdown": "0.22.2"
88
+ }
89
+ }