package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@deepseek-ai/dsh-client-schema-form",
  3. "description": "Schema/draft model layer for settings editors: rehydrates a serialized schemastery schema, validates drafts, and edits them immutably by path",
  4. "version": "0.0.1-rc.5",
  5. "publishConfig": {
  6. "access": "restricted"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/client/schema-form"
  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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "license": "MIT",
  29. "dependencies": {
  30. "@deepseek-ai/schemastery": "workspace:^"
  31. },
  32. "peerDependencies": {
  33. "@deepseek-ai/dsh-invariants": "workspace:^",
  34. "@deepseek-ai/cordis": "workspace:^"
  35. },
  36. "devDependencies": {
  37. "@deepseek-ai/dsh-invariants": "workspace:^",
  38. "@deepseek-ai/cordis": "workspace:^"
  39. },
  40. "files": [
  41. "lib/index.js",
  42. "lib/invariant.js",
  43. "lib/types/**/*.d.ts"
  44. ]
  45. }