package.json 757 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "apisnecros",
  3. "version": "1.0.0",
  4. "description": "A Hugo framework theme",
  5. "dependencies": {
  6. "autoprefixer": "^10.4.7",
  7. "cssnano": "^5.1.7",
  8. "markdown-it": "^13.0.1",
  9. "markdown-it-anchor": "^8.6.4",
  10. "markdown-it-attrs": "^4.1.4",
  11. "postcss": "^8.4.13",
  12. "postcss-cli": "^9.1.0",
  13. "postcss-import": "^14.1.0",
  14. "tailwindcss": "^2.2.19"
  15. },
  16. "scripts": {
  17. "test": "echo \"Error: no test specified\" && exit 1",
  18. "postcss": "npx postcss static/css/master.css -o static/css/tailwind.min.css",
  19. "minify": "npx cssnano css/tailwind.css css/tailwind.min.css --safe",
  20. "help": "npx postcss --help",
  21. "build": "npm run postcss && npm run minify"
  22. },
  23. "author": "Apis Necros",
  24. "license": "ISC"
  25. }