package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "rhedyn",
  3. "version": "1.0.0",
  4. "description": "quick and dirty static site renderer",
  5. "main": "src/index.js",
  6. "scripts": {
  7. "generate": "node src/index.js",
  8. "test": "node --test",
  9. "build": "nexe -i src/index.js -o dist/rhedyn --build --python=$(which python3)",
  10. "lint-fix": "eslint --fix src/**/*.js"
  11. },
  12. "bin": {
  13. "rhedyn": "src/index.js"
  14. },
  15. "exports": {
  16. "./utils": "./src/util/index.js",
  17. "./defaultConfig": "./src/defaults.js",
  18. "./actions": "./src/actions/index.js"
  19. },
  20. "keywords": [],
  21. "author": "",
  22. "license": "ISC",
  23. "type": "module",
  24. "dependencies": {
  25. "favicons": "^7.2.0",
  26. "glob": "^11.0.3",
  27. "gray-matter": "^4.0.3",
  28. "handlebars": "^4.7.8",
  29. "html-minifier-terser": "^7.2.0",
  30. "lodash-es": "^4.17.22",
  31. "marked": "^15.0.6",
  32. "marked-code-preview": "^1.3.7",
  33. "safe-stable-stringify": "^2.5.0",
  34. "sass": "^1.83.1",
  35. "sharp": "^0.34.2",
  36. "svgo": "^3.3.2"
  37. },
  38. "devDependencies": {
  39. "@eslint/js": "^9.15.0",
  40. "eslint": "^9.15.0",
  41. "nexe": "^3.3.7"
  42. }
  43. }