package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@deepseek-ai/dsh-host-open-in-app",
  3. "description": "Host half of open-in-app: resolved application catalog, icons, and the launch endpoint as three webServer routes",
  4. "version": "0.1.6-alpha.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/host/open-in-app"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./shared": {
  22. "types": "./lib/types/shared.d.ts",
  23. "default": "./lib/types/shared.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "files": [
  29. "lib/index.js",
  30. "lib/types/**/*.js",
  31. "lib/types/**/*.d.ts"
  32. ],
  33. "scripts": {
  34. "bundle": "tsdown",
  35. "watch": "tsdown --watch"
  36. },
  37. "license": "MIT",
  38. "dependencies": {
  39. "@deepseek-ai/dsh-launch-environment": "workspace:^",
  40. "@deepseek-ai/dsh-native-command": "workspace:^",
  41. "@deepseek-ai/dsh-subprocess": "workspace:^",
  42. "@deepseek-ai/schemastery": "workspace:^"
  43. },
  44. "peerDependencies": {
  45. "@deepseek-ai/cordis": "workspace:^"
  46. },
  47. "devDependencies": {
  48. "@deepseek-ai/cordis": "workspace:^",
  49. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  50. "@deepseek-ai/dsh-host-webserver": "workspace:^"
  51. }
  52. }