12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "name": "geekdoc",
- "version": "1.0.0",
- "description": "Hugo theme made for documentation",
- "main": "index.js",
- "type": "module",
- "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 <=22"
- },
- "dependencies": {
- "@cfworker/json-schema": "2.0.1",
- "clipboard": "2.0.11",
- "flexsearch": "0.7.43",
- "katex": "0.16.11",
- "lodash": "4.17.21",
- "mermaid": "11.4.0",
- "store2": "2.14.3",
- "uuid": "11.0.2"
- },
- "devDependencies": {
- "@babel/eslint-parser": "7.25.9",
- "autoprefixer": "10.4.20",
- "copy-webpack-plugin": "12.0.2",
- "css-loader": "7.1.2",
- "eslint": "9.14.0",
- "eslint-config-prettier": "9.1.0",
- "eslint-plugin-prettier": "5.2.1",
- "favicons": "7.2.0",
- "favicons-webpack-plugin": "6.0.1",
- "globals": "15.11.0",
- "html-validate": "8.24.2",
- "npm-run-all2": "7.0.1",
- "postcss-loader": "8.1.1",
- "prettier": "3.3.3",
- "sass": "1.80.6",
- "sass-loader": "16.0.3",
- "shx": "0.3.4",
- "svg-sprite": "2.0.4",
- "svgtofont": "6.0.0",
- "webpack": "5.96.1",
- "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
- }
- }
- }
|