mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-04 20:30:40 +00:00
c261095c4b
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
93 lines
3.0 KiB
JSON
93 lines
3.0 KiB
JSON
{
|
|
"name": "geekdoc",
|
|
"version": "1.0.0",
|
|
"description": "Hugo theme made for documentation",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "run-s prep:clean prep:make svg build:webpack",
|
|
"build:webpack": "webpack --mode=production",
|
|
"build:webpack-devel": "webpack --mode=development",
|
|
"pack": "tar -zcvf dist/hugo-geekdoc.tar.gz -X .tarignore .",
|
|
"start": "run-s prep:clean prep:make svg build:webpack-devel ; run-p start:webpack start:hugo",
|
|
"start:webpack": "webpack --mode=development --watch",
|
|
"start:build": "webpack --mode=development",
|
|
"start:hugo": "hugo server -D -F -s exampleSite/",
|
|
"svg": "run-s svg:*",
|
|
"svg:sprite": "svg-sprite -C svgsprite.config.json 'src/icons/*.svg'",
|
|
"svg:font": "svgtofont --sources build/icons/ --output build/fonts/",
|
|
"prep:clean": "shx rm -rf build/ static/",
|
|
"prep:clean-all": "shx rm -rf VERSION .lighthouseci/ lhci_reports/ build/ dist/ static/ data/ assets/sprites/ exampleSite/data/sprites/ exampleSite/public/ exampleSite/resources/ exampleSite/.hugo_build.lock",
|
|
"prep:make": "shx mkdir -p build/icons/ build/fonts/ dist/",
|
|
"svg-sprite-list": "run-s prep:make svg ; shx mkdir -p exampleSite/data/sprites/ ; shx cp build/fonts/GeekdocIcons.json exampleSite/data/sprites/geekdoc.json",
|
|
"lint": "run-p lint:js lint:html",
|
|
"lint:js": "eslint src/js/ --color",
|
|
"lint:html": "html-validate exampleSite/public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/thegeeklab/hugo-geekdoc"
|
|
},
|
|
"author": "Robert Kaussow",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18 <=20"
|
|
},
|
|
"dependencies": {
|
|
"@cfworker/json-schema": "1.12.8",
|
|
"clipboard": "2.0.11",
|
|
"flexsearch": "0.7.43",
|
|
"katex": "0.16.9",
|
|
"lodash": "4.17.21",
|
|
"mermaid": "10.8.0",
|
|
"store2": "2.14.2",
|
|
"uuid": "9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "7.23.3",
|
|
"@eloquent/git-version-webpack-plugin": "5.0.1",
|
|
"autoprefixer": "10.4.17",
|
|
"copy-webpack-plugin": "12.0.2",
|
|
"css-loader": "6.9.1",
|
|
"eslint": "8.56.0",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-prettier": "5.1.3",
|
|
"favicons": "7.1.5",
|
|
"favicons-webpack-plugin": "6.0.1",
|
|
"html-validate": "8.9.1",
|
|
"npm-run-all2": "6.1.1",
|
|
"postcss-loader": "8.0.0",
|
|
"prettier": "3.2.4",
|
|
"sass": "1.70.0",
|
|
"sass-loader": "14.0.0",
|
|
"shx": "0.3.4",
|
|
"svg-sprite": "2.0.2",
|
|
"svgtofont": "4.1.1",
|
|
"webpack": "5.89.0",
|
|
"webpack-cli": "5.1.4",
|
|
"webpack-manifest-plugin": "5.0.0",
|
|
"webpack-remove-empty-scripts": "1.0.4"
|
|
},
|
|
"overrides": {
|
|
"colors": "1.4.0"
|
|
},
|
|
"browserslist": [
|
|
"last 2 version",
|
|
"> 5%",
|
|
"not dead",
|
|
"Firefox ESR"
|
|
],
|
|
"svgtofont": {
|
|
"fontName": "GeekdocIcons",
|
|
"css": false,
|
|
"html": false,
|
|
"emptyDist": true,
|
|
"useNameAsUnicode": true,
|
|
"svgicons2svgfont": {
|
|
"fontHeight": 1001,
|
|
"normalize": true,
|
|
"centerHorizontally": true,
|
|
"centerVertically": true
|
|
}
|
|
}
|
|
}
|