package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@deepseek-ai/dsh-file-reference",
  3. "description": "File-reference discovery contract and shared @file grammar",
  4. "version": "0.1.1-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/context/file-reference"
  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. "./grammar": {
  22. "types": "./lib/types/grammar.d.ts",
  23. "default": "./lib/types/grammar.js"
  24. },
  25. "./invariant": {
  26. "types": "./lib/types/invariant.d.ts",
  27. "default": "./lib/invariant.js"
  28. },
  29. "./types": {
  30. "types": "./lib/types/types.d.ts",
  31. "default": "./lib/types/types.js"
  32. },
  33. "./typert": {
  34. "types": "./lib/typert.host.d.ts",
  35. "default": "./lib/typert.host.js"
  36. },
  37. "./remote": {
  38. "types": "./lib/typert.remote-client.d.ts",
  39. "default": "./lib/typert.remote-client.js"
  40. },
  41. "./src/*": "./src/*",
  42. "./package.json": "./package.json"
  43. },
  44. "files": [
  45. "lib/index.js",
  46. "lib/invariant.js",
  47. "lib/types/**/*.js",
  48. "lib/types/**/*.d.ts",
  49. "lib/typert.host.js",
  50. "lib/typert.host.d.ts",
  51. "lib/typert.remote-client.js",
  52. "lib/typert.remote-client.d.ts"
  53. ],
  54. "license": "MIT",
  55. "peerDependencies": {
  56. "@deepseek-ai/dsh-agent": "workspace:^",
  57. "@deepseek-ai/dsh-invariants": "workspace:^",
  58. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  59. "@deepseek-ai/cordis": "workspace:^"
  60. },
  61. "devDependencies": {
  62. "@deepseek-ai/dsh-agent": "workspace:^",
  63. "@deepseek-ai/dsh-invariants": "workspace:^",
  64. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  65. "@deepseek-ai/cordis": "workspace:^"
  66. },
  67. "dependencies": {
  68. "zod": "^4.4.3"
  69. }
  70. }