| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "@deepseek-ai/dsh-client-modules",
- "description": "Client module system, dual-face: node half composes the __DSH_BOOT__ entry graph (incremental dsh.client scan, bundle route, index tap, webPlugins service); browser half is the lazy-CJS module table the vendored cordis Loader consumes as its internal seam",
- "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/modules"
- },
- "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"
- },
- "./invariant": {
- "types": "./lib/types/invariant.d.ts",
- "default": "./lib/invariant.js"
- },
- "./src/*": "./src/*",
- "./package.json": "./package.json"
- },
- "dsh": {
- "client": {
- "platform": "web",
- "inject": [],
- "immediately": true
- }
- },
- "scripts": {
- "bundle": "tsdown",
- "watch": "tsdown --watch"
- },
- "license": "MIT",
- "devDependencies": {
- "@deepseek-ai/cordis-plugin-loader": "workspace:^",
- "@deepseek-ai/dsh-host-webserver": "workspace:^",
- "@deepseek-ai/dsh-invariants": "workspace:^",
- "@deepseek-ai/cordis": "workspace:^"
- },
- "files": [
- "lib/index.js",
- "lib/invariant.js",
- "lib/client.js",
- "lib/types/**/*.d.ts"
- ],
- "peerDependencies": {
- "@deepseek-ai/dsh-invariants": "workspace:^",
- "@deepseek-ai/cordis": "workspace:^"
- }
- }
|