| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "name": "@deepseek-ai/dsh-api-gateway",
- "description": "Typert Remote Host dispatcher and Client API endpoint",
- "version": "0.1.3-alpha.1",
- "publishConfig": {
- "access": "public"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
- "directory": "packages/api/gateway"
- },
- "type": "module",
- "main": "lib/index.js",
- "types": "lib/types/index.d.ts",
- "exports": {
- ".": {
- "types": "./lib/types/index.d.ts",
- "default": "./lib/index.js"
- },
- "./client": {
- "types": "./lib/types/client/index.d.ts",
- "default": "./lib/client.js"
- },
- "./types": {
- "types": "./lib/types/types.d.ts",
- "default": "./lib/types/types.js"
- },
- "./src/*": "./src/*",
- "./package.json": "./package.json"
- },
- "dsh": {
- "client": {
- "inject": [
- "@deepseek-ai/dsh-typert-registry",
- "@deepseek-ai/dsh-client-connection"
- ],
- "platform": "web",
- "immediately": true
- }
- },
- "scripts": {
- "bundle": "tsdown",
- "watch": "tsdown --watch"
- },
- "files": [
- "lib/index.js",
- "lib/client.js",
- "lib/types/**/*.js",
- "lib/types/**/*.d.ts"
- ],
- "license": "MIT",
- "dependencies": {
- "@deepseek-ai/dsh-deque": "workspace:^",
- "@deepseek-ai/dsh-timeout": "workspace:^",
- "@deepseek-ai/schemastery": "workspace:^",
- "ws": "^8.21.0",
- "@deepseek-ai/dsh-typert-protocol": "workspace:^"
- },
- "peerDependencies": {
- "@deepseek-ai/cordis": "workspace:^"
- },
- "devDependencies": {
- "@deepseek-ai/dsh-brand": "workspace:^",
- "@deepseek-ai/dsh-client-connection": "workspace:^",
- "@deepseek-ai/dsh-host-webserver": "workspace:^",
- "@deepseek-ai/dsh-typert-registry": "workspace:^",
- "@deepseek-ai/dsh-util-crypto": "workspace:^",
- "@types/ws": "^8.18.1",
- "@deepseek-ai/cordis": "workspace:^",
- "zod": "^4.4.3"
- }
- }
|