package.json 928 B

12345678910111213141516171819202122232425262728293031323334
  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. "./src/*": "./src/*",
  15. "./package.json": "./package.json"
  16. },
  17. "files": [
  18. "lib/index.js",
  19. "lib/types/**/*.d.ts",
  20. "lib/types/**/*.d.ts.map",
  21. "src"
  22. ],
  23. "license": "BSD-3-Clause",
  24. "peerDependencies": {
  25. "@cordisjs/plugin-include": "^1.0.4",
  26. "@cordisjs/plugin-loader": "^1.0.0-rc.5",
  27. "cordis": "^4.0.0-rc.7"
  28. },
  29. "devDependencies": {
  30. "@cordisjs/plugin-include": "workspace:^",
  31. "@cordisjs/plugin-loader": "workspace:^",
  32. "cordis": "^4.0.0-rc.7"
  33. }
  34. }