package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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-alpha.1",
  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. "dependencies": {
  26. "clsx": "^2.0.0",
  27. "react": "^18.2.0",
  28. "react-dom": "^18.2.0"
  29. },
  30. "devDependencies": {
  31. "@deepseek-ai/cordis": "workspace:^",
  32. "@deepseek-ai/dsh-brand": "workspace:^",
  33. "@testing-library/react": "^16.1.0",
  34. "@types/react": "~18.3.1",
  35. "@types/react-dom": "~18.3.0",
  36. "react-dom": "^18.2.0"
  37. },
  38. "files": [
  39. "lib/index.js",
  40. "lib/**/*.css",
  41. "lib/types/**/*.d.ts"
  42. ],
  43. "peerDependencies": {
  44. "@deepseek-ai/cordis": "workspace:^"
  45. }
  46. }