2021-08-11 05:28:33 +00:00
|
|
|
{
|
2021-08-18 07:10:40 +00:00
|
|
|
"name": "hugo-congo-theme",
|
2022-05-25 04:26:09 +00:00
|
|
|
"version": "2.2.1",
|
2021-08-11 05:28:33 +00:00
|
|
|
"description": "Congo theme for Hugo",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2021-10-28 01:39:34 +00:00
|
|
|
"preinstall": "rimraf assets/vendor",
|
|
|
|
"postinstall": "vendor-copy",
|
|
|
|
"assets": "rimraf assets/vendor && 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",
|
2021-08-22 06:55:10 +00:00
|
|
|
"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",
|
2021-08-18 23:36:00 +00:00
|
|
|
"url": "git+https://github.com/jpanther/congo.git"
|
2021-08-11 05:28:33 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"hugo",
|
|
|
|
"hugo-theme",
|
|
|
|
"tailwind",
|
|
|
|
"dark-mode"
|
|
|
|
],
|
|
|
|
"author": "James Panther",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2021-08-18 23:36:00 +00:00
|
|
|
"url": "https://github.com/jpanther/congo/issues"
|
2021-08-11 05:28:33 +00:00
|
|
|
},
|
2021-08-18 23:36:00 +00:00
|
|
|
"homepage": "https://github.com/jpanther/congo#readme",
|
2021-08-11 05:28:33 +00:00
|
|
|
"devDependencies": {
|
2022-02-20 03:34:38 +00:00
|
|
|
"@tailwindcss/typography": "^0.5.2",
|
2022-05-26 00:32:43 +00:00
|
|
|
"chart.js": "^3.8.0",
|
2022-05-25 03:59:01 +00:00
|
|
|
"fuse.js": "^6.6.2",
|
2022-06-15 23:08:58 +00:00
|
|
|
"katex": "^0.16.0",
|
2022-05-16 01:22:13 +00:00
|
|
|
"mermaid": "^9.1.1",
|
2022-06-14 23:41:57 +00:00
|
|
|
"prettier": "^2.7.0",
|
2022-05-15 23:36:29 +00:00
|
|
|
"prettier-plugin-go-template": "^0.0.13",
|
2021-10-28 01:39:34 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2022-04-13 00:21:19 +00:00
|
|
|
"tailwindcss": "^3.0.24",
|
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
|
|
|
},
|
|
|
|
{
|
|
|
|
"from": "node_modules/chart.js/dist/chart.min.js",
|
2021-11-04 03:19:02 +00:00
|
|
|
"to": "assets/lib/chart/chart.min.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
|
|
|
}
|