2026-09-09 00:52:52 +08:00
|
|
|
{
|
|
|
|
|
"name": "dsh-plugin-model-enhancer",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Enhance DSH model settings with image input, reasoning effort levels, and models.dev prefilling",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "./lib/index.js",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2026-09-11 13:58:29 +08:00
|
|
|
"types": "./lib/types/index.d.ts",
|
2026-09-09 00:52:52 +08:00
|
|
|
"default": "./lib/index.js"
|
|
|
|
|
},
|
2026-09-11 13:58:29 +08:00
|
|
|
"./client": {
|
|
|
|
|
"types": "./lib/types/client/index.d.ts",
|
|
|
|
|
"default": "./lib/client.js"
|
|
|
|
|
},
|
2026-09-09 00:52:52 +08:00
|
|
|
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
2026-09-11 13:58:29 +08:00
|
|
|
"scripts": {
|
|
|
|
|
"build": "node build.cjs && tsc --emitDeclarationOnly",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
2026-09-09 00:52:52 +08:00
|
|
|
"dsh": {
|
|
|
|
|
"bundle": {
|
|
|
|
|
"patch": "./cordis.patch.yml"
|
|
|
|
|
},
|
|
|
|
|
"client": {
|
|
|
|
|
"platform": "web",
|
|
|
|
|
"inject": [
|
|
|
|
|
"@deepseek-ai/dsh-client-connection",
|
|
|
|
|
"@deepseek-ai/dsh-client-runtime",
|
|
|
|
|
"@deepseek-ai/dsh-client-locale",
|
|
|
|
|
"@deepseek-ai/dsh-client-ui-settings",
|
|
|
|
|
"@deepseek-ai/dsh-client-ui-slots",
|
|
|
|
|
"@deepseek-ai/dsh-api-remotes"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"@deepseek-ai/cordis": "^4.0.1"
|
2026-09-11 13:58:29 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^22.20.2",
|
|
|
|
|
"@types/react": "^18.3.1",
|
|
|
|
|
"esbuild": "^0.28.2",
|
|
|
|
|
"typescript": "^5.8.2",
|
|
|
|
|
"vitest": "^3.0.0"
|
2026-09-09 00:52:52 +08:00
|
|
|
}
|
|
|
|
|
}
|