package.json 750 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@cordisjs/plugin-include",
  3. "description": "Include files in cordis configurations",
  4. "version": "1.0.4",
  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. "author": "Shigma <shigma10826@gmail.com>",
  24. "license": "MIT",
  25. "peerDependencies": {
  26. "@cordisjs/plugin-loader": "^1.0.0-rc.5",
  27. "cordis": "^4.0.0-rc.7"
  28. },
  29. "dependencies": {
  30. "cosmokit": "^1.8.1",
  31. "js-yaml": "^4.1.0"
  32. }
  33. }