package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@deepseek-ai/dsh-office-to-pdf",
  3. "description": "Shared Office-to-PDF conversion with bounded queues and caching",
  4. "version": "0.1.6-alpha.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "type": "module",
  9. "main": "lib/index.js",
  10. "types": "lib/types/index.d.ts",
  11. "license": "MIT",
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  15. "directory": "packages/document/office-to-pdf"
  16. },
  17. "exports": {
  18. ".": {
  19. "types": "./lib/types/index.d.ts",
  20. "default": "./lib/index.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json",
  24. "./types": {
  25. "types": "./lib/types/types.d.ts",
  26. "default": "./lib/types/types.js"
  27. },
  28. "./remote": {
  29. "types": "./lib/typert.remote-client.d.ts",
  30. "default": "./lib/typert.remote-client.js"
  31. },
  32. "./typert": {
  33. "types": "./lib/typert.host.d.ts",
  34. "default": "./lib/typert.host.js"
  35. }
  36. },
  37. "files": [
  38. "lib/index.js",
  39. "lib/types/**/*.js",
  40. "lib/types/**/*.d.ts",
  41. "lib/typert.host.js",
  42. "lib/typert.host.d.ts",
  43. "lib/typert.remote-client.js",
  44. "lib/typert.remote-client.d.ts"
  45. ],
  46. "peerDependencies": {
  47. "@deepseek-ai/cordis": "workspace:^"
  48. },
  49. "devDependencies": {
  50. "@deepseek-ai/cordis": "workspace:^",
  51. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  52. "@deepseek-ai/cordis-plugin-include": "workspace:^",
  53. "@deepseek-ai/dsh-api-workspace-files": "workspace:^",
  54. "@deepseek-ai/dsh-fs": "workspace:^",
  55. "@deepseek-ai/dsh-session": "workspace:^"
  56. },
  57. "dependencies": {
  58. "@deepseek-ai/libreoffice-kit": "0.0.1",
  59. "@deepseek-ai/schemastery": "workspace:^",
  60. "@deepseek-ai/dsh-brand": "workspace:^",
  61. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  62. "zod": "^4.4.3"
  63. }
  64. }