package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. },
  40. "peerDependencies": {
  41. "@deepseek-ai/cordis": "workspace:^",
  42. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  43. "@deepseek-ai/dsh-client-modules": "workspace:^",
  44. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  45. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  46. "@deepseek-ai/dsh-invariants": "workspace:^"
  47. },
  48. "devDependencies": {
  49. "@deepseek-ai/cordis": "workspace:^",
  50. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  51. "@deepseek-ai/dsh-client-modules": "workspace:^",
  52. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  53. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  54. "@deepseek-ai/dsh-invariants": "workspace:^",
  55. "@deepseek-ai/dsh-subprocess-local": "workspace:^",
  56. "@types/picomatch": "^3.0.2"
  57. },
  58. "files": [
  59. "lib/index.js",
  60. "lib/invariant.js",
  61. "lib/worker.js",
  62. "lib/client.js",
  63. "lib/types/**/*.d.ts"
  64. ]
  65. }