2020-01-12 14:33:02 +00:00
|
|
|
{
|
|
|
|
"name": "geekdoc",
|
|
|
|
"version": "1.0.0",
|
2020-06-28 12:47:14 +00:00
|
|
|
"description": "Hugo theme made for documentation",
|
2022-01-06 12:58:10 +00:00
|
|
|
"main": "index.js",
|
2020-01-12 14:33:02 +00:00
|
|
|
"scripts": {
|
2022-01-06 12:58:10 +00:00
|
|
|
"build": "run-s prep:clean prep:make svg build:webpack",
|
|
|
|
"build:webpack": "webpack --mode=production",
|
|
|
|
"build:webpack-devel": "webpack --mode=development",
|
2022-08-29 20:53:07 +00:00
|
|
|
"pack": "tar -zcvf dist/hugo-geekdoc.tar.gz -X .tarignore .",
|
2022-01-06 12:58:10 +00:00
|
|
|
"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'",
|
2022-01-07 15:18:07 +00:00
|
|
|
"svg:font": "svgtofont --sources build/icons/ --output build/fonts/",
|
2022-01-06 12:58:10 +00:00
|
|
|
"prep:clean": "shx rm -rf build/ static/",
|
2022-01-07 15:18:07 +00:00
|
|
|
"prep:clean-all": "shx rm -rf build/ dist/ static/ data/ assets/sprites/ exampleSite/data/sprites/",
|
2022-02-04 11:52:34 +00:00
|
|
|
"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",
|
2022-01-06 12:58:10 +00:00
|
|
|
"lint": "eslint src/js/ --color"
|
2020-01-12 14:33:02 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-09-27 20:21:29 +00:00
|
|
|
"url": "https://github.com/thegeeklab/hugo-geekdoc"
|
2020-01-12 14:33:02 +00:00
|
|
|
},
|
2020-06-28 12:47:14 +00:00
|
|
|
"author": "Robert Kaussow",
|
2020-01-12 14:33:02 +00:00
|
|
|
"license": "MIT",
|
2022-02-04 12:53:49 +00:00
|
|
|
"engines": {
|
2022-08-07 20:27:43 +00:00
|
|
|
"node": ">=16.15 <=18"
|
2022-02-04 12:53:49 +00:00
|
|
|
},
|
2021-05-05 20:52:57 +00:00
|
|
|
"dependencies": {
|
2022-10-04 07:11:48 +00:00
|
|
|
"@cfworker/json-schema": "1.12.5",
|
2022-05-06 14:46:13 +00:00
|
|
|
"clipboard": "2.0.11",
|
2022-10-04 07:11:39 +00:00
|
|
|
"flexsearch": "0.7.31",
|
2023-06-24 13:21:09 +00:00
|
|
|
"katex": "0.16.8",
|
2022-12-07 07:57:41 +00:00
|
|
|
"lodash": "4.17.21",
|
2023-06-09 06:29:46 +00:00
|
|
|
"mermaid": "10.2.3",
|
2022-08-01 19:20:53 +00:00
|
|
|
"store2": "2.14.2"
|
2021-05-05 20:52:57 +00:00
|
|
|
},
|
2020-01-12 14:33:02 +00:00
|
|
|
"devDependencies": {
|
2023-06-12 01:33:34 +00:00
|
|
|
"@babel/eslint-parser": "7.22.5",
|
2022-09-05 01:49:41 +00:00
|
|
|
"@eloquent/git-version-webpack-plugin": "5.0.1",
|
2023-03-13 02:45:26 +00:00
|
|
|
"autoprefixer": "10.4.14",
|
2022-05-18 13:04:23 +00:00
|
|
|
"copy-webpack-plugin": "11.0.0",
|
2023-05-29 01:12:24 +00:00
|
|
|
"css-loader": "6.8.1",
|
2023-07-03 00:46:35 +00:00
|
|
|
"eslint": "8.44.0",
|
2023-03-27 00:25:46 +00:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
2022-07-04 00:01:41 +00:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2023-06-05 00:15:02 +00:00
|
|
|
"favicons": "7.1.3",
|
2022-01-06 12:58:10 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2023-06-12 01:33:34 +00:00
|
|
|
"postcss-loader": "7.3.3",
|
2023-04-24 02:15:18 +00:00
|
|
|
"prettier": "2.8.8",
|
2022-05-23 02:48:59 +00:00
|
|
|
"prettier-plugin-go-template": "0.0.13",
|
2023-06-26 01:04:00 +00:00
|
|
|
"sass": "1.63.6",
|
2023-06-12 01:33:34 +00:00
|
|
|
"sass-loader": "13.3.2",
|
2022-01-10 03:33:04 +00:00
|
|
|
"shx": "0.3.4",
|
2022-11-14 00:36:03 +00:00
|
|
|
"svg-sprite": "2.0.2",
|
2023-06-12 01:33:34 +00:00
|
|
|
"svgtofont": "3.25.4",
|
2023-07-03 00:46:35 +00:00
|
|
|
"webpack": "5.88.1",
|
2023-06-12 01:33:34 +00:00
|
|
|
"webpack-cli": "5.1.4",
|
2022-09-12 20:05:24 +00:00
|
|
|
"webpack-favicons": "1.3.8",
|
2022-03-08 21:26:35 +00:00
|
|
|
"webpack-manifest-plugin": "5.0.0",
|
2023-04-24 02:15:18 +00:00
|
|
|
"webpack-remove-empty-scripts": "1.0.3"
|
2020-01-12 14:33:02 +00:00
|
|
|
},
|
2022-01-10 14:02:12 +00:00
|
|
|
"overrides": {
|
|
|
|
"colors": "1.4.0"
|
|
|
|
},
|
2020-01-12 14:33:02 +00:00
|
|
|
"browserslist": [
|
|
|
|
"last 2 version",
|
|
|
|
"> 5%",
|
|
|
|
"not dead",
|
|
|
|
"Firefox ESR"
|
2022-01-06 12:58:10 +00:00
|
|
|
],
|
|
|
|
"svgtofont": {
|
|
|
|
"fontName": "GeekdocIcons",
|
|
|
|
"css": false,
|
|
|
|
"html": false,
|
|
|
|
"emptyDist": true,
|
|
|
|
"useNameAsUnicode": true,
|
|
|
|
"svgicons2svgfont": {
|
|
|
|
"fontHeight": 1001,
|
|
|
|
"normalize": true,
|
|
|
|
"centerHorizontally": true,
|
|
|
|
"centerVertically": true
|
|
|
|
}
|
|
|
|
}
|
2020-01-12 14:33:02 +00:00
|
|
|
}
|