| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "@deepseek-ai/dsh-client-connection",
- "description": "Wire consumer layer: HTTP-up/WebSocket-down client, ConnectionController dual streams with reconnect, and fixture api",
- "version": "0.0.1",
- "private": true,
- "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"
- },
- "./client": {
- "types": "./lib/types/client/index.d.ts",
- "default": "./lib/client.js"
- },
- "./src/*": "./src/*",
- "./package.json": "./package.json"
- },
- "dshClient": {
- "inject": [],
- "platform": "web",
- "immediately": true
- },
- "license": "BSD-3-Clause",
- "dependencies": {
- "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
- "@deepseek-ai/dsh-commands": "workspace:^",
- "@deepseek-ai/dsh-llm": "workspace:^",
- "@deepseek-ai/dsh-session": "workspace:^",
- "@deepseek-ai/dsh-tools": "workspace:^",
- "schemastery": "^3.18.0",
- "ws": "^8.21.0"
- },
- "files": [
- "lib/index.js",
- "lib/invariant.js",
- "lib/client.js",
- "lib/types/**/*.d.ts"
- ],
- "peerDependencies": {
- "@deepseek-ai/dsh-host-webserver": "^0.0.1",
- "@deepseek-ai/dsh-invariants": "^0.0.1",
- "cordis": "^4.0.0-rc.7"
- },
- "devDependencies": {
- "@deepseek-ai/dsh-host-webserver": "workspace:^",
- "@deepseek-ai/dsh-invariants": "workspace:^",
- "@types/ws": "^8.18.1",
- "cordis": "^4.0.0-rc.7"
- }
- }
|