congo/package.json

76 lines
2.2 KiB
JSON
Raw Normal View History

2021-08-11 05:28:33 +00:00
{
2021-08-18 07:10:40 +00:00
"name": "hugo-congo-theme",
2022-11-22 00:06:31 +00:00
"version": "2.4.2",
2021-08-11 05:28:33 +00:00
"description": "Congo theme for Hugo",
"scripts": {
2022-11-21 02:56:13 +00:00
"preinstall": "rimraf assets/lib",
2021-10-28 01:39:34 +00:00
"postinstall": "vendor-copy",
2022-11-21 02:56:13 +00:00
"assets": "rimraf assets/lib && vendor-copy",
2021-08-21 02:20:29 +00:00
"dev": "NODE_ENV=development ./node_modules/tailwindcss/lib/cli.js -i ./assets/css/main.css -o ./assets/css/compiled/main.css --jit -w",
"build": "NODE_ENV=production ./node_modules/tailwindcss/lib/cli.js -i ./assets/css/main.css -o ./assets/css/compiled/main.css --jit",
2021-12-21 01:11:06 +00:00
"example": "hugo server --source exampleSite --themesDir ../.. --buildDrafts -b http://localhost/congo/ -p 8008",
"lighthouse": "lhci autorun"
2021-08-11 05:28:33 +00:00
},
"repository": {
"type": "git",
2022-06-22 06:07:56 +00:00
"url": "https://github.com/jpanther/congo.git"
2021-08-11 05:28:33 +00:00
},
"keywords": [
"hugo",
"hugo-theme",
"tailwind",
"dark-mode"
],
"author": "James Panther",
2022-06-22 06:07:56 +00:00
"funding": "https://github.com/sponsors/jpanther",
2021-08-11 05:28:33 +00:00
"license": "MIT",
"bugs": {
"url": "https://github.com/jpanther/congo/issues"
2021-08-11 05:28:33 +00:00
},
"homepage": "https://github.com/jpanther/congo#readme",
2021-08-11 05:28:33 +00:00
"devDependencies": {
"@tailwindcss/typography": "^0.5.8",
"chart.js": "^4.0.1",
"fuse.js": "^6.6.2",
"katex": "^0.16.3",
"mermaid": "^9.2.2",
"prettier": "^2.8.0",
"prettier-plugin-go-template": "^0.0.13",
"prettier-plugin-tailwindcss": "^0.1.13",
2021-10-28 01:39:34 +00:00
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
2021-10-28 01:39:34 +00:00
"vendor-copy": "^3.0.1"
},
2021-11-03 06:06:57 +00:00
"vendorCopy": [],
"devVendorCopy": [
2021-10-28 01:39:34 +00:00
{
"from": "node_modules/mermaid/dist/mermaid.min.js",
2021-11-04 03:19:02 +00:00
"to": "assets/lib/mermaid/mermaid.min.js"
2021-10-28 04:31:34 +00:00
},
{
2022-11-21 02:56:13 +00:00
"from": "node_modules/chart.js/dist/chart.umd.js",
"to": "assets/lib/chart/chart.umd.js"
2021-11-03 06:06:57 +00:00
},
{
"from": "node_modules/katex/dist/katex.min.js",
2021-11-04 03:19:02 +00:00
"to": "assets/lib/katex/katex.min.js"
2021-11-03 06:06:57 +00:00
},
{
"from": "node_modules/katex/dist/katex.min.css",
2021-11-04 03:19:02 +00:00
"to": "assets/lib/katex/katex.min.css"
2021-11-03 06:06:57 +00:00
},
{
"from": "node_modules/katex/dist/contrib/auto-render.min.js",
2021-11-04 03:19:02 +00:00
"to": "assets/lib/katex/auto-render.min.js"
2021-11-03 21:54:34 +00:00
},
{
"from": "node_modules/katex/dist/fonts/",
2021-11-04 03:19:02 +00:00
"to": "assets/lib/katex/fonts/"
2022-01-13 04:56:30 +00:00
},
{
"from": "node_modules/fuse.js/dist/fuse.min.js",
"to": "assets/lib/fuse/fuse.min.js"
2021-10-28 01:39:34 +00:00
}
]
2021-08-11 05:28:33 +00:00
}