package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@deepseek-ai/dsh-app-boot",
  3. "description": "Shared boot glue for the app bins: .env loading, fail-loud Loader guards, snapshot-aware config resolution, and the Loader boot sequence",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./src/*": "./src/*",
  19. "./package.json": "./package.json"
  20. },
  21. "files": [
  22. "lib/index.js",
  23. "lib/invariant.js",
  24. "lib/types/**/*.d.ts",
  25. "lib/types/**/*.d.ts.map",
  26. "src"
  27. ],
  28. "license": "BSD-3-Clause",
  29. "dependencies": {
  30. "js-yaml": "^4.2.0"
  31. },
  32. "peerDependencies": {
  33. "@cordisjs/plugin-include": "^1.0.4",
  34. "@cordisjs/plugin-loader": "^1.0.0-rc.5",
  35. "@deepseek-ai/dsh-invariants": "^0.0.1",
  36. "@deepseek-ai/dsh-paths": "^0.0.1",
  37. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  38. "cordis": "^4.0.0-rc.7"
  39. },
  40. "devDependencies": {
  41. "@cordisjs/plugin-include": "workspace:^",
  42. "@cordisjs/plugin-loader": "workspace:^",
  43. "@deepseek-ai/dsh-invariants": "workspace:^",
  44. "@deepseek-ai/dsh-paths": "workspace:^",
  45. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  46. "@types/js-yaml": "^4.0.9",
  47. "cordis": "^4.0.0-rc.7"
  48. }
  49. }