package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.1-rc.2",
  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. "./invariant": {
  20. "types": "./lib/types/invariant.d.ts",
  21. "default": "./lib/invariant.js"
  22. },
  23. "./src/*": "./src/*",
  24. "./package.json": "./package.json",
  25. "./worker": "./lib/worker.js",
  26. "./client": {
  27. "types": "./lib/types/client/index.d.ts",
  28. "default": "./lib/client.js"
  29. }
  30. },
  31. "license": "MIT",
  32. "dependencies": {
  33. "@deepseek-ai/dsh-util-crypto": "workspace:^",
  34. "@noble/hashes": "^2.3.0",
  35. "@yarnpkg/parsers": "^3.1.0",
  36. "acorn": "^8.17.0",
  37. "buffer": "^6.0.3",
  38. "picomatch": "^4.0.4",
  39. "readable-stream": "^4.7.0"
  40. },
  41. "peerDependencies": {
  42. "@deepseek-ai/cordis": "workspace:^",
  43. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  44. "@deepseek-ai/dsh-client-modules": "workspace:^",
  45. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  46. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  47. "@deepseek-ai/dsh-invariants": "workspace:^"
  48. },
  49. "devDependencies": {
  50. "@deepseek-ai/cordis": "workspace:^",
  51. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  52. "@deepseek-ai/dsh-api-gateway": "workspace:^",
  53. "@deepseek-ai/dsh-bash-sandbox": "workspace:^",
  54. "@deepseek-ai/dsh-client-modules": "workspace:^",
  55. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  56. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  57. "@deepseek-ai/dsh-invariants": "workspace:^",
  58. "@deepseek-ai/dsh-sandbox-local": "workspace:^",
  59. "@deepseek-ai/dsh-sandbox-policy": "workspace:^",
  60. "@deepseek-ai/dsh-session": "workspace:^",
  61. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  62. "@deepseek-ai/dsh-subagent": "workspace:^",
  63. "@deepseek-ai/dsh-subprocess-local": "workspace:^",
  64. "@deepseek-ai/node-addon-landlock-run": "workspace:^",
  65. "@types/picomatch": "^3.0.2",
  66. "@types/readable-stream": "^4.0.24",
  67. "chokidar": "^5.0.0"
  68. },
  69. "files": [
  70. "lib/index.js",
  71. "lib/invariant.js",
  72. "lib/worker.js",
  73. "lib/client.js",
  74. "lib/types/**/*.d.ts"
  75. ]
  76. }