@djdowbnac/dsh-claude-auth 0.1.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 +82 -0
- package/cordis.patch.yml +6 -0
- package/lib/index.js +5261 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@djdowbnac/dsh-claude-auth",
|
|
3
|
+
"description": "LLM provider plugin for the DeepSeek Harness (dsh): streams Claude (Sonnet/Haiku/Opus) through your Claude Code subscription (claude.ai OAuth credentials), no Anthropic API key required.",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"types": "lib/types/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./lib/types/index.d.ts",
|
|
11
|
+
"default": "./lib/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./src/*": "./src/*",
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"lib/index.js",
|
|
18
|
+
"lib/types/**/*.d.ts",
|
|
19
|
+
"cordis.patch.yml",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"dsh": {
|
|
23
|
+
"bundle": {
|
|
24
|
+
"patch": "./cordis.patch.yml"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
33
|
+
"@semantic-release/changelog": "7.0.0",
|
|
34
|
+
"@semantic-release/commit-analyzer": "13.0.1",
|
|
35
|
+
"@semantic-release/git": "11.0.1",
|
|
36
|
+
"@semantic-release/npm": "13.1.5",
|
|
37
|
+
"@semantic-release/release-notes-generator": "14.1.1",
|
|
38
|
+
"@types/node": "^22.20.2",
|
|
39
|
+
"bun-types": "^1.4.2",
|
|
40
|
+
"semantic-release": "25.0.9",
|
|
41
|
+
"typescript": "^5.9.3"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
45
|
+
"@deepseek-ai/dsh-credentials": "^0.1.5-rc.1",
|
|
46
|
+
"@deepseek-ai/dsh-launch-environment": "^0.1.5-rc.1",
|
|
47
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-rc.1",
|
|
48
|
+
"@deepseek-ai/dsh-settings": "^0.1.5-rc.1",
|
|
49
|
+
"@deepseek-ai/dsh-timeout": "^0.1.5-rc.1"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "bun build src/index.ts --target node --format esm --outdir lib && node scripts/strip-bundle-comments.mjs lib/index.js --write",
|
|
53
|
+
"typecheck": "bunx tsc --noEmit",
|
|
54
|
+
"test": "bun test",
|
|
55
|
+
"smoke": "bun scripts/smoke.mjs"
|
|
56
|
+
}
|
|
57
|
+
}
|