package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-settings-general",
  3. "description": "Settings ownerless-copy and product onboarding plugin: the General section, shell trigger/header chrome content, settings dictionaries, and the versioned welcome notice",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./client": {
  19. "types": "./lib/types/client/index.d.ts",
  20. "default": "./lib/client.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "dshClient": {
  26. "inject": [
  27. "@deepseek-ai/dsh-client-runtime",
  28. "@deepseek-ai/dsh-client-ui-settings",
  29. "@deepseek-ai/dsh-client-locale",
  30. "@deepseek-ai/dsh-client-connection"
  31. ],
  32. "platform": "web"
  33. },
  34. "scripts": {
  35. "bundle": "tsdown",
  36. "watch": "tsdown --watch"
  37. },
  38. "license": "BSD-3-Clause",
  39. "dependencies": {
  40. "@deepseek-ai/dsh-settings": "workspace:^",
  41. "schemastery": "^3.18.0"
  42. },
  43. "peerDependencies": {
  44. "@deepseek-ai/dsh-client-connection": "^0.0.1",
  45. "@deepseek-ai/dsh-client-locale": "^0.0.1",
  46. "@deepseek-ai/dsh-client-runtime": "^0.0.1",
  47. "@deepseek-ai/dsh-client-ui-primitives": "^0.0.1",
  48. "@deepseek-ai/dsh-client-ui-settings": "^0.0.1",
  49. "@deepseek-ai/dsh-client-ui-slots": "^0.0.1",
  50. "@deepseek-ai/dsh-client-web-react": "^0.0.1",
  51. "@deepseek-ai/dsh-invariants": "^0.0.1",
  52. "cordis": "^4.0.0-rc.7",
  53. "react": "^18.2.0"
  54. },
  55. "devDependencies": {
  56. "@deepseek-ai/dsh-client-connection": "workspace:^",
  57. "@deepseek-ai/dsh-client-locale": "workspace:^",
  58. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  59. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  60. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  61. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  62. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  63. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  64. "@deepseek-ai/dsh-invariants": "workspace:^",
  65. "@types/react": "~18.3.1",
  66. "cordis": "^4.0.0-rc.7",
  67. "react": "^18.2.0"
  68. },
  69. "files": [
  70. "lib/index.js",
  71. "lib/invariant.js",
  72. "lib/client.js",
  73. "lib/types/**/*.d.ts"
  74. ]
  75. }