@tokennotincluded/dsh-lmm-provider 0.1.0-alpha.3

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,104 @@
1
+ {
2
+ "name": "@tokennotincluded/dsh-lmm-provider",
3
+ "version": "0.1.0-alpha.3",
4
+ "description": "LMM browser OAuth and account-scoped model provider for DeepSeek Harness",
5
+ "type": "module",
6
+ "license": "AGPL-3.0-only",
7
+ "author": "TokenNotIncluded",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/TokenNotIncluded/dsh-lmm-provider.git"
11
+ },
12
+ "homepage": "https://github.com/TokenNotIncluded/dsh-lmm-provider#readme",
13
+ "keywords": [
14
+ "deepseek-harness",
15
+ "dsh-plugin",
16
+ "oauth",
17
+ "lmm",
18
+ "model-provider"
19
+ ],
20
+ "engines": {
21
+ "node": "^22.19.0 || >=24.0.0"
22
+ },
23
+ "main": "./lib/index.mjs",
24
+ "exports": {
25
+ ".": "./lib/index.mjs",
26
+ "./cordis.patch.yml": "./cordis.patch.yml",
27
+ "./package.json": "./package.json",
28
+ "./client": "./lib/client.js"
29
+ },
30
+ "files": [
31
+ "lib/index.mjs",
32
+ "lib/client.js",
33
+ "cordis.patch.yml",
34
+ "README.md"
35
+ ],
36
+ "dsh": {
37
+ "plugin": {
38
+ "schemaVersion": 1,
39
+ "displayName": {
40
+ "zh-CN": "LMM 模型",
41
+ "en": "LMM Models"
42
+ },
43
+ "summary": {
44
+ "zh-CN": "通过浏览器 OAuth 登录 LMM,并在 DSH 中使用账户可用的模型。",
45
+ "en": "Sign in to LMM with browser OAuth and use account-scoped models in DSH."
46
+ },
47
+ "category": "model-provider"
48
+ },
49
+ "bundle": {
50
+ "patch": "./cordis.patch.yml"
51
+ },
52
+ "client": {
53
+ "platform": "web",
54
+ "inject": [
55
+ "@deepseek-ai/dsh-client-ui-settings-models",
56
+ "@deepseek-ai/dsh-client-connection"
57
+ ]
58
+ }
59
+ },
60
+ "scripts": {
61
+ "build": "tsdown src/index.ts --format esm --out-dir lib --clean && node scripts/build-client.mjs",
62
+ "test": "node --experimental-strip-types --test test/*.test.ts",
63
+ "typecheck": "tsc --noEmit",
64
+ "pack:check": "npm run build && npm pack --dry-run --ignore-scripts"
65
+ },
66
+ "dependencies": {
67
+ "@modelcontextprotocol/sdk": "^1.30.0",
68
+ "@earendil-works/pi-ai": "^0.85.1",
69
+ "@deepseek-ai/dsh-home-paths": "0.1.5-rc.2",
70
+ "@deepseek-ai/dsh-llm-pi-ai": "0.1.5-rc.2",
71
+ "typebox": "^1.3.30",
72
+ "@deepseek-ai/dsh-authorization": "0.1.5-rc.2"
73
+ },
74
+ "peerDependencies": {
75
+ "@deepseek-ai/cordis": "^4.0.2",
76
+ "@deepseek-ai/dsh-attachment": "^0.1.5-rc.2",
77
+ "@deepseek-ai/dsh-credentials": "^0.1.5-rc.2",
78
+ "@deepseek-ai/dsh-launch-environment": "^0.1.5-rc.2",
79
+ "@deepseek-ai/dsh-llm": "^0.1.5-rc.2",
80
+ "@deepseek-ai/dsh-timeout": "^0.1.5-rc.2",
81
+ "@deepseek-ai/dsh-client-connection": "^0.1.5-rc.2"
82
+ },
83
+ "devDependencies": {
84
+ "@deepseek-ai/cordis": "4.0.2",
85
+ "@deepseek-ai/dsh-attachment": "0.1.5-rc.2",
86
+ "@deepseek-ai/dsh-credentials": "0.1.5-rc.2",
87
+ "@deepseek-ai/dsh-launch-environment": "0.1.5-rc.2",
88
+ "@deepseek-ai/dsh-llm": "0.1.5-rc.2",
89
+ "@deepseek-ai/dsh-timeout": "0.1.5-rc.2",
90
+ "@types/node": "^22.19.0",
91
+ "tsdown": "^0.22.14",
92
+ "typescript": "^6.0.3",
93
+ "@deepseek-ai/dsh-client-connection": "0.1.5-rc.2",
94
+ "@deepseek-ai/dsh-fs": "0.1.5-rc.2",
95
+ "esbuild": "^0.25.0",
96
+ "react": "^18.3.1",
97
+ "@types/react": "^18.3.0"
98
+ },
99
+ "peerDependenciesMeta": {
100
+ "@deepseek-ai/dsh-client-connection": {
101
+ "optional": true
102
+ }
103
+ }
104
+ }