package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@deepseek-ai/dsh-experimental-inspector",
  3. "description": "Experimental cross-realm CDP hub for Host debugging and Client Runtime inspection",
  4. "version": "0.1.5-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/inspector"
  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. "./client": {
  20. "types": "./lib/types/client/index.d.ts",
  21. "default": "./lib/client.js"
  22. },
  23. "./src/*": "./src/*",
  24. "./package.json": "./package.json"
  25. },
  26. "dsh": {
  27. "client": {
  28. "inject": [],
  29. "platform": "web",
  30. "immediately": true
  31. }
  32. },
  33. "files": [
  34. "lib/index.js",
  35. "lib/client.js",
  36. "lib/types/**/*.d.ts"
  37. ],
  38. "license": "MIT",
  39. "dependencies": {
  40. "@deepseek-ai/dsh-brand": "workspace:^",
  41. "@deepseek-ai/dsh-util-crypto": "workspace:^",
  42. "@deepseek-ai/schemastery": "workspace:^",
  43. "ws": "^8.21.0"
  44. },
  45. "peerDependencies": {
  46. "@deepseek-ai/cordis": "workspace:^",
  47. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  48. "@deepseek-ai/dsh-client-modules": "workspace:^",
  49. "@deepseek-ai/dsh-host-webserver": "workspace:^"
  50. },
  51. "devDependencies": {
  52. "@deepseek-ai/cordis": "workspace:^",
  53. "@deepseek-ai/cordis-plugin-include": "workspace:^",
  54. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  55. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  56. "@types/ws": "^8.18.1",
  57. "playwright": "^1.49.0",
  58. "tsx": "^4.19.2"
  59. }
  60. }