package.json 874 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "hexo-related-posts",
  3. "version": "1.5.0",
  4. "description": "Hexo plugin that generates related posts list with TF/IDF algorithm",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/sergeyzwezdin/hexo-related-posts.git"
  9. },
  10. "files": [
  11. "index.js",
  12. "lib/"
  13. ],
  14. "keywords": [
  15. "tf",
  16. "idf",
  17. "tf/idf",
  18. "related",
  19. "popular",
  20. "hexo"
  21. ],
  22. "author": "Sergey Zwezdin <sergey@zwezdin.com> (https://zwezdin.com)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/sergeyzwezdin/hexo-related-posts/issues"
  26. },
  27. "homepage": "https://github.com/sergeyzwezdin/hexo-related-posts#readme",
  28. "peerDependencies": {
  29. "hexo": "^4.2.0 || ^5.2.0 || ^6.0.0",
  30. "chalk": "^4.1.0"
  31. },
  32. "dependencies": {
  33. "natural": "^2.1.5"
  34. },
  35. "devDependencies": {
  36. "chalk": "^4.1.0"
  37. }
  38. }