package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@deepseek-ai/dsh-experimental-webworker-runtime",
  3. "description": "Browser-only harness runtime: in-memory VFS, module transform and loader, postMessage tunnel, and the dedicated Web Worker assembly, with the Node-compatibility layer that lets the host tree run unchanged",
  4. "version": "0.1.5-alpha.1",
  5. "private": true,
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  9. "directory": "packages/experimental/webworker-runtime"
  10. },
  11. "type": "module",
  12. "main": "lib/index.js",
  13. "types": "lib/types/index.d.ts",
  14. "exports": {
  15. ".": {
  16. "types": "./lib/types/index.d.ts",
  17. "default": "./lib/index.js"
  18. },
  19. "./src/*": "./src/*",
  20. "./package.json": "./package.json",
  21. "./worker": "./lib/worker.js",
  22. "./client": {
  23. "types": "./lib/types/client/index.d.ts",
  24. "default": "./lib/client.js"
  25. }
  26. },
  27. "license": "MIT",
  28. "dependencies": {
  29. "@deepseek-ai/dsh-util-crypto": "workspace:^",
  30. "@noble/hashes": "^2.3.0",
  31. "@yarnpkg/parsers": "^3.1.0",
  32. "acorn": "^8.17.0",
  33. "buffer": "^6.0.3",
  34. "picomatch": "^4.0.4",
  35. "readable-stream": "^4.7.0"
  36. },
  37. "peerDependencies": {
  38. "@deepseek-ai/cordis": "workspace:^",
  39. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  40. "@deepseek-ai/dsh-client-connection": "workspace:^",
  41. "@deepseek-ai/dsh-client-modules": "workspace:^",
  42. "@deepseek-ai/dsh-host-webserver": "workspace:^"
  43. },
  44. "devDependencies": {
  45. "@deepseek-ai/cordis": "workspace:^",
  46. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  47. "@deepseek-ai/dsh-api-gateway": "workspace:^",
  48. "@deepseek-ai/dsh-bash-sandbox": "workspace:^",
  49. "@deepseek-ai/dsh-client-connection": "workspace:^",
  50. "@deepseek-ai/dsh-client-file-upload": "workspace:^",
  51. "@deepseek-ai/dsh-client-modules": "workspace:^",
  52. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  53. "@deepseek-ai/dsh-sandbox-local": "workspace:^",
  54. "@deepseek-ai/dsh-sandbox-policy": "workspace:^",
  55. "@deepseek-ai/dsh-session": "workspace:^",
  56. "@deepseek-ai/dsh-session-projection": "workspace:^",
  57. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  58. "@deepseek-ai/dsh-subagent": "workspace:^",
  59. "@deepseek-ai/dsh-subprocess-local": "workspace:^",
  60. "@deepseek-ai/node-addon-system": "workspace:^",
  61. "@types/picomatch": "^3.0.2",
  62. "@types/readable-stream": "^4.0.24",
  63. "chokidar": "^5.0.0"
  64. },
  65. "files": [
  66. "lib/index.js",
  67. "lib/worker.js",
  68. "lib/client.js",
  69. "lib/types/**/*.d.ts"
  70. ]
  71. }