package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-dockkit",
  3. "description": "Docking layout kit: split-tree engine with invertible operations, and the React components that render and drive it (zero cordis)",
  4. "version": "0.1.5-rc.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/client/ui-dockkit"
  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. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "license": "MIT",
  25. "devDependencies": {
  26. "@deepseek-ai/cordis": "workspace:^",
  27. "@deepseek-ai/dsh-brand": "workspace:^",
  28. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  29. "@testing-library/react": "^16.1.0",
  30. "@types/react": "~18.3.1",
  31. "@types/react-dom": "~18.3.0",
  32. "react-dom": "^18.2.0",
  33. "react": "^18.2.0",
  34. "clsx": "^2.0.0"
  35. },
  36. "files": [
  37. "lib/index.js",
  38. "lib/**/*.css",
  39. "lib/types/**/*.d.ts"
  40. ],
  41. "peerDependencies": {
  42. "@deepseek-ai/cordis": "workspace:^"
  43. }
  44. }