| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "name": "@deepseek-ai/dsh-host-apiproxy",
- "description": "API gateway: the ApiProxy contract (api/), the fetch carrier pair (fetch/), and the host-side gateway plugin providing ctx.apiProxy",
- "version": "0.1.1-rc.2",
- "publishConfig": {
- "access": "public"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
- "directory": "packages/host/apiproxy"
- },
- "type": "module",
- "main": "lib/index.js",
- "types": "lib/types/index.d.ts",
- "exports": {
- ".": {
- "types": "./lib/types/index.d.ts",
- "default": "./lib/index.js"
- },
- "./invariant": {
- "types": "./lib/types/invariant.d.ts",
- "default": "./lib/invariant.js"
- },
- "./src/*": "./src/*",
- "./package.json": "./package.json",
- "./api": {
- "types": "./lib/types/api/index.d.ts",
- "default": "./lib/types/api/index.js"
- },
- "./api/*": {
- "types": "./lib/types/api/*.d.ts",
- "default": "./lib/types/api/*.js"
- },
- "./client": {
- "types": "./lib/types/fetch/client.d.ts",
- "default": "./lib/types/fetch/client.js"
- }
- },
- "files": [
- "lib/index.js",
- "lib/invariant.js",
- "lib/types/**/*.js",
- "lib/types/**/*.d.ts"
- ],
- "license": "MIT",
- "dependencies": {
- "@deepseek-ai/dsh-agent": "workspace:^",
- "@deepseek-ai/dsh-agent-default-model": "workspace:^",
- "@deepseek-ai/dsh-attachment": "workspace:^",
- "@deepseek-ai/dsh-api-session-controller": "workspace:^",
- "@deepseek-ai/dsh-brand": "workspace:^",
- "@deepseek-ai/dsh-commands": "workspace:^",
- "@deepseek-ai/dsh-credentials": "workspace:^",
- "@deepseek-ai/dsh-goal": "workspace:^",
- "@deepseek-ai/dsh-host-directory-picker": "workspace:^",
- "@deepseek-ai/dsh-llm": "workspace:^",
- "@deepseek-ai/dsh-native-command": "workspace:^",
- "@deepseek-ai/dsh-scope": "workspace:^",
- "@deepseek-ai/dsh-session": "workspace:^",
- "@deepseek-ai/dsh-session-persistence": "workspace:^",
- "@deepseek-ai/dsh-session-query": "workspace:^",
- "@deepseek-ai/dsh-settings": "workspace:^",
- "@deepseek-ai/dsh-skill": "workspace:^",
- "@deepseek-ai/dsh-subagent": "workspace:^",
- "@deepseek-ai/dsh-util-crypto": "workspace:^",
- "@deepseek-ai/schemastery": "workspace:^",
- "fflate": "^0.8.2",
- "zod": "^4.4.3"
- },
- "peerDependencies": {
- "@deepseek-ai/cordis": "workspace:^",
- "@deepseek-ai/dsh-agent-presets": "workspace:^",
- "@deepseek-ai/dsh-invariants": "workspace:^"
- },
- "devDependencies": {
- "@deepseek-ai/cordis": "workspace:^",
- "@deepseek-ai/dsh-agent-presets": "workspace:^",
- "@deepseek-ai/dsh-invariants": "workspace:^",
- "@deepseek-ai/dsh-typert-protocol": "workspace:^",
- "@deepseek-ai/dsh-typert-registry": "workspace:^"
- }
- }
|