85 lines
2.6 KiB
JSON
85 lines
2.6 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",
|
|
"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 build/ dist/ static/ data/ assets/sprites/ exampleSite/data/sprites/",
|
|
"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": "eslint src/js/ --color"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/thegeeklab/hugo-geekdoc"
|
|
},
|
|
"author": "Robert Kaussow",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=15 <17"
|
|
},
|
|
"dependencies": {
|
|
"@cfworker/json-schema": "1.12.1",
|
|
"clipboard": "2.0.10",
|
|
"flexsearch": "0.7.21",
|
|
"katex": "0.15.2",
|
|
"mermaid": "8.13.10",
|
|
"store2": "2.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "7.17.0",
|
|
"autoprefixer": "10.4.2",
|
|
"copy-webpack-plugin": "10.2.4",
|
|
"css-loader": "6.6.0",
|
|
"eslint": "8.8.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
"favicons-webpack-plugin": "5.0.2",
|
|
"npm-run-all": "4.1.5",
|
|
"postcss-loader": "6.2.1",
|
|
"prettier": "2.5.1",
|
|
"prettier-plugin-go-template": "0.0.11",
|
|
"sass": "1.49.7",
|
|
"sass-loader": "12.4.0",
|
|
"shx": "0.3.4",
|
|
"svg-sprite": "1.5.4",
|
|
"svgtofont": "3.15.0",
|
|
"webpack": "5.68.0",
|
|
"webpack-cli": "4.9.2",
|
|
"webpack-manifest-plugin": "4.1.1",
|
|
"webpack-remove-empty-scripts": "0.7.3"
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|