package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@deepseek-ai/dsh-file-reference",
  3. "description": "File-reference discovery contract and shared @file grammar",
  4. "version": "0.1.2-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. "./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. "./src/*": "./src/*",
  34. "./package.json": "./package.json"
  35. },
  36. "files": [
  37. "lib/index.js",
  38. "lib/invariant.js",
  39. "lib/types/**/*.js",
  40. "lib/types/**/*.d.ts"
  41. ],
  42. "license": "MIT",
  43. "peerDependencies": {
  44. "@deepseek-ai/dsh-agent": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/cordis": "workspace:^"
  47. },
  48. "devDependencies": {
  49. "@deepseek-ai/dsh-agent": "workspace:^",
  50. "@deepseek-ai/dsh-invariants": "workspace:^",
  51. "@deepseek-ai/cordis": "workspace:^"
  52. }
  53. }