package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@deepseek-ai/dsh-file-reference",
  3. "description": "File-reference discovery contract and shared @file grammar",
  4. "version": "0.1.3-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/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. "./types": {
  26. "types": "./lib/types/types.d.ts",
  27. "default": "./lib/types/types.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "files": [
  33. "lib/index.js",
  34. "lib/types/**/*.js",
  35. "lib/types/**/*.d.ts"
  36. ],
  37. "license": "MIT",
  38. "peerDependencies": {
  39. "@deepseek-ai/dsh-agent": "workspace:^",
  40. "@deepseek-ai/cordis": "workspace:^"
  41. },
  42. "devDependencies": {
  43. "@deepseek-ai/dsh-agent": "workspace:^",
  44. "@deepseek-ai/cordis": "workspace:^"
  45. }
  46. }