| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "name": "@deepseek-ai/dsh-client-runtime",
- "description": "Client core services: SlotRegistry, SessionRuntime (scope tree + object layer)",
- "version": "0.0.1-rc.5",
- "publishConfig": {
- "access": "restricted"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
- "directory": "packages/client/runtime"
- },
- "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"
- },
- "dsh": {
- "client": {
- "inject": [
- "@deepseek-ai/dsh-client-connection",
- "@deepseek-ai/dsh-typert-registry",
- "@deepseek-ai/dsh-api-remotes"
- ],
- "platform": "web",
- "immediately": true
- }
- },
- "license": "MIT",
- "dependencies": {
- "@deepseek-ai/dsh-agent": "workspace:^",
- "@deepseek-ai/dsh-attachment": "workspace:^",
- "@deepseek-ai/dsh-client-connection": "workspace:^",
- "@deepseek-ai/dsh-commands": "workspace:^",
- "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
- "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
- "@deepseek-ai/dsh-llm": "workspace:^",
- "@deepseek-ai/dsh-llm-retry": "workspace:^",
- "@deepseek-ai/dsh-session": "workspace:^",
- "@deepseek-ai/dsh-session-projection": "workspace:^",
- "@deepseek-ai/dsh-session-title": "workspace:^",
- "@deepseek-ai/dsh-tools": "workspace:^",
- "immer": "^10.1.1",
- "react": "^18.2.0",
- "zustand": "~4.4.7"
- },
- "peerDependencies": {
- "@deepseek-ai/cordis": "workspace:^",
- "@deepseek-ai/dsh-api-remotes": "workspace:^",
- "@deepseek-ai/dsh-invariants": "workspace:^",
- "@deepseek-ai/dsh-typert-protocol": "workspace:^",
- "@deepseek-ai/dsh-typert-registry": "workspace:^"
- },
- "devDependencies": {
- "@deepseek-ai/cordis": "workspace:^",
- "@deepseek-ai/dsh-api-remotes": "workspace:^",
- "@deepseek-ai/dsh-invariants": "workspace:^",
- "@deepseek-ai/dsh-timeout": "workspace:^",
- "@deepseek-ai/dsh-typert-protocol": "workspace:^",
- "@deepseek-ai/dsh-typert-registry": "workspace:^",
- "@types/react": "~18.3.1"
- },
- "files": [
- "lib/index.js",
- "lib/invariant.js",
- "lib/client.js",
- "lib/types/**/*.d.ts"
- ]
- }
|