blowfish/package.json

85 lines
2.6 KiB
JSON
Raw Normal View History

2022-09-10 13:30:19 -05:00
{
"name": "hugo-blowfish-theme",
2022-09-30 18:22:16 -05:00
"version": "1.3.4",
2022-09-10 13:30:19 -05:00
"description": "Blowfish theme for Hugo",
"scripts": {
"preinstall": "rimraf assets/vendor",
"postinstall": "vendor-copy",
"assets": "rimraf assets/vendor && vendor-copy",
"dev": "NODE_ENV=development ./node_modules/tailwindcss/lib/cli.js -i ./assets/css/main.css -o ./assets/css/compiled/main.css --jit -w",
2022-09-11 16:41:09 -05:00
"build": "NODE_ENV=production ./node_modules/tailwindcss/lib/cli.js -i ./assets/css/main.css -o ./assets/css/compiled/main.css --jit && hugo --minify -s exampleSite --themesDir ../.. -d ../docs --baseURL https://nunocoracao.github.io/blowfish/",
2022-09-12 07:36:52 -05:00
"example": "hugo server --minify --source exampleSite --themesDir ../.. --buildDrafts -b http://localhost/ -p 1313",
2022-09-10 13:30:19 -05:00
"lighthouse": "lhci autorun"
},
"repository": {
"type": "git",
"url": "https://github.com/nunocoracao/blowfish.git"
},
"keywords": [
"hugo",
"hugo-theme",
"tailwind",
"dark-mode"
],
"author": {
"name": "Nuno Coração",
"github": "https://github.com/nunocoracao",
"url": "https://nunocoracao.com"
},
2022-09-10 13:30:19 -05:00
"license": "MIT",
"bugs": {
"url": "https://github.com/nunocoracao/blowfish/issues"
},
"homepage": "https://github.com/nunocoracao/blowfish#readme",
"devDependencies": {
"@tailwindcss/typography": "^0.5.4",
"chart.js": "^3.9.1",
"fuse.js": "^6.6.2",
"katex": "^0.16.0",
2022-09-30 04:30:22 -05:00
"mermaid": "^9.1.7",
2022-09-10 13:30:19 -05:00
"prettier": "^2.7.1",
"prettier-plugin-go-template": "^0.0.13",
"prettier-plugin-tailwindcss": "^0.1.13",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.8",
"vendor-copy": "^3.0.1"
},
"vendorCopy": [],
"devVendorCopy": [
{
"from": "node_modules/mermaid/dist/mermaid.min.js",
"to": "assets/lib/mermaid/mermaid.min.js"
},
{
"from": "node_modules/chart.js/dist/chart.min.js",
"to": "assets/lib/chart/chart.min.js"
},
{
"from": "node_modules/katex/dist/katex.min.js",
"to": "assets/lib/katex/katex.min.js"
},
{
"from": "node_modules/katex/dist/katex.min.css",
"to": "assets/lib/katex/katex.min.css"
},
{
"from": "node_modules/katex/dist/contrib/auto-render.min.js",
"to": "assets/lib/katex/auto-render.min.js"
},
{
"from": "node_modules/katex/dist/fonts/",
"to": "assets/lib/katex/fonts/"
},
{
"from": "node_modules/fuse.js/dist/fuse.min.js",
"to": "assets/lib/fuse/fuse.min.js"
}
2022-09-10 16:58:50 -05:00
],
"dependencies": {
"@headlessui/react": "^1.7.0",
"@heroicons/react": "^2.0.10",
"@tailwindcss/forms": "^0.5.3",
"commander": "^9.4.0"
2022-09-10 16:58:50 -05:00
}
2022-09-30 05:03:28 -05:00
}