From fd34abde519bbec922031251c28a68bf88f46104 Mon Sep 17 00:00:00 2001 From: Yannick Date: Tue, 7 Dec 2021 23:24:52 +0100 Subject: [PATCH 1/4] Start building Hugo-powered documentation --- build/categories/index.xml | 10 ++++++++++ build/index.xml | 10 ++++++++++ build/sitemap.xml | 11 +++++++++++ build/tags/index.xml | 10 ++++++++++ hugo/.hugo_build.lock | 0 hugo/archetypes/default.md | 6 ++++++ hugo/config.toml | 3 +++ hugo/content/_index.md | 4 ++++ hugo/layouts/_default/home.html | 11 +++++++++++ 9 files changed, 65 insertions(+) create mode 100644 build/categories/index.xml create mode 100644 build/index.xml create mode 100644 build/sitemap.xml create mode 100644 build/tags/index.xml create mode 100644 hugo/.hugo_build.lock create mode 100644 hugo/archetypes/default.md create mode 100644 hugo/config.toml create mode 100644 hugo/content/_index.md create mode 100644 hugo/layouts/_default/home.html diff --git a/build/categories/index.xml b/build/categories/index.xml new file mode 100644 index 0000000..dab9252 --- /dev/null +++ b/build/categories/index.xml @@ -0,0 +1,10 @@ + + + + Categories on Amaranth + https://studio384.be/categories/ + Recent content in Categories on Amaranth + Hugo -- gohugo.io + en-us + + diff --git a/build/index.xml b/build/index.xml new file mode 100644 index 0000000..3e6f4e0 --- /dev/null +++ b/build/index.xml @@ -0,0 +1,10 @@ + + + + Amaranth + https://studio384.be/ + Recent content on Amaranth + Hugo -- gohugo.io + en-us + + diff --git a/build/sitemap.xml b/build/sitemap.xml new file mode 100644 index 0000000..bfc2914 --- /dev/null +++ b/build/sitemap.xml @@ -0,0 +1,11 @@ + + + + https://studio384.be/ + + https://studio384.be/categories/ + + https://studio384.be/tags/ + + diff --git a/build/tags/index.xml b/build/tags/index.xml new file mode 100644 index 0000000..885dd23 --- /dev/null +++ b/build/tags/index.xml @@ -0,0 +1,10 @@ + + + + Tags on Amaranth + https://studio384.be/tags/ + Recent content in Tags on Amaranth + Hugo -- gohugo.io + en-us + + diff --git a/hugo/.hugo_build.lock b/hugo/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/hugo/archetypes/default.md b/hugo/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/hugo/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/hugo/config.toml b/hugo/config.toml new file mode 100644 index 0000000..f5e3208 --- /dev/null +++ b/hugo/config.toml @@ -0,0 +1,3 @@ +baseURL = 'https://studio384.be/' +languageCode = 'en-us' +title = 'Amaranth' diff --git a/hugo/content/_index.md b/hugo/content/_index.md new file mode 100644 index 0000000..3ff7423 --- /dev/null +++ b/hugo/content/_index.md @@ -0,0 +1,4 @@ +--- +--- + +# Hello world \ No newline at end of file diff --git a/hugo/layouts/_default/home.html b/hugo/layouts/_default/home.html new file mode 100644 index 0000000..a77a558 --- /dev/null +++ b/hugo/layouts/_default/home.html @@ -0,0 +1,11 @@ + + + + + + +
+ {{ .Content }} +
+ + From 70fc34342993bdc3f0517212b08a297534117e54 Mon Sep 17 00:00:00 2001 From: Yannick Date: Wed, 8 Dec 2021 22:57:25 +0100 Subject: [PATCH 2/4] Add Hugo commands --- hugo/build/categories/index.xml | 10 + hugo/build/index.html | 13 + hugo/build/index.xml | 10 + hugo/build/sitemap.xml | 11 + hugo/build/tags/index.xml | 10 + package-lock.json | 2634 ++++++++++++++++++++++++++++++- package.json | 11 +- 7 files changed, 2649 insertions(+), 50 deletions(-) create mode 100644 hugo/build/categories/index.xml create mode 100644 hugo/build/index.html create mode 100644 hugo/build/index.xml create mode 100644 hugo/build/sitemap.xml create mode 100644 hugo/build/tags/index.xml diff --git a/hugo/build/categories/index.xml b/hugo/build/categories/index.xml new file mode 100644 index 0000000..dab9252 --- /dev/null +++ b/hugo/build/categories/index.xml @@ -0,0 +1,10 @@ + + + + Categories on Amaranth + https://studio384.be/categories/ + Recent content in Categories on Amaranth + Hugo -- gohugo.io + en-us + + diff --git a/hugo/build/index.html b/hugo/build/index.html new file mode 100644 index 0000000..6191082 --- /dev/null +++ b/hugo/build/index.html @@ -0,0 +1,13 @@ + + + + + + + +
+

Hello world

+ +
+ + diff --git a/hugo/build/index.xml b/hugo/build/index.xml new file mode 100644 index 0000000..3e6f4e0 --- /dev/null +++ b/hugo/build/index.xml @@ -0,0 +1,10 @@ + + + + Amaranth + https://studio384.be/ + Recent content on Amaranth + Hugo -- gohugo.io + en-us + + diff --git a/hugo/build/sitemap.xml b/hugo/build/sitemap.xml new file mode 100644 index 0000000..bfc2914 --- /dev/null +++ b/hugo/build/sitemap.xml @@ -0,0 +1,11 @@ + + + + https://studio384.be/ + + https://studio384.be/categories/ + + https://studio384.be/tags/ + + diff --git a/hugo/build/tags/index.xml b/hugo/build/tags/index.xml new file mode 100644 index 0000000..885dd23 --- /dev/null +++ b/hugo/build/tags/index.xml @@ -0,0 +1,10 @@ + + + + Tags on Amaranth + https://studio384.be/tags/ + Recent content in Tags on Amaranth + Hugo -- gohugo.io + en-us + + diff --git a/package-lock.json b/package-lock.json index caf5108..09b049a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,7 +7,7 @@ "": { "name": "@changewindows/amaranth", "version": "0.9.2", - "license": "MIT", + "license": "AGPL-3.0-or-later", "devDependencies": { "@types/react": "17.0.35", "autoprefixer": "10.4.0", @@ -15,6 +15,7 @@ "clsx": "1.1.1", "copyfiles": "2.4.1", "fantasticon": "1.2.3", + "hugo-bin": "^0.78.0", "node-sass": "6.0.1", "nodemon": "2.0.15", "npm-run-all": "4.1.5", @@ -517,6 +518,47 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", "dev": true }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=", + "dev": true, + "dependencies": { + "file-type": "^4.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/archive-type/node_modules/file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/are-we-there-yet": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", @@ -694,6 +736,157 @@ "tweetnacl": "^0.14.3" } }, + "node_modules/bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "dev": true, + "dependencies": { + "execa": "^0.7.0", + "executable": "^4.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "dev": true, + "dependencies": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "dev": true, + "dependencies": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/bin-version/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-version/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "dev": true, + "dependencies": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -890,6 +1083,37 @@ "ieee754": "^1.1.13" } }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", + "dev": true + }, "node_modules/bufferstreams": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-3.0.0.tgz", @@ -1078,6 +1302,21 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", "dev": true }, + "node_modules/caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "dev": true, + "dependencies": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/chalk": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", @@ -1362,6 +1601,22 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/config-chain/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, "node_modules/configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", @@ -1396,6 +1651,24 @@ "upper-case": "^2.0.2" } }, + "node_modules/content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, "node_modules/copyfiles": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.1.tgz", @@ -1680,6 +1953,34 @@ "node": ">=0.10.0" } }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dev": true, + "dependencies": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/decompress-response": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", @@ -1692,73 +1993,202 @@ "node": ">=4" } }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "node_modules/decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", "dev": true, + "dependencies": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, "engines": { - "node": ">=4.0.0" + "node": ">=4" } }, - "node_modules/defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "node_modules/decompress-tar/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", "dev": true, - "dependencies": { - "clone": "^1.0.2" + "engines": { + "node": ">=4" } }, - "node_modules/defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", - "dev": true - }, - "node_modules/define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "node_modules/decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", "dev": true, "dependencies": { - "object-keys": "^1.0.12" + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" }, "engines": { - "node": ">= 0.4" + "node": ">=4" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "node_modules/decompress-tarbz2/node_modules/file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">=4" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "node_modules/decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", "dev": true, + "dependencies": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/dependency-graph": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", - "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "node_modules/decompress-targz/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", "dev": true, "engines": { - "node": ">= 0.6.0" + "node": ">=4" + } + }, + "node_modules/decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=", + "dev": true, + "dependencies": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip/node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=", + "dev": true, + "dependencies": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress/node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + } + }, + "node_modules/defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/dependency-graph": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "dev": true, + "engines": { + "node": ">= 0.6.0" } }, "node_modules/dir-glob": { @@ -1850,6 +2280,170 @@ "node": ">=8" } }, + "node_modules/download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "dev": true, + "dependencies": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/download/node_modules/@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", + "dev": true, + "dependencies": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + } + }, + "node_modules/download/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true + }, + "node_modules/download/node_modules/keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/download/node_modules/lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/download/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "dependencies": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", + "dev": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/duplexer3": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", @@ -2058,6 +2652,105 @@ "es5-ext": "~0.10.14" } }, + "node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/execa/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/execa/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + }, + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "dependencies": { + "pify": "^2.2.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/ext": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", @@ -2067,6 +2760,31 @@ "type": "^2.5.0" } }, + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "dev": true, + "dependencies": { + "mime-db": "^1.28.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "dev": true, + "dependencies": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/ext/node_modules/type": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", @@ -2185,12 +2903,53 @@ "reusify": "^1.0.4" } }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "dev": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -2240,6 +2999,18 @@ "node": ">=8" } }, + "node_modules/find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "dev": true, + "dependencies": { + "semver-regex": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -2276,6 +3047,52 @@ "url": "https://www.patreon.com/infusion" } }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/from2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/from2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/from2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, "node_modules/fs-extra": { "version": "10.0.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", @@ -2406,6 +3223,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "dev": true, + "dependencies": { + "npm-conf": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/get-stdin": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", @@ -2649,6 +3478,15 @@ "node": ">=8" } }, + "node_modules/has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/has-symbols": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", @@ -2661,6 +3499,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "dependencies": { + "has-symbol-support-x": "^1.4.1" + }, + "engines": { + "node": "*" + } + }, "node_modules/has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", @@ -2786,6 +3636,24 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/hugo-bin": { + "version": "0.78.0", + "resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.78.0.tgz", + "integrity": "sha512-QyS2NB769UN1g4vRGUsWWoHIP27L/vamSjGts8IoorHpXgQXTrqbkcLCW7ZL5ec0oAdjqcqsIMrWdAonYyv8Ag==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "bin-wrapper": "^4.1.0", + "pkg-conf": "^4.0.0", + "rimraf": "^3.0.2" + }, + "bin": { + "hugo": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, "node_modules/humanize-ms": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", @@ -2950,6 +3818,19 @@ "node": ">=10" } }, + "node_modules/into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", + "dev": true, + "dependencies": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", @@ -3110,6 +3991,12 @@ "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", "dev": true }, + "node_modules/is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=", + "dev": true + }, "node_modules/is-negative-zero": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", @@ -3164,6 +4051,15 @@ "node": ">=8" } }, + "node_modules/is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -3204,6 +4100,24 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-string": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", @@ -3273,6 +4187,19 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", "dev": true }, + "node_modules/isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "dependencies": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + }, + "engines": { + "node": ">= 4" + } + }, "node_modules/js-base64": { "version": "2.6.4", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", @@ -3390,6 +4317,18 @@ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", "dev": true }, + "node_modules/load-json-file": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", + "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", @@ -4258,6 +5197,28 @@ "node": ">=8" } }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/npm-run-all": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", @@ -4475,6 +5436,27 @@ "which": "bin/which" } }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/npmlog": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", @@ -4609,6 +5591,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "dev": true, + "dependencies": { + "arch": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/p-cancelable": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", @@ -4618,6 +5612,36 @@ "node": ">=6" } }, + "node_modules/p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "dev": true, + "dependencies": { + "p-timeout": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", @@ -4660,6 +5684,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", @@ -4810,6 +5846,12 @@ "node": ">=8" } }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, "node_modules/performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", @@ -4855,6 +5897,113 @@ "node": ">=0.10.0" } }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-conf": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-4.0.0.tgz", + "integrity": "sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==", + "dev": true, + "dependencies": { + "find-up": "^6.0.0", + "load-json-file": "^7.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/find-up": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.2.0.tgz", + "integrity": "sha512-yWHzMzXCaFoABSnFTCPKNFlYoq4mSga9QLRRKOCLSJ33hSkzROB14ITbAWW0QDQDyuzsPQ33S1DsOWQb/oW1yA==", + "dev": true, + "dependencies": { + "locate-path": "^7.0.0", + "path-exists": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/locate-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.0.0.tgz", + "integrity": "sha512-+cg2yXqDUKfo4hsFxwa3G1cBJeA+gs1vD8FyV9/odWoUlQe/4syxHQ5DPtKjtfm6gnKbZzjCqzX03kXosvZB1w==", + "dev": true, + "dependencies": { + "p-locate": "^6.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "dependencies": { + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, "node_modules/postcss": { "version": "8.3.11", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", @@ -5169,6 +6318,18 @@ "node": ">=10" } }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, "node_modules/psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", @@ -5221,6 +6382,20 @@ "node": ">=0.6" } }, + "node_modules/query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "dependencies": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -5656,12 +6831,31 @@ "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", "dev": true, "dependencies": { - "amdefine": ">=0.0.4" + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dev": true, + "dependencies": { + "commander": "^2.8.1" }, - "engines": { - "node": ">=0.8.0" + "bin": { + "seek-bunzip": "bin/seek-bunzip", + "seek-table": "bin/seek-bzip-table" } }, + "node_modules/seek-bzip/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, "node_modules/semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -5692,6 +6886,27 @@ "semver": "bin/semver.js" } }, + "node_modules/semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=", + "dev": true, + "dependencies": { + "semver": "^5.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -5831,6 +7046,30 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "dev": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=", + "dev": true, + "dependencies": { + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -5969,6 +7208,15 @@ "safe-buffer": "~5.1.0" } }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -6068,6 +7316,24 @@ "node": ">=8" } }, + "node_modules/strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dev": true, + "dependencies": { + "is-natural-number": "^4.0.1" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", @@ -6089,6 +7355,18 @@ "node": ">=0.10.0" } }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -6257,6 +7535,70 @@ "node": ">= 10" } }, + "node_modules/tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dev": true, + "dependencies": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/tar-stream/node_modules/bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dev": true, + "dependencies": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/tar-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/tar-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, "node_modules/through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", @@ -6306,6 +7648,15 @@ "node": ">=0.10.0" } }, + "node_modules/timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/timers-ext": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", @@ -6316,6 +7667,12 @@ "next-tick": "1" } }, + "node_modules/to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true + }, "node_modules/to-readable-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", @@ -6386,6 +7743,18 @@ "node": ">=8" } }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/true-case-path": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", @@ -6577,6 +7946,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, "node_modules/undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", @@ -6713,6 +8092,15 @@ "node": ">=4" } }, + "node_modules/url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", + "dev": true, + "engines": { + "node": ">= 4" + } + }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -7120,6 +8508,28 @@ "engines": { "node": ">=6" } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } }, "dependencies": { @@ -7515,6 +8925,29 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", "dev": true }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true + }, + "archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=", + "dev": true, + "requires": { + "file-type": "^4.2.0" + }, + "dependencies": { + "file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=", + "dev": true + } + } + }, "are-we-there-yet": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", @@ -7652,6 +9085,125 @@ "tweetnacl": "^0.14.3" } }, + "bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "dev": true, + "requires": { + "execa": "^0.7.0", + "executable": "^4.1.0" + } + }, + "bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "dev": true, + "requires": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + } + }, + "bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "dev": true, + "requires": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "dependencies": { + "import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + } + } + }, "binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -7790,6 +9342,34 @@ "ieee754": "^1.1.13" } }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "requires": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", + "dev": true + }, "bufferstreams": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bufferstreams/-/bufferstreams-3.0.0.tgz", @@ -7937,6 +9517,18 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", "dev": true }, + "caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "dev": true, + "requires": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + } + }, "chalk": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", @@ -8155,6 +9747,24 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + } + } + }, "configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", @@ -8186,6 +9796,23 @@ "upper-case": "^2.0.2" } }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, "copyfiles": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.1.tgz", @@ -8413,6 +10040,47 @@ } } }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dev": true, + "requires": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "dependencies": { + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + } + } + }, "decompress-response": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", @@ -8422,6 +10090,95 @@ "mimic-response": "^1.0.0" } }, + "decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "dev": true, + "requires": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "dev": true + } + } + }, + "decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "dev": true, + "requires": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "dependencies": { + "file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "dev": true + } + } + }, + "decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "dev": true, + "requires": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=", + "dev": true + } + } + }, + "decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=", + "dev": true, + "requires": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "dependencies": { + "file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=", + "dev": true + }, + "get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=", + "dev": true, + "requires": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + } + } + } + }, "deep-extend": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", @@ -8541,6 +10298,142 @@ "is-obj": "^2.0.0" } }, + "download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "dev": true, + "requires": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true + }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", + "dev": true, + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + } + }, + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true + }, + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", + "dev": true + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "requires": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + } + }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", + "dev": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + } + } + }, "duplexer3": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", @@ -8722,6 +10615,89 @@ "es5-ext": "~0.10.14" } }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } + } + }, + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "requires": { + "pify": "^2.2.0" + } + }, "ext": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", @@ -8739,6 +10715,25 @@ } } }, + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "dev": true, + "requires": { + "mime-db": "^1.28.0" + } + }, + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "dev": true, + "requires": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + } + }, "extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -8832,12 +10827,44 @@ "reusify": "^1.0.4" } }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "requires": { + "pend": "~1.2.0" + } + }, + "file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "dev": true + }, "file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=", + "dev": true + }, + "filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "dev": true, + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + } + }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -8877,6 +10904,15 @@ } } }, + "find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "dev": true, + "requires": { + "semver-regex": "^2.0.0" + } + }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -8900,6 +10936,54 @@ "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", "dev": true }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, "fs-extra": { "version": "10.0.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", @@ -9004,6 +11088,15 @@ "has-symbols": "^1.0.1" } }, + "get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "dev": true, + "requires": { + "npm-conf": "^1.1.0" + } + }, "get-stdin": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", @@ -9183,12 +11276,27 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true + }, "has-symbols": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", "dev": true }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", @@ -9289,6 +11397,17 @@ } } }, + "hugo-bin": { + "version": "0.78.0", + "resolved": "https://registry.npmjs.org/hugo-bin/-/hugo-bin-0.78.0.tgz", + "integrity": "sha512-QyS2NB769UN1g4vRGUsWWoHIP27L/vamSjGts8IoorHpXgQXTrqbkcLCW7ZL5ec0oAdjqcqsIMrWdAonYyv8Ag==", + "dev": true, + "requires": { + "bin-wrapper": "^4.1.0", + "pkg-conf": "^4.0.0", + "rimraf": "^3.0.2" + } + }, "humanize-ms": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", @@ -9408,6 +11527,16 @@ "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", "dev": true }, + "into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", + "dev": true, + "requires": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + } + }, "ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", @@ -9520,6 +11649,12 @@ "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", "dev": true }, + "is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=", + "dev": true + }, "is-negative-zero": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", @@ -9550,6 +11685,12 @@ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true }, + "is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "dev": true + }, "is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -9578,6 +11719,18 @@ "has-symbols": "^1.0.2" } }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, "is-string": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", @@ -9629,6 +11782,16 @@ "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", "dev": true }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, "js-base64": { "version": "2.6.4", "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", @@ -9735,6 +11898,12 @@ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", "dev": true }, + "load-json-file": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", + "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", + "dev": true + }, "locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", @@ -10425,6 +12594,24 @@ "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", "dev": true }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, "npm-run-all": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", @@ -10591,6 +12778,23 @@ } } }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + } + } + }, "npmlog": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", @@ -10689,12 +12893,42 @@ "wcwidth": "^1.0.1" } }, + "os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "dev": true, + "requires": { + "arch": "^2.1.0" + } + }, "p-cancelable": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", "dev": true }, + "p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "dev": true, + "requires": { + "p-timeout": "^2.0.1" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", + "dev": true + }, "p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", @@ -10722,6 +12956,15 @@ "aggregate-error": "^3.0.0" } }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "requires": { + "p-finally": "^1.0.0" + } + }, "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", @@ -10841,6 +13084,12 @@ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", @@ -10871,6 +13120,76 @@ "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-conf": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-4.0.0.tgz", + "integrity": "sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==", + "dev": true, + "requires": { + "find-up": "^6.0.0", + "load-json-file": "^7.0.0" + }, + "dependencies": { + "find-up": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.2.0.tgz", + "integrity": "sha512-yWHzMzXCaFoABSnFTCPKNFlYoq4mSga9QLRRKOCLSJ33hSkzROB14ITbAWW0QDQDyuzsPQ33S1DsOWQb/oW1yA==", + "dev": true, + "requires": { + "locate-path": "^7.0.0", + "path-exists": "^5.0.0" + } + }, + "locate-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.0.0.tgz", + "integrity": "sha512-+cg2yXqDUKfo4hsFxwa3G1cBJeA+gs1vD8FyV9/odWoUlQe/4syxHQ5DPtKjtfm6gnKbZzjCqzX03kXosvZB1w==", + "dev": true, + "requires": { + "p-locate": "^6.0.0" + } + }, + "p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "requires": { + "yocto-queue": "^1.0.0" + } + }, + "p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "requires": { + "p-limit": "^4.0.0" + } + }, + "path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true + } + } + }, "postcss": { "version": "8.3.11", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz", @@ -11093,6 +13412,18 @@ "retry": "^0.12.0" } }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, "psl": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", @@ -11136,6 +13467,17 @@ "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", "dev": true }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -11460,6 +13802,23 @@ } } }, + "seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dev": true, + "requires": { + "commander": "^2.8.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + } + } + }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -11483,6 +13842,21 @@ } } }, + "semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "dev": true + }, + "semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=", + "dev": true, + "requires": { + "semver": "^5.3.0" + } + }, "sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -11593,6 +13967,24 @@ } } }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "dev": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=", + "dev": true, + "requires": { + "sort-keys": "^1.0.0" + } + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -11716,6 +14108,12 @@ } } }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "dev": true + }, "string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -11793,6 +14191,21 @@ "ansi-regex": "^5.0.1" } }, + "strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dev": true, + "requires": { + "is-natural-number": "^4.0.1" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, "strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", @@ -11808,6 +14221,15 @@ "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", "dev": true }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -11939,6 +14361,69 @@ "yallist": "^4.0.0" } }, + "tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dev": true, + "requires": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "dependencies": { + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dev": true, + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, "through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", @@ -11987,6 +14472,12 @@ "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", "dev": true }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "dev": true + }, "timers-ext": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", @@ -11997,6 +14488,12 @@ "next-tick": "1" } }, + "to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true + }, "to-readable-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", @@ -12048,6 +14545,15 @@ "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, "true-case-path": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", @@ -12193,6 +14699,16 @@ "which-boxed-primitive": "^1.0.2" } }, + "unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "requires": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, "undefsafe": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", @@ -12307,6 +14823,12 @@ "prepend-http": "^2.0.0" } }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", + "dev": true + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -12648,6 +15170,22 @@ "camelcase": "^5.0.0", "decamelize": "^1.2.0" } + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true } } } diff --git a/package.json b/package.json index ced76e8..c9f174c 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,9 @@ "fonts": "npm run fonts:generate && npm run fonts:docs", "fonts:generate": "mkdirp dist/fonts && fantasticon", "fonts:docs": "copyfiles -a \"dist/fonts/*.*\" \"docs/fonts\" -f", + "hugo:build": "hugo -d build -s hugo", + "hugo:serve": "hugo server -s hugo", + "hugo:clean": "rm -rf build resources public", "icons": "npm run icons:clean && npm run icons:ts", "icons:clean": "svgo -f ./icons -o ./icons", "icons:ts": "svg-to-ts", @@ -45,8 +48,8 @@ }, "homepage": "https://github.com/changewindows/amaranth#readme", "peerDependencies": { - "react": ">=16.x", - "clsx": ">=1.x" + "clsx": ">=1.x", + "react": ">=16.x" }, "devDependencies": { "@types/react": "17.0.35", @@ -55,6 +58,7 @@ "clsx": "1.1.1", "copyfiles": "2.4.1", "fantasticon": "1.2.3", + "hugo-bin": "^0.78.0", "node-sass": "6.0.1", "nodemon": "2.0.15", "npm-run-all": "4.1.5", @@ -75,5 +79,8 @@ "not ie <= 11" ] }, + "hugo-bin": { + "buildTags": "extended" + }, "sideEffects": false } From 55ceabfaebd7dd79b913653d1318e5000466f433 Mon Sep 17 00:00:00 2001 From: Yannick Date: Wed, 8 Dec 2021 23:03:26 +0100 Subject: [PATCH 3/4] Update build command --- build/categories/index.xml | 10 ---------- build/index.xml | 10 ---------- build/sitemap.xml | 11 ----------- build/tags/index.xml | 10 ---------- hugo/build/categories/index.xml | 10 ---------- hugo/build/index.html | 13 ------------- hugo/build/index.xml | 10 ---------- hugo/build/sitemap.xml | 11 ----------- hugo/build/tags/index.xml | 10 ---------- package.json | 2 +- 10 files changed, 1 insertion(+), 96 deletions(-) delete mode 100644 build/categories/index.xml delete mode 100644 build/index.xml delete mode 100644 build/sitemap.xml delete mode 100644 build/tags/index.xml delete mode 100644 hugo/build/categories/index.xml delete mode 100644 hugo/build/index.html delete mode 100644 hugo/build/index.xml delete mode 100644 hugo/build/sitemap.xml delete mode 100644 hugo/build/tags/index.xml diff --git a/build/categories/index.xml b/build/categories/index.xml deleted file mode 100644 index dab9252..0000000 --- a/build/categories/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Categories on Amaranth - https://studio384.be/categories/ - Recent content in Categories on Amaranth - Hugo -- gohugo.io - en-us - - diff --git a/build/index.xml b/build/index.xml deleted file mode 100644 index 3e6f4e0..0000000 --- a/build/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Amaranth - https://studio384.be/ - Recent content on Amaranth - Hugo -- gohugo.io - en-us - - diff --git a/build/sitemap.xml b/build/sitemap.xml deleted file mode 100644 index bfc2914..0000000 --- a/build/sitemap.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - https://studio384.be/ - - https://studio384.be/categories/ - - https://studio384.be/tags/ - - diff --git a/build/tags/index.xml b/build/tags/index.xml deleted file mode 100644 index 885dd23..0000000 --- a/build/tags/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Tags on Amaranth - https://studio384.be/tags/ - Recent content in Tags on Amaranth - Hugo -- gohugo.io - en-us - - diff --git a/hugo/build/categories/index.xml b/hugo/build/categories/index.xml deleted file mode 100644 index dab9252..0000000 --- a/hugo/build/categories/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Categories on Amaranth - https://studio384.be/categories/ - Recent content in Categories on Amaranth - Hugo -- gohugo.io - en-us - - diff --git a/hugo/build/index.html b/hugo/build/index.html deleted file mode 100644 index 6191082..0000000 --- a/hugo/build/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - -
-

Hello world

- -
- - diff --git a/hugo/build/index.xml b/hugo/build/index.xml deleted file mode 100644 index 3e6f4e0..0000000 --- a/hugo/build/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Amaranth - https://studio384.be/ - Recent content on Amaranth - Hugo -- gohugo.io - en-us - - diff --git a/hugo/build/sitemap.xml b/hugo/build/sitemap.xml deleted file mode 100644 index bfc2914..0000000 --- a/hugo/build/sitemap.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - https://studio384.be/ - - https://studio384.be/categories/ - - https://studio384.be/tags/ - - diff --git a/hugo/build/tags/index.xml b/hugo/build/tags/index.xml deleted file mode 100644 index 885dd23..0000000 --- a/hugo/build/tags/index.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Tags on Amaranth - https://studio384.be/tags/ - Recent content in Tags on Amaranth - Hugo -- gohugo.io - en-us - - diff --git a/package.json b/package.json index c9f174c..8bbf658 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "fonts": "npm run fonts:generate && npm run fonts:docs", "fonts:generate": "mkdirp dist/fonts && fantasticon", "fonts:docs": "copyfiles -a \"dist/fonts/*.*\" \"docs/fonts\" -f", - "hugo:build": "hugo -d build -s hugo", + "hugo:build": "hugo -d build -s hugo -d \"../build\"", "hugo:serve": "hugo server -s hugo", "hugo:clean": "rm -rf build resources public", "icons": "npm run icons:clean && npm run icons:ts", From 976a77b6682b3b4cf25a1433f4a7b2d934fada83 Mon Sep 17 00:00:00 2001 From: Yannick Date: Fri, 10 Dec 2021 15:08:14 +0100 Subject: [PATCH 4/4] Add icon pages to Hugo --- hugo/assets/sass/main.scss | 55 + hugo/content/_index.md | 8 +- hugo/content/icons/address-book.md | 5 + hugo/content/icons/alarm.md | 5 + hugo/content/icons/amaranth.md | 5 + hugo/content/icons/angle-down.md | 5 + hugo/content/icons/angle-left.md | 5 + hugo/content/icons/angle-right.md | 5 + hugo/content/icons/angle-up.md | 5 + hugo/content/icons/angles-y.md | 5 + hugo/content/icons/apple-app-store.md | 5 + hugo/content/icons/arrow-down-short-wide.md | 5 + hugo/content/icons/arrow-down-to-line.md | 5 + hugo/content/icons/arrow-down-wide-short.md | 5 + hugo/content/icons/arrow-down.md | 5 + hugo/content/icons/arrow-left-from-bracket.md | 5 + hugo/content/icons/arrow-left-to-bracket.md | 5 + hugo/content/icons/arrow-left-to-line.md | 5 + hugo/content/icons/arrow-left.md | 5 + hugo/content/icons/arrow-pointer.md | 5 + .../content/icons/arrow-right-from-bracket.md | 5 + hugo/content/icons/arrow-right-to-bracket.md | 5 + hugo/content/icons/arrow-right-to-line.md | 5 + hugo/content/icons/arrow-right.md | 5 + hugo/content/icons/arrow-rotate-right.md | 5 + hugo/content/icons/arrow-up-short-wide.md | 5 + hugo/content/icons/arrow-up-to-line.md | 5 + hugo/content/icons/arrow-up-wide-short.md | 5 + hugo/content/icons/arrow-up.md | 5 + hugo/content/icons/arrows-rotate-right.md | 5 + hugo/content/icons/asterisk.md | 5 + hugo/content/icons/at.md | 5 + hugo/content/icons/azure.md | 5 + hugo/content/icons/backward.md | 5 + hugo/content/icons/bars-staggered.md | 5 + hugo/content/icons/bars.md | 5 + hugo/content/icons/bel.md | 5 + hugo/content/icons/blf.md | 5 + hugo/content/icons/book.md | 5 + hugo/content/icons/box-open-full.md | 5 + hugo/content/icons/box.md | 5 + hugo/content/icons/branch-up.md | 5 + hugo/content/icons/branch.md | 5 + hugo/content/icons/bug.md | 5 + hugo/content/icons/building.md | 5 + hugo/content/icons/calendar-agenda.md | 5 + hugo/content/icons/calendar-day.md | 5 + hugo/content/icons/calendar-month.md | 5 + hugo/content/icons/calendar-stars.md | 5 + hugo/content/icons/calendar-week.md | 5 + hugo/content/icons/calendar.md | 5 + hugo/content/icons/changewindows-can.md | 5 + hugo/content/icons/changewindows-dev.md | 5 + hugo/content/icons/changewindows.md | 5 + hugo/content/icons/chart-pie.md | 5 + hugo/content/icons/check.md | 5 + hugo/content/icons/chevron-down.md | 5 + hugo/content/icons/chevron-left.md | 5 + hugo/content/icons/chevron-right.md | 5 + hugo/content/icons/chevron-up.md | 5 + hugo/content/icons/chip.md | 5 + hugo/content/icons/chrome.md | 5 + hugo/content/icons/circle-check.md | 5 + hugo/content/icons/circle-exclamation.md | 5 + hugo/content/icons/circle-info.md | 5 + hugo/content/icons/circle-plus.md | 5 + hugo/content/icons/circle-question.md | 5 + hugo/content/icons/circle-user.md | 5 + hugo/content/icons/circle-xmark.md | 5 + hugo/content/icons/city.md | 5 + hugo/content/icons/clock-rotate-left.md | 5 + hugo/content/icons/clock.md | 5 + hugo/content/icons/cmd.md | 5 + hugo/content/icons/code.md | 5 + hugo/content/icons/compass.md | 5 + hugo/content/icons/compress.md | 5 + hugo/content/icons/copy.md | 5 + hugo/content/icons/dashboard.md | 5 + hugo/content/icons/devices.md | 5 + hugo/content/icons/disc.md | 5 + hugo/content/icons/display-cam.md | 5 + hugo/content/icons/display.md | 5 + hugo/content/icons/earth.md | 5 + hugo/content/icons/eclipse.md | 5 + hugo/content/icons/edge.md | 5 + hugo/content/icons/ellipsis-v.md | 5 + hugo/content/icons/ellipsis.md | 5 + hugo/content/icons/envelope.md | 5 + hugo/content/icons/ethernet.md | 5 + hugo/content/icons/euro.md | 5 + hugo/content/icons/expand.md | 5 + hugo/content/icons/eye-slash.md | 5 + hugo/content/icons/eye.md | 5 + hugo/content/icons/facebook-messenger.md | 5 + hugo/content/icons/facebook.md | 5 + hugo/content/icons/fast-backward.md | 5 + hugo/content/icons/fast-forward.md | 5 + hugo/content/icons/fax.md | 5 + hugo/content/icons/file.md | 5 + hugo/content/icons/files.md | 5 + hugo/content/icons/film.md | 5 + hugo/content/icons/filter-plus.md | 5 + hugo/content/icons/filter-xmark.md | 5 + hugo/content/icons/filter.md | 5 + hugo/content/icons/fingerprint.md | 5 + hugo/content/icons/firefox.md | 5 + hugo/content/icons/flag-checkered.md | 5 + hugo/content/icons/flag.md | 5 + hugo/content/icons/floppy-disk.md | 5 + hugo/content/icons/foldable.md | 5 + hugo/content/icons/folder-image.md | 5 + hugo/content/icons/folder.md | 5 + hugo/content/icons/forward.md | 5 + hugo/content/icons/gamepad.md | 5 + hugo/content/icons/gauge.md | 5 + hugo/content/icons/gear.md | 5 + hugo/content/icons/gift.md | 5 + hugo/content/icons/github.md | 5 + hugo/content/icons/google-play.md | 5 + hugo/content/icons/grid.md | 5 + hugo/content/icons/grip-lines.md | 5 + hugo/content/icons/headset.md | 5 + hugo/content/icons/heart-crack.md | 5 + hugo/content/icons/heart-half.md | 5 + hugo/content/icons/heart.md | 5 + hugo/content/icons/hourglass-empty.md | 5 + hugo/content/icons/hourglass-end.md | 5 + hugo/content/icons/hourglass-start.md | 5 + hugo/content/icons/hourglass.md | 5 + hugo/content/icons/house.md | 5 + hugo/content/icons/id-card.md | 5 + hugo/content/icons/image.md | 5 + hugo/content/icons/laptop.md | 5 + hugo/content/icons/layers-plus.md | 5 + hugo/content/icons/layers.md | 5 + hugo/content/icons/lightbulb-on.md | 5 + hugo/content/icons/lightbulb.md | 5 + hugo/content/icons/link-slash.md | 5 + hugo/content/icons/link.md | 5 + hugo/content/icons/linkedin.md | 5 + hugo/content/icons/list-check.md | 5 + hugo/content/icons/list-ol.md | 5 + hugo/content/icons/list.md | 5 + hugo/content/icons/location-pin-dot.md | 5 + hugo/content/icons/location-pin-slash.md | 5 + hugo/content/icons/location-pin.md | 5 + hugo/content/icons/location-pins-route.md | 5 + hugo/content/icons/lock.md | 5 + hugo/content/icons/logs.md | 5 + hugo/content/icons/magnifying-glass.md | 5 + hugo/content/icons/message-pen.md | 5 + hugo/content/icons/message-smile.md | 5 + hugo/content/icons/message-text.md | 5 + hugo/content/icons/message.md | 5 + hugo/content/icons/microphone.md | 5 + hugo/content/icons/min.md | 5 + hugo/content/icons/moon.md | 5 + hugo/content/icons/music.md | 5 + hugo/content/icons/network.md | 5 + hugo/content/icons/notes.md | 5 + hugo/content/icons/numpad.md | 5 + hugo/content/icons/paper-plane-top.md | 5 + hugo/content/icons/parachute-box.md | 5 + hugo/content/icons/patreon.md | 5 + hugo/content/icons/pause.md | 5 + hugo/content/icons/pen.md | 5 + hugo/content/icons/phone-arrow-down-left.md | 5 + hugo/content/icons/phone-arrow-up-right.md | 5 + hugo/content/icons/phone-gear.md | 5 + hugo/content/icons/phone-list.md | 5 + hugo/content/icons/phone-office.md | 5 + hugo/content/icons/phone-volume.md | 5 + hugo/content/icons/phone.md | 5 + hugo/content/icons/plane.md | 5 + hugo/content/icons/play-pause.md | 5 + hugo/content/icons/play.md | 5 + hugo/content/icons/plus.md | 5 + hugo/content/icons/power.md | 5 + hugo/content/icons/puzzle-piece.md | 5 + hugo/content/icons/repeat-one.md | 5 + hugo/content/icons/repeat.md | 5 + hugo/content/icons/rocket.md | 5 + hugo/content/icons/safari.md | 5 + hugo/content/icons/server.md | 5 + hugo/content/icons/shield-keyhole.md | 5 + hugo/content/icons/shield-plus.md | 5 + hugo/content/icons/shield-xmark.md | 5 + hugo/content/icons/shield.md | 5 + hugo/content/icons/shuffle.md | 5 + hugo/content/icons/sim-card.md | 5 + hugo/content/icons/sliders.md | 5 + hugo/content/icons/smartphone-divert.md | 5 + hugo/content/icons/smartphone.md | 5 + hugo/content/icons/software-box.md | 5 + hugo/content/icons/spinner-third.md | 5 + hugo/content/icons/spy.md | 5 + hugo/content/icons/star.md | 5 + hugo/content/icons/stop.md | 5 + hugo/content/icons/stopwatch.md | 5 + hugo/content/icons/store.md | 5 + hugo/content/icons/sun.md | 5 + hugo/content/icons/swatchbook.md | 5 + hugo/content/icons/table-clock.md | 5 + hugo/content/icons/table.md | 5 + hugo/content/icons/tag.md | 5 + hugo/content/icons/tower-broadcast.md | 5 + hugo/content/icons/trash-can.md | 5 + hugo/content/icons/triangle-exclamation.md | 5 + hugo/content/icons/twitter.md | 5 + hugo/content/icons/unlock.md | 5 + hugo/content/icons/user-clock.md | 5 + hugo/content/icons/user-gear.md | 5 + hugo/content/icons/user-headset.md | 5 + hugo/content/icons/user-list.md | 5 + hugo/content/icons/user-lock.md | 5 + hugo/content/icons/user-plus.md | 5 + hugo/content/icons/user.md | 5 + hugo/content/icons/users-list.md | 5 + hugo/content/icons/users.md | 5 + hugo/content/icons/valkyrie-sword.md | 5 + hugo/content/icons/video.md | 5 + hugo/content/icons/virtual-reality.md | 5 + hugo/content/icons/voicemail.md | 5 + hugo/content/icons/volume-0.md | 5 + hugo/content/icons/volume-1.md | 5 + hugo/content/icons/volume-2.md | 5 + hugo/content/icons/volume-3.md | 5 + hugo/content/icons/volume-none.md | 5 + hugo/content/icons/wallpaper.md | 5 + hugo/content/icons/waveform.md | 5 + hugo/content/icons/window.md | 5 + hugo/content/icons/xmark.md | 5 + hugo/layouts/_default/home.html | 10 +- hugo/layouts/icons/single.html | 14 + hugo/layouts/partials/footer.html | 6 + hugo/layouts/partials/head.html | 8 + hugo/layouts/partials/icons.html | 16 + hugo/layouts/partials/navbar.html | 15 + hugo/public/assets/fonts/Amaranth.css | 712 ++++++ hugo/public/assets/fonts/Amaranth.eot | Bin 0 -> 52620 bytes hugo/public/assets/fonts/Amaranth.scss | 712 ++++++ hugo/public/assets/fonts/Amaranth.ttf | Bin 0 -> 52452 bytes hugo/public/assets/fonts/Amaranth.woff | Bin 0 -> 26172 bytes hugo/public/assets/fonts/Amaranth.woff2 | Bin 0 -> 21376 bytes hugo/public/categories/index.xml | 10 + hugo/public/icons/address-book/index.html | 35 + hugo/public/icons/alarm/index.html | 35 + hugo/public/icons/amaranth/index.html | 35 + hugo/public/icons/angle-down/index.html | 35 + hugo/public/icons/angle-left/index.html | 35 + hugo/public/icons/angle-right/index.html | 35 + hugo/public/icons/angle-up/index.html | 35 + hugo/public/icons/angles-y/index.html | 35 + hugo/public/icons/apple-app-store/index.html | 35 + .../icons/arrow-down-short-wide/index.html | 35 + .../icons/arrow-down-to-line/index.html | 35 + .../icons/arrow-down-wide-short/index.html | 35 + hugo/public/icons/arrow-down/index.html | 35 + .../icons/arrow-left-from-bracket/index.html | 35 + .../icons/arrow-left-to-bracket/index.html | 35 + .../icons/arrow-left-to-line/index.html | 35 + hugo/public/icons/arrow-left/index.html | 35 + hugo/public/icons/arrow-pointer/index.html | 35 + .../icons/arrow-right-from-bracket/index.html | 35 + .../icons/arrow-right-to-bracket/index.html | 35 + .../icons/arrow-right-to-line/index.html | 35 + hugo/public/icons/arrow-right/index.html | 35 + .../icons/arrow-rotate-right/index.html | 35 + .../icons/arrow-up-short-wide/index.html | 35 + hugo/public/icons/arrow-up-to-line/index.html | 35 + .../icons/arrow-up-wide-short/index.html | 35 + hugo/public/icons/arrow-up/index.html | 35 + .../icons/arrows-rotate-right/index.html | 35 + hugo/public/icons/asterisk/index.html | 35 + hugo/public/icons/at/index.html | 35 + hugo/public/icons/azure/index.html | 35 + hugo/public/icons/backward/index.html | 35 + hugo/public/icons/bars-staggered/index.html | 35 + hugo/public/icons/bars/index.html | 35 + hugo/public/icons/bel/index.html | 35 + hugo/public/icons/blf/index.html | 35 + hugo/public/icons/book/index.html | 35 + hugo/public/icons/box-open-full/index.html | 35 + hugo/public/icons/box/index.html | 35 + hugo/public/icons/branch-up/index.html | 35 + hugo/public/icons/branch/index.html | 35 + hugo/public/icons/bug/index.html | 35 + hugo/public/icons/building/index.html | 35 + hugo/public/icons/calendar-agenda/index.html | 35 + hugo/public/icons/calendar-day/index.html | 35 + hugo/public/icons/calendar-month/index.html | 35 + hugo/public/icons/calendar-stars/index.html | 35 + hugo/public/icons/calendar-week/index.html | 35 + hugo/public/icons/calendar/index.html | 35 + .../public/icons/changewindows-can/index.html | 35 + .../public/icons/changewindows-dev/index.html | 35 + hugo/public/icons/changewindows/index.html | 35 + hugo/public/icons/chart-pie/index.html | 35 + hugo/public/icons/check/index.html | 35 + hugo/public/icons/chevron-down/index.html | 35 + hugo/public/icons/chevron-left/index.html | 35 + hugo/public/icons/chevron-right/index.html | 35 + hugo/public/icons/chevron-up/index.html | 35 + hugo/public/icons/chip/index.html | 35 + hugo/public/icons/chrome/index.html | 35 + hugo/public/icons/circle-check/index.html | 35 + .../icons/circle-exclamation/index.html | 35 + hugo/public/icons/circle-info/index.html | 35 + hugo/public/icons/circle-plus/index.html | 35 + hugo/public/icons/circle-question/index.html | 35 + hugo/public/icons/circle-user/index.html | 35 + hugo/public/icons/circle-xmark/index.html | 35 + hugo/public/icons/city/index.html | 35 + .../public/icons/clock-rotate-left/index.html | 35 + hugo/public/icons/clock/index.html | 35 + hugo/public/icons/cmd/index.html | 35 + hugo/public/icons/code/index.html | 35 + hugo/public/icons/compass/index.html | 35 + hugo/public/icons/compress/index.html | 35 + hugo/public/icons/copy/index.html | 35 + hugo/public/icons/dashboard/index.html | 35 + hugo/public/icons/devices/index.html | 35 + hugo/public/icons/disc/index.html | 35 + hugo/public/icons/display-cam/index.html | 35 + hugo/public/icons/display/index.html | 35 + hugo/public/icons/earth/index.html | 35 + hugo/public/icons/eclipse/index.html | 35 + hugo/public/icons/edge/index.html | 35 + hugo/public/icons/ellipsis-v/index.html | 35 + hugo/public/icons/ellipsis/index.html | 35 + hugo/public/icons/envelope/index.html | 35 + hugo/public/icons/ethernet/index.html | 35 + hugo/public/icons/euro/index.html | 35 + hugo/public/icons/expand/index.html | 35 + hugo/public/icons/eye-slash/index.html | 35 + hugo/public/icons/eye/index.html | 35 + .../icons/facebook-messenger/index.html | 35 + hugo/public/icons/facebook/index.html | 35 + hugo/public/icons/fast-backward/index.html | 35 + hugo/public/icons/fast-forward/index.html | 35 + hugo/public/icons/fax/index.html | 35 + hugo/public/icons/file/index.html | 35 + hugo/public/icons/files/index.html | 35 + hugo/public/icons/film/index.html | 35 + hugo/public/icons/filter-plus/index.html | 35 + hugo/public/icons/filter-xmark/index.html | 35 + hugo/public/icons/filter/index.html | 35 + hugo/public/icons/fingerprint/index.html | 35 + hugo/public/icons/firefox/index.html | 35 + hugo/public/icons/flag-checkered/index.html | 35 + hugo/public/icons/flag/index.html | 35 + hugo/public/icons/floppy-disk/index.html | 35 + hugo/public/icons/foldable/index.html | 35 + hugo/public/icons/folder-image/index.html | 35 + hugo/public/icons/folder/index.html | 35 + hugo/public/icons/forward/index.html | 35 + hugo/public/icons/gamepad/index.html | 35 + hugo/public/icons/gauge/index.html | 35 + hugo/public/icons/gear/index.html | 35 + hugo/public/icons/gift/index.html | 35 + hugo/public/icons/github/index.html | 35 + hugo/public/icons/google-play/index.html | 35 + hugo/public/icons/grid/index.html | 35 + hugo/public/icons/grip-lines/index.html | 35 + hugo/public/icons/headset/index.html | 35 + hugo/public/icons/heart-crack/index.html | 35 + hugo/public/icons/heart-half/index.html | 35 + hugo/public/icons/heart/index.html | 35 + hugo/public/icons/hourglass-empty/index.html | 35 + hugo/public/icons/hourglass-end/index.html | 35 + hugo/public/icons/hourglass-start/index.html | 35 + hugo/public/icons/hourglass/index.html | 35 + hugo/public/icons/house/index.html | 35 + hugo/public/icons/id-card/index.html | 35 + hugo/public/icons/image/index.html | 35 + hugo/public/icons/index.xml | 2080 +++++++++++++++++ hugo/public/icons/laptop/index.html | 35 + hugo/public/icons/layers-plus/index.html | 35 + hugo/public/icons/layers/index.html | 35 + hugo/public/icons/lightbulb-on/index.html | 35 + hugo/public/icons/lightbulb/index.html | 35 + hugo/public/icons/link-slash/index.html | 35 + hugo/public/icons/link/index.html | 35 + hugo/public/icons/linkedin/index.html | 35 + hugo/public/icons/list-check/index.html | 35 + hugo/public/icons/list-ol/index.html | 35 + hugo/public/icons/list/index.html | 35 + hugo/public/icons/location-pin-dot/index.html | 35 + .../icons/location-pin-slash/index.html | 35 + hugo/public/icons/location-pin/index.html | 35 + .../icons/location-pins-route/index.html | 35 + hugo/public/icons/lock/index.html | 35 + hugo/public/icons/logs/index.html | 35 + hugo/public/icons/magnifying-glass/index.html | 35 + hugo/public/icons/message-pen/index.html | 35 + hugo/public/icons/message-smile/index.html | 35 + hugo/public/icons/message-text/index.html | 35 + hugo/public/icons/message/index.html | 35 + hugo/public/icons/microphone/index.html | 35 + hugo/public/icons/min/index.html | 35 + hugo/public/icons/moon/index.html | 35 + hugo/public/icons/music/index.html | 35 + hugo/public/icons/network/index.html | 35 + hugo/public/icons/notes/index.html | 35 + hugo/public/icons/numpad/index.html | 35 + hugo/public/icons/paper-plane-top/index.html | 35 + hugo/public/icons/parachute-box/index.html | 35 + hugo/public/icons/patreon/index.html | 35 + hugo/public/icons/pause/index.html | 35 + hugo/public/icons/pen/index.html | 35 + .../icons/phone-arrow-down-left/index.html | 35 + .../icons/phone-arrow-up-right/index.html | 35 + hugo/public/icons/phone-gear/index.html | 35 + hugo/public/icons/phone-list/index.html | 35 + hugo/public/icons/phone-office/index.html | 35 + hugo/public/icons/phone-volume/index.html | 35 + hugo/public/icons/phone/index.html | 35 + hugo/public/icons/plane/index.html | 35 + hugo/public/icons/play-pause/index.html | 35 + hugo/public/icons/play/index.html | 35 + hugo/public/icons/plus/index.html | 35 + hugo/public/icons/power/index.html | 35 + hugo/public/icons/puzzle-piece/index.html | 35 + hugo/public/icons/repeat-one/index.html | 35 + hugo/public/icons/repeat/index.html | 35 + hugo/public/icons/rocket/index.html | 35 + hugo/public/icons/safari/index.html | 35 + hugo/public/icons/server/index.html | 35 + hugo/public/icons/shield-keyhole/index.html | 35 + hugo/public/icons/shield-plus/index.html | 35 + hugo/public/icons/shield-xmark/index.html | 35 + hugo/public/icons/shield/index.html | 35 + hugo/public/icons/shuffle/index.html | 35 + hugo/public/icons/sim-card/index.html | 35 + hugo/public/icons/sliders/index.html | 35 + .../public/icons/smartphone-divert/index.html | 35 + hugo/public/icons/smartphone/index.html | 35 + hugo/public/icons/software-box/index.html | 35 + hugo/public/icons/spinner-third/index.html | 35 + hugo/public/icons/spy/index.html | 35 + hugo/public/icons/star/index.html | 35 + hugo/public/icons/stop/index.html | 35 + hugo/public/icons/stopwatch/index.html | 35 + hugo/public/icons/store/index.html | 35 + hugo/public/icons/sun/index.html | 35 + hugo/public/icons/swatchbook/index.html | 35 + hugo/public/icons/table-clock/index.html | 35 + hugo/public/icons/table/index.html | 35 + hugo/public/icons/tag/index.html | 35 + hugo/public/icons/tower-broadcast/index.html | 35 + hugo/public/icons/trash-can/index.html | 35 + .../icons/triangle-exclamation/index.html | 35 + hugo/public/icons/twitter/index.html | 35 + hugo/public/icons/unlock/index.html | 35 + hugo/public/icons/user-clock/index.html | 35 + hugo/public/icons/user-gear/index.html | 35 + hugo/public/icons/user-headset/index.html | 35 + hugo/public/icons/user-list/index.html | 35 + hugo/public/icons/user-lock/index.html | 35 + hugo/public/icons/user-plus/index.html | 35 + hugo/public/icons/user/index.html | 35 + hugo/public/icons/users-list/index.html | 35 + hugo/public/icons/users/index.html | 35 + hugo/public/icons/valkyrie-sword/index.html | 35 + hugo/public/icons/video/index.html | 35 + hugo/public/icons/virtual-reality/index.html | 35 + hugo/public/icons/voicemail/index.html | 35 + hugo/public/icons/volume-0/index.html | 35 + hugo/public/icons/volume-1/index.html | 35 + hugo/public/icons/volume-2/index.html | 35 + hugo/public/icons/volume-3/index.html | 35 + hugo/public/icons/volume-none/index.html | 35 + hugo/public/icons/wallpaper/index.html | 35 + hugo/public/icons/waveform/index.html | 35 + hugo/public/icons/window/index.html | 35 + hugo/public/icons/xmark/index.html | 35 + hugo/public/index.html | 1887 +++++++++++++++ hugo/public/index.xml | 2080 +++++++++++++++++ hugo/public/sitemap.xml | 473 ++++ hugo/public/tags/index.xml | 10 + ...s_48b060fe05b0a273d182ef83c0605941.content | 4 + ...scss_48b060fe05b0a273d182ef83c0605941.json | 1 + hugo/static/assets/fonts/Amaranth.css | 712 ++++++ hugo/static/assets/fonts/Amaranth.eot | Bin 0 -> 52620 bytes hugo/static/assets/fonts/Amaranth.scss | 712 ++++++ hugo/static/assets/fonts/Amaranth.ttf | Bin 0 -> 52452 bytes hugo/static/assets/fonts/Amaranth.woff | Bin 0 -> 26172 bytes hugo/static/assets/fonts/Amaranth.woff2 | Bin 0 -> 21376 bytes package-lock.json | 192 +- package.json | 18 +- scripts/pages.mjs | 54 + 491 files changed, 18952 insertions(+), 37 deletions(-) create mode 100644 hugo/assets/sass/main.scss create mode 100644 hugo/content/icons/address-book.md create mode 100644 hugo/content/icons/alarm.md create mode 100644 hugo/content/icons/amaranth.md create mode 100644 hugo/content/icons/angle-down.md create mode 100644 hugo/content/icons/angle-left.md create mode 100644 hugo/content/icons/angle-right.md create mode 100644 hugo/content/icons/angle-up.md create mode 100644 hugo/content/icons/angles-y.md create mode 100644 hugo/content/icons/apple-app-store.md create mode 100644 hugo/content/icons/arrow-down-short-wide.md create mode 100644 hugo/content/icons/arrow-down-to-line.md create mode 100644 hugo/content/icons/arrow-down-wide-short.md create mode 100644 hugo/content/icons/arrow-down.md create mode 100644 hugo/content/icons/arrow-left-from-bracket.md create mode 100644 hugo/content/icons/arrow-left-to-bracket.md create mode 100644 hugo/content/icons/arrow-left-to-line.md create mode 100644 hugo/content/icons/arrow-left.md create mode 100644 hugo/content/icons/arrow-pointer.md create mode 100644 hugo/content/icons/arrow-right-from-bracket.md create mode 100644 hugo/content/icons/arrow-right-to-bracket.md create mode 100644 hugo/content/icons/arrow-right-to-line.md create mode 100644 hugo/content/icons/arrow-right.md create mode 100644 hugo/content/icons/arrow-rotate-right.md create mode 100644 hugo/content/icons/arrow-up-short-wide.md create mode 100644 hugo/content/icons/arrow-up-to-line.md create mode 100644 hugo/content/icons/arrow-up-wide-short.md create mode 100644 hugo/content/icons/arrow-up.md create mode 100644 hugo/content/icons/arrows-rotate-right.md create mode 100644 hugo/content/icons/asterisk.md create mode 100644 hugo/content/icons/at.md create mode 100644 hugo/content/icons/azure.md create mode 100644 hugo/content/icons/backward.md create mode 100644 hugo/content/icons/bars-staggered.md create mode 100644 hugo/content/icons/bars.md create mode 100644 hugo/content/icons/bel.md create mode 100644 hugo/content/icons/blf.md create mode 100644 hugo/content/icons/book.md create mode 100644 hugo/content/icons/box-open-full.md create mode 100644 hugo/content/icons/box.md create mode 100644 hugo/content/icons/branch-up.md create mode 100644 hugo/content/icons/branch.md create mode 100644 hugo/content/icons/bug.md create mode 100644 hugo/content/icons/building.md create mode 100644 hugo/content/icons/calendar-agenda.md create mode 100644 hugo/content/icons/calendar-day.md create mode 100644 hugo/content/icons/calendar-month.md create mode 100644 hugo/content/icons/calendar-stars.md create mode 100644 hugo/content/icons/calendar-week.md create mode 100644 hugo/content/icons/calendar.md create mode 100644 hugo/content/icons/changewindows-can.md create mode 100644 hugo/content/icons/changewindows-dev.md create mode 100644 hugo/content/icons/changewindows.md create mode 100644 hugo/content/icons/chart-pie.md create mode 100644 hugo/content/icons/check.md create mode 100644 hugo/content/icons/chevron-down.md create mode 100644 hugo/content/icons/chevron-left.md create mode 100644 hugo/content/icons/chevron-right.md create mode 100644 hugo/content/icons/chevron-up.md create mode 100644 hugo/content/icons/chip.md create mode 100644 hugo/content/icons/chrome.md create mode 100644 hugo/content/icons/circle-check.md create mode 100644 hugo/content/icons/circle-exclamation.md create mode 100644 hugo/content/icons/circle-info.md create mode 100644 hugo/content/icons/circle-plus.md create mode 100644 hugo/content/icons/circle-question.md create mode 100644 hugo/content/icons/circle-user.md create mode 100644 hugo/content/icons/circle-xmark.md create mode 100644 hugo/content/icons/city.md create mode 100644 hugo/content/icons/clock-rotate-left.md create mode 100644 hugo/content/icons/clock.md create mode 100644 hugo/content/icons/cmd.md create mode 100644 hugo/content/icons/code.md create mode 100644 hugo/content/icons/compass.md create mode 100644 hugo/content/icons/compress.md create mode 100644 hugo/content/icons/copy.md create mode 100644 hugo/content/icons/dashboard.md create mode 100644 hugo/content/icons/devices.md create mode 100644 hugo/content/icons/disc.md create mode 100644 hugo/content/icons/display-cam.md create mode 100644 hugo/content/icons/display.md create mode 100644 hugo/content/icons/earth.md create mode 100644 hugo/content/icons/eclipse.md create mode 100644 hugo/content/icons/edge.md create mode 100644 hugo/content/icons/ellipsis-v.md create mode 100644 hugo/content/icons/ellipsis.md create mode 100644 hugo/content/icons/envelope.md create mode 100644 hugo/content/icons/ethernet.md create mode 100644 hugo/content/icons/euro.md create mode 100644 hugo/content/icons/expand.md create mode 100644 hugo/content/icons/eye-slash.md create mode 100644 hugo/content/icons/eye.md create mode 100644 hugo/content/icons/facebook-messenger.md create mode 100644 hugo/content/icons/facebook.md create mode 100644 hugo/content/icons/fast-backward.md create mode 100644 hugo/content/icons/fast-forward.md create mode 100644 hugo/content/icons/fax.md create mode 100644 hugo/content/icons/file.md create mode 100644 hugo/content/icons/files.md create mode 100644 hugo/content/icons/film.md create mode 100644 hugo/content/icons/filter-plus.md create mode 100644 hugo/content/icons/filter-xmark.md create mode 100644 hugo/content/icons/filter.md create mode 100644 hugo/content/icons/fingerprint.md create mode 100644 hugo/content/icons/firefox.md create mode 100644 hugo/content/icons/flag-checkered.md create mode 100644 hugo/content/icons/flag.md create mode 100644 hugo/content/icons/floppy-disk.md create mode 100644 hugo/content/icons/foldable.md create mode 100644 hugo/content/icons/folder-image.md create mode 100644 hugo/content/icons/folder.md create mode 100644 hugo/content/icons/forward.md create mode 100644 hugo/content/icons/gamepad.md create mode 100644 hugo/content/icons/gauge.md create mode 100644 hugo/content/icons/gear.md create mode 100644 hugo/content/icons/gift.md create mode 100644 hugo/content/icons/github.md create mode 100644 hugo/content/icons/google-play.md create mode 100644 hugo/content/icons/grid.md create mode 100644 hugo/content/icons/grip-lines.md create mode 100644 hugo/content/icons/headset.md create mode 100644 hugo/content/icons/heart-crack.md create mode 100644 hugo/content/icons/heart-half.md create mode 100644 hugo/content/icons/heart.md create mode 100644 hugo/content/icons/hourglass-empty.md create mode 100644 hugo/content/icons/hourglass-end.md create mode 100644 hugo/content/icons/hourglass-start.md create mode 100644 hugo/content/icons/hourglass.md create mode 100644 hugo/content/icons/house.md create mode 100644 hugo/content/icons/id-card.md create mode 100644 hugo/content/icons/image.md create mode 100644 hugo/content/icons/laptop.md create mode 100644 hugo/content/icons/layers-plus.md create mode 100644 hugo/content/icons/layers.md create mode 100644 hugo/content/icons/lightbulb-on.md create mode 100644 hugo/content/icons/lightbulb.md create mode 100644 hugo/content/icons/link-slash.md create mode 100644 hugo/content/icons/link.md create mode 100644 hugo/content/icons/linkedin.md create mode 100644 hugo/content/icons/list-check.md create mode 100644 hugo/content/icons/list-ol.md create mode 100644 hugo/content/icons/list.md create mode 100644 hugo/content/icons/location-pin-dot.md create mode 100644 hugo/content/icons/location-pin-slash.md create mode 100644 hugo/content/icons/location-pin.md create mode 100644 hugo/content/icons/location-pins-route.md create mode 100644 hugo/content/icons/lock.md create mode 100644 hugo/content/icons/logs.md create mode 100644 hugo/content/icons/magnifying-glass.md create mode 100644 hugo/content/icons/message-pen.md create mode 100644 hugo/content/icons/message-smile.md create mode 100644 hugo/content/icons/message-text.md create mode 100644 hugo/content/icons/message.md create mode 100644 hugo/content/icons/microphone.md create mode 100644 hugo/content/icons/min.md create mode 100644 hugo/content/icons/moon.md create mode 100644 hugo/content/icons/music.md create mode 100644 hugo/content/icons/network.md create mode 100644 hugo/content/icons/notes.md create mode 100644 hugo/content/icons/numpad.md create mode 100644 hugo/content/icons/paper-plane-top.md create mode 100644 hugo/content/icons/parachute-box.md create mode 100644 hugo/content/icons/patreon.md create mode 100644 hugo/content/icons/pause.md create mode 100644 hugo/content/icons/pen.md create mode 100644 hugo/content/icons/phone-arrow-down-left.md create mode 100644 hugo/content/icons/phone-arrow-up-right.md create mode 100644 hugo/content/icons/phone-gear.md create mode 100644 hugo/content/icons/phone-list.md create mode 100644 hugo/content/icons/phone-office.md create mode 100644 hugo/content/icons/phone-volume.md create mode 100644 hugo/content/icons/phone.md create mode 100644 hugo/content/icons/plane.md create mode 100644 hugo/content/icons/play-pause.md create mode 100644 hugo/content/icons/play.md create mode 100644 hugo/content/icons/plus.md create mode 100644 hugo/content/icons/power.md create mode 100644 hugo/content/icons/puzzle-piece.md create mode 100644 hugo/content/icons/repeat-one.md create mode 100644 hugo/content/icons/repeat.md create mode 100644 hugo/content/icons/rocket.md create mode 100644 hugo/content/icons/safari.md create mode 100644 hugo/content/icons/server.md create mode 100644 hugo/content/icons/shield-keyhole.md create mode 100644 hugo/content/icons/shield-plus.md create mode 100644 hugo/content/icons/shield-xmark.md create mode 100644 hugo/content/icons/shield.md create mode 100644 hugo/content/icons/shuffle.md create mode 100644 hugo/content/icons/sim-card.md create mode 100644 hugo/content/icons/sliders.md create mode 100644 hugo/content/icons/smartphone-divert.md create mode 100644 hugo/content/icons/smartphone.md create mode 100644 hugo/content/icons/software-box.md create mode 100644 hugo/content/icons/spinner-third.md create mode 100644 hugo/content/icons/spy.md create mode 100644 hugo/content/icons/star.md create mode 100644 hugo/content/icons/stop.md create mode 100644 hugo/content/icons/stopwatch.md create mode 100644 hugo/content/icons/store.md create mode 100644 hugo/content/icons/sun.md create mode 100644 hugo/content/icons/swatchbook.md create mode 100644 hugo/content/icons/table-clock.md create mode 100644 hugo/content/icons/table.md create mode 100644 hugo/content/icons/tag.md create mode 100644 hugo/content/icons/tower-broadcast.md create mode 100644 hugo/content/icons/trash-can.md create mode 100644 hugo/content/icons/triangle-exclamation.md create mode 100644 hugo/content/icons/twitter.md create mode 100644 hugo/content/icons/unlock.md create mode 100644 hugo/content/icons/user-clock.md create mode 100644 hugo/content/icons/user-gear.md create mode 100644 hugo/content/icons/user-headset.md create mode 100644 hugo/content/icons/user-list.md create mode 100644 hugo/content/icons/user-lock.md create mode 100644 hugo/content/icons/user-plus.md create mode 100644 hugo/content/icons/user.md create mode 100644 hugo/content/icons/users-list.md create mode 100644 hugo/content/icons/users.md create mode 100644 hugo/content/icons/valkyrie-sword.md create mode 100644 hugo/content/icons/video.md create mode 100644 hugo/content/icons/virtual-reality.md create mode 100644 hugo/content/icons/voicemail.md create mode 100644 hugo/content/icons/volume-0.md create mode 100644 hugo/content/icons/volume-1.md create mode 100644 hugo/content/icons/volume-2.md create mode 100644 hugo/content/icons/volume-3.md create mode 100644 hugo/content/icons/volume-none.md create mode 100644 hugo/content/icons/wallpaper.md create mode 100644 hugo/content/icons/waveform.md create mode 100644 hugo/content/icons/window.md create mode 100644 hugo/content/icons/xmark.md create mode 100644 hugo/layouts/icons/single.html create mode 100644 hugo/layouts/partials/footer.html create mode 100644 hugo/layouts/partials/head.html create mode 100644 hugo/layouts/partials/icons.html create mode 100644 hugo/layouts/partials/navbar.html create mode 100644 hugo/public/assets/fonts/Amaranth.css create mode 100644 hugo/public/assets/fonts/Amaranth.eot create mode 100644 hugo/public/assets/fonts/Amaranth.scss create mode 100644 hugo/public/assets/fonts/Amaranth.ttf create mode 100644 hugo/public/assets/fonts/Amaranth.woff create mode 100644 hugo/public/assets/fonts/Amaranth.woff2 create mode 100644 hugo/public/categories/index.xml create mode 100644 hugo/public/icons/address-book/index.html create mode 100644 hugo/public/icons/alarm/index.html create mode 100644 hugo/public/icons/amaranth/index.html create mode 100644 hugo/public/icons/angle-down/index.html create mode 100644 hugo/public/icons/angle-left/index.html create mode 100644 hugo/public/icons/angle-right/index.html create mode 100644 hugo/public/icons/angle-up/index.html create mode 100644 hugo/public/icons/angles-y/index.html create mode 100644 hugo/public/icons/apple-app-store/index.html create mode 100644 hugo/public/icons/arrow-down-short-wide/index.html create mode 100644 hugo/public/icons/arrow-down-to-line/index.html create mode 100644 hugo/public/icons/arrow-down-wide-short/index.html create mode 100644 hugo/public/icons/arrow-down/index.html create mode 100644 hugo/public/icons/arrow-left-from-bracket/index.html create mode 100644 hugo/public/icons/arrow-left-to-bracket/index.html create mode 100644 hugo/public/icons/arrow-left-to-line/index.html create mode 100644 hugo/public/icons/arrow-left/index.html create mode 100644 hugo/public/icons/arrow-pointer/index.html create mode 100644 hugo/public/icons/arrow-right-from-bracket/index.html create mode 100644 hugo/public/icons/arrow-right-to-bracket/index.html create mode 100644 hugo/public/icons/arrow-right-to-line/index.html create mode 100644 hugo/public/icons/arrow-right/index.html create mode 100644 hugo/public/icons/arrow-rotate-right/index.html create mode 100644 hugo/public/icons/arrow-up-short-wide/index.html create mode 100644 hugo/public/icons/arrow-up-to-line/index.html create mode 100644 hugo/public/icons/arrow-up-wide-short/index.html create mode 100644 hugo/public/icons/arrow-up/index.html create mode 100644 hugo/public/icons/arrows-rotate-right/index.html create mode 100644 hugo/public/icons/asterisk/index.html create mode 100644 hugo/public/icons/at/index.html create mode 100644 hugo/public/icons/azure/index.html create mode 100644 hugo/public/icons/backward/index.html create mode 100644 hugo/public/icons/bars-staggered/index.html create mode 100644 hugo/public/icons/bars/index.html create mode 100644 hugo/public/icons/bel/index.html create mode 100644 hugo/public/icons/blf/index.html create mode 100644 hugo/public/icons/book/index.html create mode 100644 hugo/public/icons/box-open-full/index.html create mode 100644 hugo/public/icons/box/index.html create mode 100644 hugo/public/icons/branch-up/index.html create mode 100644 hugo/public/icons/branch/index.html create mode 100644 hugo/public/icons/bug/index.html create mode 100644 hugo/public/icons/building/index.html create mode 100644 hugo/public/icons/calendar-agenda/index.html create mode 100644 hugo/public/icons/calendar-day/index.html create mode 100644 hugo/public/icons/calendar-month/index.html create mode 100644 hugo/public/icons/calendar-stars/index.html create mode 100644 hugo/public/icons/calendar-week/index.html create mode 100644 hugo/public/icons/calendar/index.html create mode 100644 hugo/public/icons/changewindows-can/index.html create mode 100644 hugo/public/icons/changewindows-dev/index.html create mode 100644 hugo/public/icons/changewindows/index.html create mode 100644 hugo/public/icons/chart-pie/index.html create mode 100644 hugo/public/icons/check/index.html create mode 100644 hugo/public/icons/chevron-down/index.html create mode 100644 hugo/public/icons/chevron-left/index.html create mode 100644 hugo/public/icons/chevron-right/index.html create mode 100644 hugo/public/icons/chevron-up/index.html create mode 100644 hugo/public/icons/chip/index.html create mode 100644 hugo/public/icons/chrome/index.html create mode 100644 hugo/public/icons/circle-check/index.html create mode 100644 hugo/public/icons/circle-exclamation/index.html create mode 100644 hugo/public/icons/circle-info/index.html create mode 100644 hugo/public/icons/circle-plus/index.html create mode 100644 hugo/public/icons/circle-question/index.html create mode 100644 hugo/public/icons/circle-user/index.html create mode 100644 hugo/public/icons/circle-xmark/index.html create mode 100644 hugo/public/icons/city/index.html create mode 100644 hugo/public/icons/clock-rotate-left/index.html create mode 100644 hugo/public/icons/clock/index.html create mode 100644 hugo/public/icons/cmd/index.html create mode 100644 hugo/public/icons/code/index.html create mode 100644 hugo/public/icons/compass/index.html create mode 100644 hugo/public/icons/compress/index.html create mode 100644 hugo/public/icons/copy/index.html create mode 100644 hugo/public/icons/dashboard/index.html create mode 100644 hugo/public/icons/devices/index.html create mode 100644 hugo/public/icons/disc/index.html create mode 100644 hugo/public/icons/display-cam/index.html create mode 100644 hugo/public/icons/display/index.html create mode 100644 hugo/public/icons/earth/index.html create mode 100644 hugo/public/icons/eclipse/index.html create mode 100644 hugo/public/icons/edge/index.html create mode 100644 hugo/public/icons/ellipsis-v/index.html create mode 100644 hugo/public/icons/ellipsis/index.html create mode 100644 hugo/public/icons/envelope/index.html create mode 100644 hugo/public/icons/ethernet/index.html create mode 100644 hugo/public/icons/euro/index.html create mode 100644 hugo/public/icons/expand/index.html create mode 100644 hugo/public/icons/eye-slash/index.html create mode 100644 hugo/public/icons/eye/index.html create mode 100644 hugo/public/icons/facebook-messenger/index.html create mode 100644 hugo/public/icons/facebook/index.html create mode 100644 hugo/public/icons/fast-backward/index.html create mode 100644 hugo/public/icons/fast-forward/index.html create mode 100644 hugo/public/icons/fax/index.html create mode 100644 hugo/public/icons/file/index.html create mode 100644 hugo/public/icons/files/index.html create mode 100644 hugo/public/icons/film/index.html create mode 100644 hugo/public/icons/filter-plus/index.html create mode 100644 hugo/public/icons/filter-xmark/index.html create mode 100644 hugo/public/icons/filter/index.html create mode 100644 hugo/public/icons/fingerprint/index.html create mode 100644 hugo/public/icons/firefox/index.html create mode 100644 hugo/public/icons/flag-checkered/index.html create mode 100644 hugo/public/icons/flag/index.html create mode 100644 hugo/public/icons/floppy-disk/index.html create mode 100644 hugo/public/icons/foldable/index.html create mode 100644 hugo/public/icons/folder-image/index.html create mode 100644 hugo/public/icons/folder/index.html create mode 100644 hugo/public/icons/forward/index.html create mode 100644 hugo/public/icons/gamepad/index.html create mode 100644 hugo/public/icons/gauge/index.html create mode 100644 hugo/public/icons/gear/index.html create mode 100644 hugo/public/icons/gift/index.html create mode 100644 hugo/public/icons/github/index.html create mode 100644 hugo/public/icons/google-play/index.html create mode 100644 hugo/public/icons/grid/index.html create mode 100644 hugo/public/icons/grip-lines/index.html create mode 100644 hugo/public/icons/headset/index.html create mode 100644 hugo/public/icons/heart-crack/index.html create mode 100644 hugo/public/icons/heart-half/index.html create mode 100644 hugo/public/icons/heart/index.html create mode 100644 hugo/public/icons/hourglass-empty/index.html create mode 100644 hugo/public/icons/hourglass-end/index.html create mode 100644 hugo/public/icons/hourglass-start/index.html create mode 100644 hugo/public/icons/hourglass/index.html create mode 100644 hugo/public/icons/house/index.html create mode 100644 hugo/public/icons/id-card/index.html create mode 100644 hugo/public/icons/image/index.html create mode 100644 hugo/public/icons/index.xml create mode 100644 hugo/public/icons/laptop/index.html create mode 100644 hugo/public/icons/layers-plus/index.html create mode 100644 hugo/public/icons/layers/index.html create mode 100644 hugo/public/icons/lightbulb-on/index.html create mode 100644 hugo/public/icons/lightbulb/index.html create mode 100644 hugo/public/icons/link-slash/index.html create mode 100644 hugo/public/icons/link/index.html create mode 100644 hugo/public/icons/linkedin/index.html create mode 100644 hugo/public/icons/list-check/index.html create mode 100644 hugo/public/icons/list-ol/index.html create mode 100644 hugo/public/icons/list/index.html create mode 100644 hugo/public/icons/location-pin-dot/index.html create mode 100644 hugo/public/icons/location-pin-slash/index.html create mode 100644 hugo/public/icons/location-pin/index.html create mode 100644 hugo/public/icons/location-pins-route/index.html create mode 100644 hugo/public/icons/lock/index.html create mode 100644 hugo/public/icons/logs/index.html create mode 100644 hugo/public/icons/magnifying-glass/index.html create mode 100644 hugo/public/icons/message-pen/index.html create mode 100644 hugo/public/icons/message-smile/index.html create mode 100644 hugo/public/icons/message-text/index.html create mode 100644 hugo/public/icons/message/index.html create mode 100644 hugo/public/icons/microphone/index.html create mode 100644 hugo/public/icons/min/index.html create mode 100644 hugo/public/icons/moon/index.html create mode 100644 hugo/public/icons/music/index.html create mode 100644 hugo/public/icons/network/index.html create mode 100644 hugo/public/icons/notes/index.html create mode 100644 hugo/public/icons/numpad/index.html create mode 100644 hugo/public/icons/paper-plane-top/index.html create mode 100644 hugo/public/icons/parachute-box/index.html create mode 100644 hugo/public/icons/patreon/index.html create mode 100644 hugo/public/icons/pause/index.html create mode 100644 hugo/public/icons/pen/index.html create mode 100644 hugo/public/icons/phone-arrow-down-left/index.html create mode 100644 hugo/public/icons/phone-arrow-up-right/index.html create mode 100644 hugo/public/icons/phone-gear/index.html create mode 100644 hugo/public/icons/phone-list/index.html create mode 100644 hugo/public/icons/phone-office/index.html create mode 100644 hugo/public/icons/phone-volume/index.html create mode 100644 hugo/public/icons/phone/index.html create mode 100644 hugo/public/icons/plane/index.html create mode 100644 hugo/public/icons/play-pause/index.html create mode 100644 hugo/public/icons/play/index.html create mode 100644 hugo/public/icons/plus/index.html create mode 100644 hugo/public/icons/power/index.html create mode 100644 hugo/public/icons/puzzle-piece/index.html create mode 100644 hugo/public/icons/repeat-one/index.html create mode 100644 hugo/public/icons/repeat/index.html create mode 100644 hugo/public/icons/rocket/index.html create mode 100644 hugo/public/icons/safari/index.html create mode 100644 hugo/public/icons/server/index.html create mode 100644 hugo/public/icons/shield-keyhole/index.html create mode 100644 hugo/public/icons/shield-plus/index.html create mode 100644 hugo/public/icons/shield-xmark/index.html create mode 100644 hugo/public/icons/shield/index.html create mode 100644 hugo/public/icons/shuffle/index.html create mode 100644 hugo/public/icons/sim-card/index.html create mode 100644 hugo/public/icons/sliders/index.html create mode 100644 hugo/public/icons/smartphone-divert/index.html create mode 100644 hugo/public/icons/smartphone/index.html create mode 100644 hugo/public/icons/software-box/index.html create mode 100644 hugo/public/icons/spinner-third/index.html create mode 100644 hugo/public/icons/spy/index.html create mode 100644 hugo/public/icons/star/index.html create mode 100644 hugo/public/icons/stop/index.html create mode 100644 hugo/public/icons/stopwatch/index.html create mode 100644 hugo/public/icons/store/index.html create mode 100644 hugo/public/icons/sun/index.html create mode 100644 hugo/public/icons/swatchbook/index.html create mode 100644 hugo/public/icons/table-clock/index.html create mode 100644 hugo/public/icons/table/index.html create mode 100644 hugo/public/icons/tag/index.html create mode 100644 hugo/public/icons/tower-broadcast/index.html create mode 100644 hugo/public/icons/trash-can/index.html create mode 100644 hugo/public/icons/triangle-exclamation/index.html create mode 100644 hugo/public/icons/twitter/index.html create mode 100644 hugo/public/icons/unlock/index.html create mode 100644 hugo/public/icons/user-clock/index.html create mode 100644 hugo/public/icons/user-gear/index.html create mode 100644 hugo/public/icons/user-headset/index.html create mode 100644 hugo/public/icons/user-list/index.html create mode 100644 hugo/public/icons/user-lock/index.html create mode 100644 hugo/public/icons/user-plus/index.html create mode 100644 hugo/public/icons/user/index.html create mode 100644 hugo/public/icons/users-list/index.html create mode 100644 hugo/public/icons/users/index.html create mode 100644 hugo/public/icons/valkyrie-sword/index.html create mode 100644 hugo/public/icons/video/index.html create mode 100644 hugo/public/icons/virtual-reality/index.html create mode 100644 hugo/public/icons/voicemail/index.html create mode 100644 hugo/public/icons/volume-0/index.html create mode 100644 hugo/public/icons/volume-1/index.html create mode 100644 hugo/public/icons/volume-2/index.html create mode 100644 hugo/public/icons/volume-3/index.html create mode 100644 hugo/public/icons/volume-none/index.html create mode 100644 hugo/public/icons/wallpaper/index.html create mode 100644 hugo/public/icons/waveform/index.html create mode 100644 hugo/public/icons/window/index.html create mode 100644 hugo/public/icons/xmark/index.html create mode 100644 hugo/public/index.html create mode 100644 hugo/public/index.xml create mode 100644 hugo/public/sitemap.xml create mode 100644 hugo/public/tags/index.xml create mode 100644 hugo/resources/_gen/assets/scss/sass/main.scss_48b060fe05b0a273d182ef83c0605941.content create mode 100644 hugo/resources/_gen/assets/scss/sass/main.scss_48b060fe05b0a273d182ef83c0605941.json create mode 100644 hugo/static/assets/fonts/Amaranth.css create mode 100644 hugo/static/assets/fonts/Amaranth.eot create mode 100644 hugo/static/assets/fonts/Amaranth.scss create mode 100644 hugo/static/assets/fonts/Amaranth.ttf create mode 100644 hugo/static/assets/fonts/Amaranth.woff create mode 100644 hugo/static/assets/fonts/Amaranth.woff2 create mode 100644 scripts/pages.mjs diff --git a/hugo/assets/sass/main.scss b/hugo/assets/sass/main.scss new file mode 100644 index 0000000..3c26eab --- /dev/null +++ b/hugo/assets/sass/main.scss @@ -0,0 +1,55 @@ +@import '../../../node_modules/bootstrap/scss/bootstrap.scss'; + +// Grid +@media (min-width: 1200px) { + .row-cols-xl-8 { + > * { + flex: 0 0 12.5%; + max-width: 12.5%; + } + } +} + +@media (min-width: 1400px) { + .row-cols-xxl-10 { + > * { + flex: 0 0 10%; + max-width: 10%; + } + } +} + +// Icon grid +.icon-card { + display: flex; + flex-direction: column; + height: 100%; + color: $dark; + border-radius: $border-radius; + text-decoration: none; + border: 1.5px solid $border-color; + overflow: hidden; + + .icon-glyph { + padding: .5rem; + background: $light; + text-align: center; + font-size: $font-size-base * 2.5; + } + + .icon-name { + font-family: $font-family-monospace; + text-decoration: none; + text-align: center; + font-size: .75rem; + padding: .5rem; + flex-grow: 1; + } +} + +// Footer +footer { + a { + text-decoration: none; + } +} \ No newline at end of file diff --git a/hugo/content/_index.md b/hugo/content/_index.md index 3ff7423..671a9b9 100644 --- a/hugo/content/_index.md +++ b/hugo/content/_index.md @@ -1,4 +1,10 @@ --- --- -# Hello world \ No newline at end of file +## Welcome to Amaranth + +Amaranth is a beautiful set of icons. + +``` +npm install @changewindows/amaranth +``` \ No newline at end of file diff --git a/hugo/content/icons/address-book.md b/hugo/content/icons/address-book.md new file mode 100644 index 0000000..295f2b2 --- /dev/null +++ b/hugo/content/icons/address-book.md @@ -0,0 +1,5 @@ +--- +title: Address Book +tags: +categories: +--- diff --git a/hugo/content/icons/alarm.md b/hugo/content/icons/alarm.md new file mode 100644 index 0000000..bb55e5b --- /dev/null +++ b/hugo/content/icons/alarm.md @@ -0,0 +1,5 @@ +--- +title: Alarm +tags: +categories: +--- diff --git a/hugo/content/icons/amaranth.md b/hugo/content/icons/amaranth.md new file mode 100644 index 0000000..74c6eb7 --- /dev/null +++ b/hugo/content/icons/amaranth.md @@ -0,0 +1,5 @@ +--- +title: Amaranth +tags: +categories: +--- diff --git a/hugo/content/icons/angle-down.md b/hugo/content/icons/angle-down.md new file mode 100644 index 0000000..eca5d9b --- /dev/null +++ b/hugo/content/icons/angle-down.md @@ -0,0 +1,5 @@ +--- +title: Angle Down +tags: +categories: +--- diff --git a/hugo/content/icons/angle-left.md b/hugo/content/icons/angle-left.md new file mode 100644 index 0000000..fa964a4 --- /dev/null +++ b/hugo/content/icons/angle-left.md @@ -0,0 +1,5 @@ +--- +title: Angle Left +tags: +categories: +--- diff --git a/hugo/content/icons/angle-right.md b/hugo/content/icons/angle-right.md new file mode 100644 index 0000000..721e5be --- /dev/null +++ b/hugo/content/icons/angle-right.md @@ -0,0 +1,5 @@ +--- +title: Angle Right +tags: +categories: +--- diff --git a/hugo/content/icons/angle-up.md b/hugo/content/icons/angle-up.md new file mode 100644 index 0000000..92d11f0 --- /dev/null +++ b/hugo/content/icons/angle-up.md @@ -0,0 +1,5 @@ +--- +title: Angle Up +tags: +categories: +--- diff --git a/hugo/content/icons/angles-y.md b/hugo/content/icons/angles-y.md new file mode 100644 index 0000000..9111ec1 --- /dev/null +++ b/hugo/content/icons/angles-y.md @@ -0,0 +1,5 @@ +--- +title: Angles Y +tags: +categories: +--- diff --git a/hugo/content/icons/apple-app-store.md b/hugo/content/icons/apple-app-store.md new file mode 100644 index 0000000..c3efde9 --- /dev/null +++ b/hugo/content/icons/apple-app-store.md @@ -0,0 +1,5 @@ +--- +title: Apple App Store +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-down-short-wide.md b/hugo/content/icons/arrow-down-short-wide.md new file mode 100644 index 0000000..42cb4cd --- /dev/null +++ b/hugo/content/icons/arrow-down-short-wide.md @@ -0,0 +1,5 @@ +--- +title: Arrow Down Short Wide +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-down-to-line.md b/hugo/content/icons/arrow-down-to-line.md new file mode 100644 index 0000000..4da832c --- /dev/null +++ b/hugo/content/icons/arrow-down-to-line.md @@ -0,0 +1,5 @@ +--- +title: Arrow Down To Line +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-down-wide-short.md b/hugo/content/icons/arrow-down-wide-short.md new file mode 100644 index 0000000..bbc77dd --- /dev/null +++ b/hugo/content/icons/arrow-down-wide-short.md @@ -0,0 +1,5 @@ +--- +title: Arrow Down Wide Short +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-down.md b/hugo/content/icons/arrow-down.md new file mode 100644 index 0000000..d7c7775 --- /dev/null +++ b/hugo/content/icons/arrow-down.md @@ -0,0 +1,5 @@ +--- +title: Arrow Down +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-left-from-bracket.md b/hugo/content/icons/arrow-left-from-bracket.md new file mode 100644 index 0000000..7644568 --- /dev/null +++ b/hugo/content/icons/arrow-left-from-bracket.md @@ -0,0 +1,5 @@ +--- +title: Arrow Left From Bracket +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-left-to-bracket.md b/hugo/content/icons/arrow-left-to-bracket.md new file mode 100644 index 0000000..12e1fa5 --- /dev/null +++ b/hugo/content/icons/arrow-left-to-bracket.md @@ -0,0 +1,5 @@ +--- +title: Arrow Left To Bracket +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-left-to-line.md b/hugo/content/icons/arrow-left-to-line.md new file mode 100644 index 0000000..214b3d5 --- /dev/null +++ b/hugo/content/icons/arrow-left-to-line.md @@ -0,0 +1,5 @@ +--- +title: Arrow Left To Line +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-left.md b/hugo/content/icons/arrow-left.md new file mode 100644 index 0000000..600e66d --- /dev/null +++ b/hugo/content/icons/arrow-left.md @@ -0,0 +1,5 @@ +--- +title: Arrow Left +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-pointer.md b/hugo/content/icons/arrow-pointer.md new file mode 100644 index 0000000..7c7f1db --- /dev/null +++ b/hugo/content/icons/arrow-pointer.md @@ -0,0 +1,5 @@ +--- +title: Arrow Pointer +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-right-from-bracket.md b/hugo/content/icons/arrow-right-from-bracket.md new file mode 100644 index 0000000..a51c136 --- /dev/null +++ b/hugo/content/icons/arrow-right-from-bracket.md @@ -0,0 +1,5 @@ +--- +title: Arrow Right From Bracket +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-right-to-bracket.md b/hugo/content/icons/arrow-right-to-bracket.md new file mode 100644 index 0000000..4ebfa39 --- /dev/null +++ b/hugo/content/icons/arrow-right-to-bracket.md @@ -0,0 +1,5 @@ +--- +title: Arrow Right To Bracket +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-right-to-line.md b/hugo/content/icons/arrow-right-to-line.md new file mode 100644 index 0000000..63ba8af --- /dev/null +++ b/hugo/content/icons/arrow-right-to-line.md @@ -0,0 +1,5 @@ +--- +title: Arrow Right To Line +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-right.md b/hugo/content/icons/arrow-right.md new file mode 100644 index 0000000..d83861d --- /dev/null +++ b/hugo/content/icons/arrow-right.md @@ -0,0 +1,5 @@ +--- +title: Arrow Right +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-rotate-right.md b/hugo/content/icons/arrow-rotate-right.md new file mode 100644 index 0000000..6a64d0b --- /dev/null +++ b/hugo/content/icons/arrow-rotate-right.md @@ -0,0 +1,5 @@ +--- +title: Arrow Rotate Right +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-up-short-wide.md b/hugo/content/icons/arrow-up-short-wide.md new file mode 100644 index 0000000..ffe9113 --- /dev/null +++ b/hugo/content/icons/arrow-up-short-wide.md @@ -0,0 +1,5 @@ +--- +title: Arrow Up Short Wide +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-up-to-line.md b/hugo/content/icons/arrow-up-to-line.md new file mode 100644 index 0000000..9bd3c7b --- /dev/null +++ b/hugo/content/icons/arrow-up-to-line.md @@ -0,0 +1,5 @@ +--- +title: Arrow Up To Line +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-up-wide-short.md b/hugo/content/icons/arrow-up-wide-short.md new file mode 100644 index 0000000..32f5cc9 --- /dev/null +++ b/hugo/content/icons/arrow-up-wide-short.md @@ -0,0 +1,5 @@ +--- +title: Arrow Up Wide Short +tags: +categories: +--- diff --git a/hugo/content/icons/arrow-up.md b/hugo/content/icons/arrow-up.md new file mode 100644 index 0000000..bb527b3 --- /dev/null +++ b/hugo/content/icons/arrow-up.md @@ -0,0 +1,5 @@ +--- +title: Arrow Up +tags: +categories: +--- diff --git a/hugo/content/icons/arrows-rotate-right.md b/hugo/content/icons/arrows-rotate-right.md new file mode 100644 index 0000000..5152abe --- /dev/null +++ b/hugo/content/icons/arrows-rotate-right.md @@ -0,0 +1,5 @@ +--- +title: Arrows Rotate Right +tags: +categories: +--- diff --git a/hugo/content/icons/asterisk.md b/hugo/content/icons/asterisk.md new file mode 100644 index 0000000..4c4cf8f --- /dev/null +++ b/hugo/content/icons/asterisk.md @@ -0,0 +1,5 @@ +--- +title: Asterisk +tags: +categories: +--- diff --git a/hugo/content/icons/at.md b/hugo/content/icons/at.md new file mode 100644 index 0000000..4b69887 --- /dev/null +++ b/hugo/content/icons/at.md @@ -0,0 +1,5 @@ +--- +title: At +tags: +categories: +--- diff --git a/hugo/content/icons/azure.md b/hugo/content/icons/azure.md new file mode 100644 index 0000000..34c4d1e --- /dev/null +++ b/hugo/content/icons/azure.md @@ -0,0 +1,5 @@ +--- +title: Azure +tags: +categories: +--- diff --git a/hugo/content/icons/backward.md b/hugo/content/icons/backward.md new file mode 100644 index 0000000..4586e90 --- /dev/null +++ b/hugo/content/icons/backward.md @@ -0,0 +1,5 @@ +--- +title: Backward +tags: +categories: +--- diff --git a/hugo/content/icons/bars-staggered.md b/hugo/content/icons/bars-staggered.md new file mode 100644 index 0000000..42a63c6 --- /dev/null +++ b/hugo/content/icons/bars-staggered.md @@ -0,0 +1,5 @@ +--- +title: Bars Staggered +tags: +categories: +--- diff --git a/hugo/content/icons/bars.md b/hugo/content/icons/bars.md new file mode 100644 index 0000000..f496541 --- /dev/null +++ b/hugo/content/icons/bars.md @@ -0,0 +1,5 @@ +--- +title: Bars +tags: +categories: +--- diff --git a/hugo/content/icons/bel.md b/hugo/content/icons/bel.md new file mode 100644 index 0000000..6cfd412 --- /dev/null +++ b/hugo/content/icons/bel.md @@ -0,0 +1,5 @@ +--- +title: Bel +tags: +categories: +--- diff --git a/hugo/content/icons/blf.md b/hugo/content/icons/blf.md new file mode 100644 index 0000000..e760466 --- /dev/null +++ b/hugo/content/icons/blf.md @@ -0,0 +1,5 @@ +--- +title: Blf +tags: +categories: +--- diff --git a/hugo/content/icons/book.md b/hugo/content/icons/book.md new file mode 100644 index 0000000..aa167bd --- /dev/null +++ b/hugo/content/icons/book.md @@ -0,0 +1,5 @@ +--- +title: Book +tags: +categories: +--- diff --git a/hugo/content/icons/box-open-full.md b/hugo/content/icons/box-open-full.md new file mode 100644 index 0000000..eadcbff --- /dev/null +++ b/hugo/content/icons/box-open-full.md @@ -0,0 +1,5 @@ +--- +title: Box Open Full +tags: +categories: +--- diff --git a/hugo/content/icons/box.md b/hugo/content/icons/box.md new file mode 100644 index 0000000..e9f14da --- /dev/null +++ b/hugo/content/icons/box.md @@ -0,0 +1,5 @@ +--- +title: Box +tags: +categories: +--- diff --git a/hugo/content/icons/branch-up.md b/hugo/content/icons/branch-up.md new file mode 100644 index 0000000..a70fe33 --- /dev/null +++ b/hugo/content/icons/branch-up.md @@ -0,0 +1,5 @@ +--- +title: Branch Up +tags: +categories: +--- diff --git a/hugo/content/icons/branch.md b/hugo/content/icons/branch.md new file mode 100644 index 0000000..1fe98ef --- /dev/null +++ b/hugo/content/icons/branch.md @@ -0,0 +1,5 @@ +--- +title: Branch +tags: +categories: +--- diff --git a/hugo/content/icons/bug.md b/hugo/content/icons/bug.md new file mode 100644 index 0000000..5b4e9c4 --- /dev/null +++ b/hugo/content/icons/bug.md @@ -0,0 +1,5 @@ +--- +title: Bug +tags: +categories: +--- diff --git a/hugo/content/icons/building.md b/hugo/content/icons/building.md new file mode 100644 index 0000000..8678592 --- /dev/null +++ b/hugo/content/icons/building.md @@ -0,0 +1,5 @@ +--- +title: Building +tags: +categories: +--- diff --git a/hugo/content/icons/calendar-agenda.md b/hugo/content/icons/calendar-agenda.md new file mode 100644 index 0000000..94f90eb --- /dev/null +++ b/hugo/content/icons/calendar-agenda.md @@ -0,0 +1,5 @@ +--- +title: Calendar Agenda +tags: +categories: +--- diff --git a/hugo/content/icons/calendar-day.md b/hugo/content/icons/calendar-day.md new file mode 100644 index 0000000..83cdda8 --- /dev/null +++ b/hugo/content/icons/calendar-day.md @@ -0,0 +1,5 @@ +--- +title: Calendar Day +tags: +categories: +--- diff --git a/hugo/content/icons/calendar-month.md b/hugo/content/icons/calendar-month.md new file mode 100644 index 0000000..226a4e4 --- /dev/null +++ b/hugo/content/icons/calendar-month.md @@ -0,0 +1,5 @@ +--- +title: Calendar Month +tags: +categories: +--- diff --git a/hugo/content/icons/calendar-stars.md b/hugo/content/icons/calendar-stars.md new file mode 100644 index 0000000..46946d8 --- /dev/null +++ b/hugo/content/icons/calendar-stars.md @@ -0,0 +1,5 @@ +--- +title: Calendar Stars +tags: +categories: +--- diff --git a/hugo/content/icons/calendar-week.md b/hugo/content/icons/calendar-week.md new file mode 100644 index 0000000..67e4502 --- /dev/null +++ b/hugo/content/icons/calendar-week.md @@ -0,0 +1,5 @@ +--- +title: Calendar Week +tags: +categories: +--- diff --git a/hugo/content/icons/calendar.md b/hugo/content/icons/calendar.md new file mode 100644 index 0000000..ca54d25 --- /dev/null +++ b/hugo/content/icons/calendar.md @@ -0,0 +1,5 @@ +--- +title: Calendar +tags: +categories: +--- diff --git a/hugo/content/icons/changewindows-can.md b/hugo/content/icons/changewindows-can.md new file mode 100644 index 0000000..fa81fc7 --- /dev/null +++ b/hugo/content/icons/changewindows-can.md @@ -0,0 +1,5 @@ +--- +title: Changewindows Can +tags: +categories: +--- diff --git a/hugo/content/icons/changewindows-dev.md b/hugo/content/icons/changewindows-dev.md new file mode 100644 index 0000000..86cb237 --- /dev/null +++ b/hugo/content/icons/changewindows-dev.md @@ -0,0 +1,5 @@ +--- +title: Changewindows Dev +tags: +categories: +--- diff --git a/hugo/content/icons/changewindows.md b/hugo/content/icons/changewindows.md new file mode 100644 index 0000000..1b57763 --- /dev/null +++ b/hugo/content/icons/changewindows.md @@ -0,0 +1,5 @@ +--- +title: Changewindows +tags: +categories: +--- diff --git a/hugo/content/icons/chart-pie.md b/hugo/content/icons/chart-pie.md new file mode 100644 index 0000000..a8bed2f --- /dev/null +++ b/hugo/content/icons/chart-pie.md @@ -0,0 +1,5 @@ +--- +title: Chart Pie +tags: +categories: +--- diff --git a/hugo/content/icons/check.md b/hugo/content/icons/check.md new file mode 100644 index 0000000..8325284 --- /dev/null +++ b/hugo/content/icons/check.md @@ -0,0 +1,5 @@ +--- +title: Check +tags: +categories: +--- diff --git a/hugo/content/icons/chevron-down.md b/hugo/content/icons/chevron-down.md new file mode 100644 index 0000000..77f954a --- /dev/null +++ b/hugo/content/icons/chevron-down.md @@ -0,0 +1,5 @@ +--- +title: Chevron Down +tags: +categories: +--- diff --git a/hugo/content/icons/chevron-left.md b/hugo/content/icons/chevron-left.md new file mode 100644 index 0000000..dd6e096 --- /dev/null +++ b/hugo/content/icons/chevron-left.md @@ -0,0 +1,5 @@ +--- +title: Chevron Left +tags: +categories: +--- diff --git a/hugo/content/icons/chevron-right.md b/hugo/content/icons/chevron-right.md new file mode 100644 index 0000000..10ca1b8 --- /dev/null +++ b/hugo/content/icons/chevron-right.md @@ -0,0 +1,5 @@ +--- +title: Chevron Right +tags: +categories: +--- diff --git a/hugo/content/icons/chevron-up.md b/hugo/content/icons/chevron-up.md new file mode 100644 index 0000000..b692f2f --- /dev/null +++ b/hugo/content/icons/chevron-up.md @@ -0,0 +1,5 @@ +--- +title: Chevron Up +tags: +categories: +--- diff --git a/hugo/content/icons/chip.md b/hugo/content/icons/chip.md new file mode 100644 index 0000000..d5d9e26 --- /dev/null +++ b/hugo/content/icons/chip.md @@ -0,0 +1,5 @@ +--- +title: Chip +tags: +categories: +--- diff --git a/hugo/content/icons/chrome.md b/hugo/content/icons/chrome.md new file mode 100644 index 0000000..1647b68 --- /dev/null +++ b/hugo/content/icons/chrome.md @@ -0,0 +1,5 @@ +--- +title: Chrome +tags: +categories: +--- diff --git a/hugo/content/icons/circle-check.md b/hugo/content/icons/circle-check.md new file mode 100644 index 0000000..7ebc512 --- /dev/null +++ b/hugo/content/icons/circle-check.md @@ -0,0 +1,5 @@ +--- +title: Circle Check +tags: +categories: +--- diff --git a/hugo/content/icons/circle-exclamation.md b/hugo/content/icons/circle-exclamation.md new file mode 100644 index 0000000..b3f48bb --- /dev/null +++ b/hugo/content/icons/circle-exclamation.md @@ -0,0 +1,5 @@ +--- +title: Circle Exclamation +tags: +categories: +--- diff --git a/hugo/content/icons/circle-info.md b/hugo/content/icons/circle-info.md new file mode 100644 index 0000000..834e7de --- /dev/null +++ b/hugo/content/icons/circle-info.md @@ -0,0 +1,5 @@ +--- +title: Circle Info +tags: +categories: +--- diff --git a/hugo/content/icons/circle-plus.md b/hugo/content/icons/circle-plus.md new file mode 100644 index 0000000..5b95fab --- /dev/null +++ b/hugo/content/icons/circle-plus.md @@ -0,0 +1,5 @@ +--- +title: Circle Plus +tags: +categories: +--- diff --git a/hugo/content/icons/circle-question.md b/hugo/content/icons/circle-question.md new file mode 100644 index 0000000..9d3175d --- /dev/null +++ b/hugo/content/icons/circle-question.md @@ -0,0 +1,5 @@ +--- +title: Circle Question +tags: +categories: +--- diff --git a/hugo/content/icons/circle-user.md b/hugo/content/icons/circle-user.md new file mode 100644 index 0000000..9d522c0 --- /dev/null +++ b/hugo/content/icons/circle-user.md @@ -0,0 +1,5 @@ +--- +title: Circle User +tags: +categories: +--- diff --git a/hugo/content/icons/circle-xmark.md b/hugo/content/icons/circle-xmark.md new file mode 100644 index 0000000..96222e0 --- /dev/null +++ b/hugo/content/icons/circle-xmark.md @@ -0,0 +1,5 @@ +--- +title: Circle Xmark +tags: +categories: +--- diff --git a/hugo/content/icons/city.md b/hugo/content/icons/city.md new file mode 100644 index 0000000..7a6914a --- /dev/null +++ b/hugo/content/icons/city.md @@ -0,0 +1,5 @@ +--- +title: City +tags: +categories: +--- diff --git a/hugo/content/icons/clock-rotate-left.md b/hugo/content/icons/clock-rotate-left.md new file mode 100644 index 0000000..1dabfff --- /dev/null +++ b/hugo/content/icons/clock-rotate-left.md @@ -0,0 +1,5 @@ +--- +title: Clock Rotate Left +tags: +categories: +--- diff --git a/hugo/content/icons/clock.md b/hugo/content/icons/clock.md new file mode 100644 index 0000000..811598e --- /dev/null +++ b/hugo/content/icons/clock.md @@ -0,0 +1,5 @@ +--- +title: Clock +tags: +categories: +--- diff --git a/hugo/content/icons/cmd.md b/hugo/content/icons/cmd.md new file mode 100644 index 0000000..06267ca --- /dev/null +++ b/hugo/content/icons/cmd.md @@ -0,0 +1,5 @@ +--- +title: Cmd +tags: +categories: +--- diff --git a/hugo/content/icons/code.md b/hugo/content/icons/code.md new file mode 100644 index 0000000..da3b9fb --- /dev/null +++ b/hugo/content/icons/code.md @@ -0,0 +1,5 @@ +--- +title: Code +tags: +categories: +--- diff --git a/hugo/content/icons/compass.md b/hugo/content/icons/compass.md new file mode 100644 index 0000000..1885623 --- /dev/null +++ b/hugo/content/icons/compass.md @@ -0,0 +1,5 @@ +--- +title: Compass +tags: +categories: +--- diff --git a/hugo/content/icons/compress.md b/hugo/content/icons/compress.md new file mode 100644 index 0000000..5820e4b --- /dev/null +++ b/hugo/content/icons/compress.md @@ -0,0 +1,5 @@ +--- +title: Compress +tags: +categories: +--- diff --git a/hugo/content/icons/copy.md b/hugo/content/icons/copy.md new file mode 100644 index 0000000..0eb5909 --- /dev/null +++ b/hugo/content/icons/copy.md @@ -0,0 +1,5 @@ +--- +title: Copy +tags: +categories: +--- diff --git a/hugo/content/icons/dashboard.md b/hugo/content/icons/dashboard.md new file mode 100644 index 0000000..b1228b0 --- /dev/null +++ b/hugo/content/icons/dashboard.md @@ -0,0 +1,5 @@ +--- +title: Dashboard +tags: +categories: +--- diff --git a/hugo/content/icons/devices.md b/hugo/content/icons/devices.md new file mode 100644 index 0000000..1471501 --- /dev/null +++ b/hugo/content/icons/devices.md @@ -0,0 +1,5 @@ +--- +title: Devices +tags: +categories: +--- diff --git a/hugo/content/icons/disc.md b/hugo/content/icons/disc.md new file mode 100644 index 0000000..5f7694a --- /dev/null +++ b/hugo/content/icons/disc.md @@ -0,0 +1,5 @@ +--- +title: Disc +tags: +categories: +--- diff --git a/hugo/content/icons/display-cam.md b/hugo/content/icons/display-cam.md new file mode 100644 index 0000000..7c56547 --- /dev/null +++ b/hugo/content/icons/display-cam.md @@ -0,0 +1,5 @@ +--- +title: Display Cam +tags: +categories: +--- diff --git a/hugo/content/icons/display.md b/hugo/content/icons/display.md new file mode 100644 index 0000000..dc70c8c --- /dev/null +++ b/hugo/content/icons/display.md @@ -0,0 +1,5 @@ +--- +title: Display +tags: +categories: +--- diff --git a/hugo/content/icons/earth.md b/hugo/content/icons/earth.md new file mode 100644 index 0000000..3eacd87 --- /dev/null +++ b/hugo/content/icons/earth.md @@ -0,0 +1,5 @@ +--- +title: Earth +tags: +categories: +--- diff --git a/hugo/content/icons/eclipse.md b/hugo/content/icons/eclipse.md new file mode 100644 index 0000000..ec563a7 --- /dev/null +++ b/hugo/content/icons/eclipse.md @@ -0,0 +1,5 @@ +--- +title: Eclipse +tags: +categories: +--- diff --git a/hugo/content/icons/edge.md b/hugo/content/icons/edge.md new file mode 100644 index 0000000..ca00959 --- /dev/null +++ b/hugo/content/icons/edge.md @@ -0,0 +1,5 @@ +--- +title: Edge +tags: +categories: +--- diff --git a/hugo/content/icons/ellipsis-v.md b/hugo/content/icons/ellipsis-v.md new file mode 100644 index 0000000..7de4326 --- /dev/null +++ b/hugo/content/icons/ellipsis-v.md @@ -0,0 +1,5 @@ +--- +title: Ellipsis V +tags: +categories: +--- diff --git a/hugo/content/icons/ellipsis.md b/hugo/content/icons/ellipsis.md new file mode 100644 index 0000000..d3eff39 --- /dev/null +++ b/hugo/content/icons/ellipsis.md @@ -0,0 +1,5 @@ +--- +title: Ellipsis +tags: +categories: +--- diff --git a/hugo/content/icons/envelope.md b/hugo/content/icons/envelope.md new file mode 100644 index 0000000..c6fdc54 --- /dev/null +++ b/hugo/content/icons/envelope.md @@ -0,0 +1,5 @@ +--- +title: Envelope +tags: +categories: +--- diff --git a/hugo/content/icons/ethernet.md b/hugo/content/icons/ethernet.md new file mode 100644 index 0000000..4d3dfc1 --- /dev/null +++ b/hugo/content/icons/ethernet.md @@ -0,0 +1,5 @@ +--- +title: Ethernet +tags: +categories: +--- diff --git a/hugo/content/icons/euro.md b/hugo/content/icons/euro.md new file mode 100644 index 0000000..bb6908f --- /dev/null +++ b/hugo/content/icons/euro.md @@ -0,0 +1,5 @@ +--- +title: Euro +tags: +categories: +--- diff --git a/hugo/content/icons/expand.md b/hugo/content/icons/expand.md new file mode 100644 index 0000000..5bd4125 --- /dev/null +++ b/hugo/content/icons/expand.md @@ -0,0 +1,5 @@ +--- +title: Expand +tags: +categories: +--- diff --git a/hugo/content/icons/eye-slash.md b/hugo/content/icons/eye-slash.md new file mode 100644 index 0000000..84f5ddf --- /dev/null +++ b/hugo/content/icons/eye-slash.md @@ -0,0 +1,5 @@ +--- +title: Eye Slash +tags: +categories: +--- diff --git a/hugo/content/icons/eye.md b/hugo/content/icons/eye.md new file mode 100644 index 0000000..4e7437d --- /dev/null +++ b/hugo/content/icons/eye.md @@ -0,0 +1,5 @@ +--- +title: Eye +tags: +categories: +--- diff --git a/hugo/content/icons/facebook-messenger.md b/hugo/content/icons/facebook-messenger.md new file mode 100644 index 0000000..e60e393 --- /dev/null +++ b/hugo/content/icons/facebook-messenger.md @@ -0,0 +1,5 @@ +--- +title: Facebook Messenger +tags: +categories: +--- diff --git a/hugo/content/icons/facebook.md b/hugo/content/icons/facebook.md new file mode 100644 index 0000000..9a4545a --- /dev/null +++ b/hugo/content/icons/facebook.md @@ -0,0 +1,5 @@ +--- +title: Facebook +tags: +categories: +--- diff --git a/hugo/content/icons/fast-backward.md b/hugo/content/icons/fast-backward.md new file mode 100644 index 0000000..34ce9c4 --- /dev/null +++ b/hugo/content/icons/fast-backward.md @@ -0,0 +1,5 @@ +--- +title: Fast Backward +tags: +categories: +--- diff --git a/hugo/content/icons/fast-forward.md b/hugo/content/icons/fast-forward.md new file mode 100644 index 0000000..6f1d0b5 --- /dev/null +++ b/hugo/content/icons/fast-forward.md @@ -0,0 +1,5 @@ +--- +title: Fast Forward +tags: +categories: +--- diff --git a/hugo/content/icons/fax.md b/hugo/content/icons/fax.md new file mode 100644 index 0000000..cebfec0 --- /dev/null +++ b/hugo/content/icons/fax.md @@ -0,0 +1,5 @@ +--- +title: Fax +tags: +categories: +--- diff --git a/hugo/content/icons/file.md b/hugo/content/icons/file.md new file mode 100644 index 0000000..9929f8e --- /dev/null +++ b/hugo/content/icons/file.md @@ -0,0 +1,5 @@ +--- +title: File +tags: +categories: +--- diff --git a/hugo/content/icons/files.md b/hugo/content/icons/files.md new file mode 100644 index 0000000..52e8d38 --- /dev/null +++ b/hugo/content/icons/files.md @@ -0,0 +1,5 @@ +--- +title: Files +tags: +categories: +--- diff --git a/hugo/content/icons/film.md b/hugo/content/icons/film.md new file mode 100644 index 0000000..8def5a2 --- /dev/null +++ b/hugo/content/icons/film.md @@ -0,0 +1,5 @@ +--- +title: Film +tags: +categories: +--- diff --git a/hugo/content/icons/filter-plus.md b/hugo/content/icons/filter-plus.md new file mode 100644 index 0000000..281d6da --- /dev/null +++ b/hugo/content/icons/filter-plus.md @@ -0,0 +1,5 @@ +--- +title: Filter Plus +tags: +categories: +--- diff --git a/hugo/content/icons/filter-xmark.md b/hugo/content/icons/filter-xmark.md new file mode 100644 index 0000000..2317f5d --- /dev/null +++ b/hugo/content/icons/filter-xmark.md @@ -0,0 +1,5 @@ +--- +title: Filter Xmark +tags: +categories: +--- diff --git a/hugo/content/icons/filter.md b/hugo/content/icons/filter.md new file mode 100644 index 0000000..42ed92f --- /dev/null +++ b/hugo/content/icons/filter.md @@ -0,0 +1,5 @@ +--- +title: Filter +tags: +categories: +--- diff --git a/hugo/content/icons/fingerprint.md b/hugo/content/icons/fingerprint.md new file mode 100644 index 0000000..9c82e16 --- /dev/null +++ b/hugo/content/icons/fingerprint.md @@ -0,0 +1,5 @@ +--- +title: Fingerprint +tags: +categories: +--- diff --git a/hugo/content/icons/firefox.md b/hugo/content/icons/firefox.md new file mode 100644 index 0000000..1afb8d5 --- /dev/null +++ b/hugo/content/icons/firefox.md @@ -0,0 +1,5 @@ +--- +title: Firefox +tags: +categories: +--- diff --git a/hugo/content/icons/flag-checkered.md b/hugo/content/icons/flag-checkered.md new file mode 100644 index 0000000..83e63e1 --- /dev/null +++ b/hugo/content/icons/flag-checkered.md @@ -0,0 +1,5 @@ +--- +title: Flag Checkered +tags: +categories: +--- diff --git a/hugo/content/icons/flag.md b/hugo/content/icons/flag.md new file mode 100644 index 0000000..e12909b --- /dev/null +++ b/hugo/content/icons/flag.md @@ -0,0 +1,5 @@ +--- +title: Flag +tags: +categories: +--- diff --git a/hugo/content/icons/floppy-disk.md b/hugo/content/icons/floppy-disk.md new file mode 100644 index 0000000..39f5b86 --- /dev/null +++ b/hugo/content/icons/floppy-disk.md @@ -0,0 +1,5 @@ +--- +title: Floppy Disk +tags: +categories: +--- diff --git a/hugo/content/icons/foldable.md b/hugo/content/icons/foldable.md new file mode 100644 index 0000000..fe61cc4 --- /dev/null +++ b/hugo/content/icons/foldable.md @@ -0,0 +1,5 @@ +--- +title: Foldable +tags: +categories: +--- diff --git a/hugo/content/icons/folder-image.md b/hugo/content/icons/folder-image.md new file mode 100644 index 0000000..7b6c17d --- /dev/null +++ b/hugo/content/icons/folder-image.md @@ -0,0 +1,5 @@ +--- +title: Folder Image +tags: +categories: +--- diff --git a/hugo/content/icons/folder.md b/hugo/content/icons/folder.md new file mode 100644 index 0000000..6386121 --- /dev/null +++ b/hugo/content/icons/folder.md @@ -0,0 +1,5 @@ +--- +title: Folder +tags: +categories: +--- diff --git a/hugo/content/icons/forward.md b/hugo/content/icons/forward.md new file mode 100644 index 0000000..37c0daf --- /dev/null +++ b/hugo/content/icons/forward.md @@ -0,0 +1,5 @@ +--- +title: Forward +tags: +categories: +--- diff --git a/hugo/content/icons/gamepad.md b/hugo/content/icons/gamepad.md new file mode 100644 index 0000000..78295dd --- /dev/null +++ b/hugo/content/icons/gamepad.md @@ -0,0 +1,5 @@ +--- +title: Gamepad +tags: +categories: +--- diff --git a/hugo/content/icons/gauge.md b/hugo/content/icons/gauge.md new file mode 100644 index 0000000..7b1b82c --- /dev/null +++ b/hugo/content/icons/gauge.md @@ -0,0 +1,5 @@ +--- +title: Gauge +tags: +categories: +--- diff --git a/hugo/content/icons/gear.md b/hugo/content/icons/gear.md new file mode 100644 index 0000000..43bff6b --- /dev/null +++ b/hugo/content/icons/gear.md @@ -0,0 +1,5 @@ +--- +title: Gear +tags: +categories: +--- diff --git a/hugo/content/icons/gift.md b/hugo/content/icons/gift.md new file mode 100644 index 0000000..789a13c --- /dev/null +++ b/hugo/content/icons/gift.md @@ -0,0 +1,5 @@ +--- +title: Gift +tags: +categories: +--- diff --git a/hugo/content/icons/github.md b/hugo/content/icons/github.md new file mode 100644 index 0000000..896d3e3 --- /dev/null +++ b/hugo/content/icons/github.md @@ -0,0 +1,5 @@ +--- +title: Github +tags: +categories: +--- diff --git a/hugo/content/icons/google-play.md b/hugo/content/icons/google-play.md new file mode 100644 index 0000000..af5a05a --- /dev/null +++ b/hugo/content/icons/google-play.md @@ -0,0 +1,5 @@ +--- +title: Google Play +tags: +categories: +--- diff --git a/hugo/content/icons/grid.md b/hugo/content/icons/grid.md new file mode 100644 index 0000000..52d1431 --- /dev/null +++ b/hugo/content/icons/grid.md @@ -0,0 +1,5 @@ +--- +title: Grid +tags: +categories: +--- diff --git a/hugo/content/icons/grip-lines.md b/hugo/content/icons/grip-lines.md new file mode 100644 index 0000000..81842e9 --- /dev/null +++ b/hugo/content/icons/grip-lines.md @@ -0,0 +1,5 @@ +--- +title: Grip Lines +tags: +categories: +--- diff --git a/hugo/content/icons/headset.md b/hugo/content/icons/headset.md new file mode 100644 index 0000000..1a01aee --- /dev/null +++ b/hugo/content/icons/headset.md @@ -0,0 +1,5 @@ +--- +title: Headset +tags: +categories: +--- diff --git a/hugo/content/icons/heart-crack.md b/hugo/content/icons/heart-crack.md new file mode 100644 index 0000000..e1f8c77 --- /dev/null +++ b/hugo/content/icons/heart-crack.md @@ -0,0 +1,5 @@ +--- +title: Heart Crack +tags: +categories: +--- diff --git a/hugo/content/icons/heart-half.md b/hugo/content/icons/heart-half.md new file mode 100644 index 0000000..4990653 --- /dev/null +++ b/hugo/content/icons/heart-half.md @@ -0,0 +1,5 @@ +--- +title: Heart Half +tags: +categories: +--- diff --git a/hugo/content/icons/heart.md b/hugo/content/icons/heart.md new file mode 100644 index 0000000..ada5f3d --- /dev/null +++ b/hugo/content/icons/heart.md @@ -0,0 +1,5 @@ +--- +title: Heart +tags: +categories: +--- diff --git a/hugo/content/icons/hourglass-empty.md b/hugo/content/icons/hourglass-empty.md new file mode 100644 index 0000000..e277e12 --- /dev/null +++ b/hugo/content/icons/hourglass-empty.md @@ -0,0 +1,5 @@ +--- +title: Hourglass Empty +tags: +categories: +--- diff --git a/hugo/content/icons/hourglass-end.md b/hugo/content/icons/hourglass-end.md new file mode 100644 index 0000000..2bfb5d8 --- /dev/null +++ b/hugo/content/icons/hourglass-end.md @@ -0,0 +1,5 @@ +--- +title: Hourglass End +tags: +categories: +--- diff --git a/hugo/content/icons/hourglass-start.md b/hugo/content/icons/hourglass-start.md new file mode 100644 index 0000000..e86af82 --- /dev/null +++ b/hugo/content/icons/hourglass-start.md @@ -0,0 +1,5 @@ +--- +title: Hourglass Start +tags: +categories: +--- diff --git a/hugo/content/icons/hourglass.md b/hugo/content/icons/hourglass.md new file mode 100644 index 0000000..e7c7d59 --- /dev/null +++ b/hugo/content/icons/hourglass.md @@ -0,0 +1,5 @@ +--- +title: Hourglass +tags: +categories: +--- diff --git a/hugo/content/icons/house.md b/hugo/content/icons/house.md new file mode 100644 index 0000000..f27bfdc --- /dev/null +++ b/hugo/content/icons/house.md @@ -0,0 +1,5 @@ +--- +title: House +tags: +categories: +--- diff --git a/hugo/content/icons/id-card.md b/hugo/content/icons/id-card.md new file mode 100644 index 0000000..2a70562 --- /dev/null +++ b/hugo/content/icons/id-card.md @@ -0,0 +1,5 @@ +--- +title: Id Card +tags: +categories: +--- diff --git a/hugo/content/icons/image.md b/hugo/content/icons/image.md new file mode 100644 index 0000000..50cc8df --- /dev/null +++ b/hugo/content/icons/image.md @@ -0,0 +1,5 @@ +--- +title: Image +tags: +categories: +--- diff --git a/hugo/content/icons/laptop.md b/hugo/content/icons/laptop.md new file mode 100644 index 0000000..a964d01 --- /dev/null +++ b/hugo/content/icons/laptop.md @@ -0,0 +1,5 @@ +--- +title: Laptop +tags: +categories: +--- diff --git a/hugo/content/icons/layers-plus.md b/hugo/content/icons/layers-plus.md new file mode 100644 index 0000000..e71fc18 --- /dev/null +++ b/hugo/content/icons/layers-plus.md @@ -0,0 +1,5 @@ +--- +title: Layers Plus +tags: +categories: +--- diff --git a/hugo/content/icons/layers.md b/hugo/content/icons/layers.md new file mode 100644 index 0000000..c307814 --- /dev/null +++ b/hugo/content/icons/layers.md @@ -0,0 +1,5 @@ +--- +title: Layers +tags: +categories: +--- diff --git a/hugo/content/icons/lightbulb-on.md b/hugo/content/icons/lightbulb-on.md new file mode 100644 index 0000000..317473f --- /dev/null +++ b/hugo/content/icons/lightbulb-on.md @@ -0,0 +1,5 @@ +--- +title: Lightbulb On +tags: +categories: +--- diff --git a/hugo/content/icons/lightbulb.md b/hugo/content/icons/lightbulb.md new file mode 100644 index 0000000..bde4620 --- /dev/null +++ b/hugo/content/icons/lightbulb.md @@ -0,0 +1,5 @@ +--- +title: Lightbulb +tags: +categories: +--- diff --git a/hugo/content/icons/link-slash.md b/hugo/content/icons/link-slash.md new file mode 100644 index 0000000..3969eb2 --- /dev/null +++ b/hugo/content/icons/link-slash.md @@ -0,0 +1,5 @@ +--- +title: Link Slash +tags: +categories: +--- diff --git a/hugo/content/icons/link.md b/hugo/content/icons/link.md new file mode 100644 index 0000000..278ee4c --- /dev/null +++ b/hugo/content/icons/link.md @@ -0,0 +1,5 @@ +--- +title: Link +tags: +categories: +--- diff --git a/hugo/content/icons/linkedin.md b/hugo/content/icons/linkedin.md new file mode 100644 index 0000000..2dc2cee --- /dev/null +++ b/hugo/content/icons/linkedin.md @@ -0,0 +1,5 @@ +--- +title: Linkedin +tags: +categories: +--- diff --git a/hugo/content/icons/list-check.md b/hugo/content/icons/list-check.md new file mode 100644 index 0000000..2558d77 --- /dev/null +++ b/hugo/content/icons/list-check.md @@ -0,0 +1,5 @@ +--- +title: List Check +tags: +categories: +--- diff --git a/hugo/content/icons/list-ol.md b/hugo/content/icons/list-ol.md new file mode 100644 index 0000000..d39b698 --- /dev/null +++ b/hugo/content/icons/list-ol.md @@ -0,0 +1,5 @@ +--- +title: List Ol +tags: +categories: +--- diff --git a/hugo/content/icons/list.md b/hugo/content/icons/list.md new file mode 100644 index 0000000..b90297b --- /dev/null +++ b/hugo/content/icons/list.md @@ -0,0 +1,5 @@ +--- +title: List +tags: +categories: +--- diff --git a/hugo/content/icons/location-pin-dot.md b/hugo/content/icons/location-pin-dot.md new file mode 100644 index 0000000..4bf5bd9 --- /dev/null +++ b/hugo/content/icons/location-pin-dot.md @@ -0,0 +1,5 @@ +--- +title: Location Pin Dot +tags: +categories: +--- diff --git a/hugo/content/icons/location-pin-slash.md b/hugo/content/icons/location-pin-slash.md new file mode 100644 index 0000000..c15ee31 --- /dev/null +++ b/hugo/content/icons/location-pin-slash.md @@ -0,0 +1,5 @@ +--- +title: Location Pin Slash +tags: +categories: +--- diff --git a/hugo/content/icons/location-pin.md b/hugo/content/icons/location-pin.md new file mode 100644 index 0000000..14b5eda --- /dev/null +++ b/hugo/content/icons/location-pin.md @@ -0,0 +1,5 @@ +--- +title: Location Pin +tags: +categories: +--- diff --git a/hugo/content/icons/location-pins-route.md b/hugo/content/icons/location-pins-route.md new file mode 100644 index 0000000..7e640bf --- /dev/null +++ b/hugo/content/icons/location-pins-route.md @@ -0,0 +1,5 @@ +--- +title: Location Pins Route +tags: +categories: +--- diff --git a/hugo/content/icons/lock.md b/hugo/content/icons/lock.md new file mode 100644 index 0000000..ceb33c4 --- /dev/null +++ b/hugo/content/icons/lock.md @@ -0,0 +1,5 @@ +--- +title: Lock +tags: +categories: +--- diff --git a/hugo/content/icons/logs.md b/hugo/content/icons/logs.md new file mode 100644 index 0000000..d02b947 --- /dev/null +++ b/hugo/content/icons/logs.md @@ -0,0 +1,5 @@ +--- +title: Logs +tags: +categories: +--- diff --git a/hugo/content/icons/magnifying-glass.md b/hugo/content/icons/magnifying-glass.md new file mode 100644 index 0000000..440748c --- /dev/null +++ b/hugo/content/icons/magnifying-glass.md @@ -0,0 +1,5 @@ +--- +title: Magnifying Glass +tags: +categories: +--- diff --git a/hugo/content/icons/message-pen.md b/hugo/content/icons/message-pen.md new file mode 100644 index 0000000..a0dad32 --- /dev/null +++ b/hugo/content/icons/message-pen.md @@ -0,0 +1,5 @@ +--- +title: Message Pen +tags: +categories: +--- diff --git a/hugo/content/icons/message-smile.md b/hugo/content/icons/message-smile.md new file mode 100644 index 0000000..c93e7c5 --- /dev/null +++ b/hugo/content/icons/message-smile.md @@ -0,0 +1,5 @@ +--- +title: Message Smile +tags: +categories: +--- diff --git a/hugo/content/icons/message-text.md b/hugo/content/icons/message-text.md new file mode 100644 index 0000000..7c390c9 --- /dev/null +++ b/hugo/content/icons/message-text.md @@ -0,0 +1,5 @@ +--- +title: Message Text +tags: +categories: +--- diff --git a/hugo/content/icons/message.md b/hugo/content/icons/message.md new file mode 100644 index 0000000..55a0bb1 --- /dev/null +++ b/hugo/content/icons/message.md @@ -0,0 +1,5 @@ +--- +title: Message +tags: +categories: +--- diff --git a/hugo/content/icons/microphone.md b/hugo/content/icons/microphone.md new file mode 100644 index 0000000..c22e34c --- /dev/null +++ b/hugo/content/icons/microphone.md @@ -0,0 +1,5 @@ +--- +title: Microphone +tags: +categories: +--- diff --git a/hugo/content/icons/min.md b/hugo/content/icons/min.md new file mode 100644 index 0000000..ad502bd --- /dev/null +++ b/hugo/content/icons/min.md @@ -0,0 +1,5 @@ +--- +title: Min +tags: +categories: +--- diff --git a/hugo/content/icons/moon.md b/hugo/content/icons/moon.md new file mode 100644 index 0000000..118d697 --- /dev/null +++ b/hugo/content/icons/moon.md @@ -0,0 +1,5 @@ +--- +title: Moon +tags: +categories: +--- diff --git a/hugo/content/icons/music.md b/hugo/content/icons/music.md new file mode 100644 index 0000000..9ed9aef --- /dev/null +++ b/hugo/content/icons/music.md @@ -0,0 +1,5 @@ +--- +title: Music +tags: +categories: +--- diff --git a/hugo/content/icons/network.md b/hugo/content/icons/network.md new file mode 100644 index 0000000..e044b8c --- /dev/null +++ b/hugo/content/icons/network.md @@ -0,0 +1,5 @@ +--- +title: Network +tags: +categories: +--- diff --git a/hugo/content/icons/notes.md b/hugo/content/icons/notes.md new file mode 100644 index 0000000..875a386 --- /dev/null +++ b/hugo/content/icons/notes.md @@ -0,0 +1,5 @@ +--- +title: Notes +tags: +categories: +--- diff --git a/hugo/content/icons/numpad.md b/hugo/content/icons/numpad.md new file mode 100644 index 0000000..1513990 --- /dev/null +++ b/hugo/content/icons/numpad.md @@ -0,0 +1,5 @@ +--- +title: Numpad +tags: +categories: +--- diff --git a/hugo/content/icons/paper-plane-top.md b/hugo/content/icons/paper-plane-top.md new file mode 100644 index 0000000..7a1f6ac --- /dev/null +++ b/hugo/content/icons/paper-plane-top.md @@ -0,0 +1,5 @@ +--- +title: Paper Plane Top +tags: +categories: +--- diff --git a/hugo/content/icons/parachute-box.md b/hugo/content/icons/parachute-box.md new file mode 100644 index 0000000..183ba73 --- /dev/null +++ b/hugo/content/icons/parachute-box.md @@ -0,0 +1,5 @@ +--- +title: Parachute Box +tags: +categories: +--- diff --git a/hugo/content/icons/patreon.md b/hugo/content/icons/patreon.md new file mode 100644 index 0000000..e221ed6 --- /dev/null +++ b/hugo/content/icons/patreon.md @@ -0,0 +1,5 @@ +--- +title: Patreon +tags: +categories: +--- diff --git a/hugo/content/icons/pause.md b/hugo/content/icons/pause.md new file mode 100644 index 0000000..22552cc --- /dev/null +++ b/hugo/content/icons/pause.md @@ -0,0 +1,5 @@ +--- +title: Pause +tags: +categories: +--- diff --git a/hugo/content/icons/pen.md b/hugo/content/icons/pen.md new file mode 100644 index 0000000..1076ba8 --- /dev/null +++ b/hugo/content/icons/pen.md @@ -0,0 +1,5 @@ +--- +title: Pen +tags: +categories: +--- diff --git a/hugo/content/icons/phone-arrow-down-left.md b/hugo/content/icons/phone-arrow-down-left.md new file mode 100644 index 0000000..0473267 --- /dev/null +++ b/hugo/content/icons/phone-arrow-down-left.md @@ -0,0 +1,5 @@ +--- +title: Phone Arrow Down Left +tags: +categories: +--- diff --git a/hugo/content/icons/phone-arrow-up-right.md b/hugo/content/icons/phone-arrow-up-right.md new file mode 100644 index 0000000..5d9209a --- /dev/null +++ b/hugo/content/icons/phone-arrow-up-right.md @@ -0,0 +1,5 @@ +--- +title: Phone Arrow Up Right +tags: +categories: +--- diff --git a/hugo/content/icons/phone-gear.md b/hugo/content/icons/phone-gear.md new file mode 100644 index 0000000..ccf4350 --- /dev/null +++ b/hugo/content/icons/phone-gear.md @@ -0,0 +1,5 @@ +--- +title: Phone Gear +tags: +categories: +--- diff --git a/hugo/content/icons/phone-list.md b/hugo/content/icons/phone-list.md new file mode 100644 index 0000000..6f5a773 --- /dev/null +++ b/hugo/content/icons/phone-list.md @@ -0,0 +1,5 @@ +--- +title: Phone List +tags: +categories: +--- diff --git a/hugo/content/icons/phone-office.md b/hugo/content/icons/phone-office.md new file mode 100644 index 0000000..247d591 --- /dev/null +++ b/hugo/content/icons/phone-office.md @@ -0,0 +1,5 @@ +--- +title: Phone Office +tags: +categories: +--- diff --git a/hugo/content/icons/phone-volume.md b/hugo/content/icons/phone-volume.md new file mode 100644 index 0000000..429c54b --- /dev/null +++ b/hugo/content/icons/phone-volume.md @@ -0,0 +1,5 @@ +--- +title: Phone Volume +tags: +categories: +--- diff --git a/hugo/content/icons/phone.md b/hugo/content/icons/phone.md new file mode 100644 index 0000000..8d1c3a1 --- /dev/null +++ b/hugo/content/icons/phone.md @@ -0,0 +1,5 @@ +--- +title: Phone +tags: +categories: +--- diff --git a/hugo/content/icons/plane.md b/hugo/content/icons/plane.md new file mode 100644 index 0000000..94a3221 --- /dev/null +++ b/hugo/content/icons/plane.md @@ -0,0 +1,5 @@ +--- +title: Plane +tags: +categories: +--- diff --git a/hugo/content/icons/play-pause.md b/hugo/content/icons/play-pause.md new file mode 100644 index 0000000..02298db --- /dev/null +++ b/hugo/content/icons/play-pause.md @@ -0,0 +1,5 @@ +--- +title: Play Pause +tags: +categories: +--- diff --git a/hugo/content/icons/play.md b/hugo/content/icons/play.md new file mode 100644 index 0000000..4082f4c --- /dev/null +++ b/hugo/content/icons/play.md @@ -0,0 +1,5 @@ +--- +title: Play +tags: +categories: +--- diff --git a/hugo/content/icons/plus.md b/hugo/content/icons/plus.md new file mode 100644 index 0000000..8c5c906 --- /dev/null +++ b/hugo/content/icons/plus.md @@ -0,0 +1,5 @@ +--- +title: Plus +tags: +categories: +--- diff --git a/hugo/content/icons/power.md b/hugo/content/icons/power.md new file mode 100644 index 0000000..f24c771 --- /dev/null +++ b/hugo/content/icons/power.md @@ -0,0 +1,5 @@ +--- +title: Power +tags: +categories: +--- diff --git a/hugo/content/icons/puzzle-piece.md b/hugo/content/icons/puzzle-piece.md new file mode 100644 index 0000000..5046853 --- /dev/null +++ b/hugo/content/icons/puzzle-piece.md @@ -0,0 +1,5 @@ +--- +title: Puzzle Piece +tags: +categories: +--- diff --git a/hugo/content/icons/repeat-one.md b/hugo/content/icons/repeat-one.md new file mode 100644 index 0000000..f0017a4 --- /dev/null +++ b/hugo/content/icons/repeat-one.md @@ -0,0 +1,5 @@ +--- +title: Repeat One +tags: +categories: +--- diff --git a/hugo/content/icons/repeat.md b/hugo/content/icons/repeat.md new file mode 100644 index 0000000..c2f36ce --- /dev/null +++ b/hugo/content/icons/repeat.md @@ -0,0 +1,5 @@ +--- +title: Repeat +tags: +categories: +--- diff --git a/hugo/content/icons/rocket.md b/hugo/content/icons/rocket.md new file mode 100644 index 0000000..eb632ce --- /dev/null +++ b/hugo/content/icons/rocket.md @@ -0,0 +1,5 @@ +--- +title: Rocket +tags: +categories: +--- diff --git a/hugo/content/icons/safari.md b/hugo/content/icons/safari.md new file mode 100644 index 0000000..fe48bb1 --- /dev/null +++ b/hugo/content/icons/safari.md @@ -0,0 +1,5 @@ +--- +title: Safari +tags: +categories: +--- diff --git a/hugo/content/icons/server.md b/hugo/content/icons/server.md new file mode 100644 index 0000000..3fe1c2c --- /dev/null +++ b/hugo/content/icons/server.md @@ -0,0 +1,5 @@ +--- +title: Server +tags: +categories: +--- diff --git a/hugo/content/icons/shield-keyhole.md b/hugo/content/icons/shield-keyhole.md new file mode 100644 index 0000000..cbb8751 --- /dev/null +++ b/hugo/content/icons/shield-keyhole.md @@ -0,0 +1,5 @@ +--- +title: Shield Keyhole +tags: +categories: +--- diff --git a/hugo/content/icons/shield-plus.md b/hugo/content/icons/shield-plus.md new file mode 100644 index 0000000..1543332 --- /dev/null +++ b/hugo/content/icons/shield-plus.md @@ -0,0 +1,5 @@ +--- +title: Shield Plus +tags: +categories: +--- diff --git a/hugo/content/icons/shield-xmark.md b/hugo/content/icons/shield-xmark.md new file mode 100644 index 0000000..ade0d7a --- /dev/null +++ b/hugo/content/icons/shield-xmark.md @@ -0,0 +1,5 @@ +--- +title: Shield Xmark +tags: +categories: +--- diff --git a/hugo/content/icons/shield.md b/hugo/content/icons/shield.md new file mode 100644 index 0000000..4530785 --- /dev/null +++ b/hugo/content/icons/shield.md @@ -0,0 +1,5 @@ +--- +title: Shield +tags: +categories: +--- diff --git a/hugo/content/icons/shuffle.md b/hugo/content/icons/shuffle.md new file mode 100644 index 0000000..2239c40 --- /dev/null +++ b/hugo/content/icons/shuffle.md @@ -0,0 +1,5 @@ +--- +title: Shuffle +tags: +categories: +--- diff --git a/hugo/content/icons/sim-card.md b/hugo/content/icons/sim-card.md new file mode 100644 index 0000000..ce07792 --- /dev/null +++ b/hugo/content/icons/sim-card.md @@ -0,0 +1,5 @@ +--- +title: Sim Card +tags: +categories: +--- diff --git a/hugo/content/icons/sliders.md b/hugo/content/icons/sliders.md new file mode 100644 index 0000000..1a4254c --- /dev/null +++ b/hugo/content/icons/sliders.md @@ -0,0 +1,5 @@ +--- +title: Sliders +tags: +categories: +--- diff --git a/hugo/content/icons/smartphone-divert.md b/hugo/content/icons/smartphone-divert.md new file mode 100644 index 0000000..b73a199 --- /dev/null +++ b/hugo/content/icons/smartphone-divert.md @@ -0,0 +1,5 @@ +--- +title: Smartphone Divert +tags: +categories: +--- diff --git a/hugo/content/icons/smartphone.md b/hugo/content/icons/smartphone.md new file mode 100644 index 0000000..02d0379 --- /dev/null +++ b/hugo/content/icons/smartphone.md @@ -0,0 +1,5 @@ +--- +title: Smartphone +tags: +categories: +--- diff --git a/hugo/content/icons/software-box.md b/hugo/content/icons/software-box.md new file mode 100644 index 0000000..09bf8e1 --- /dev/null +++ b/hugo/content/icons/software-box.md @@ -0,0 +1,5 @@ +--- +title: Software Box +tags: +categories: +--- diff --git a/hugo/content/icons/spinner-third.md b/hugo/content/icons/spinner-third.md new file mode 100644 index 0000000..6543f18 --- /dev/null +++ b/hugo/content/icons/spinner-third.md @@ -0,0 +1,5 @@ +--- +title: Spinner Third +tags: +categories: +--- diff --git a/hugo/content/icons/spy.md b/hugo/content/icons/spy.md new file mode 100644 index 0000000..2c8fcc2 --- /dev/null +++ b/hugo/content/icons/spy.md @@ -0,0 +1,5 @@ +--- +title: Spy +tags: +categories: +--- diff --git a/hugo/content/icons/star.md b/hugo/content/icons/star.md new file mode 100644 index 0000000..5a66cdb --- /dev/null +++ b/hugo/content/icons/star.md @@ -0,0 +1,5 @@ +--- +title: Star +tags: +categories: +--- diff --git a/hugo/content/icons/stop.md b/hugo/content/icons/stop.md new file mode 100644 index 0000000..282fa39 --- /dev/null +++ b/hugo/content/icons/stop.md @@ -0,0 +1,5 @@ +--- +title: Stop +tags: +categories: +--- diff --git a/hugo/content/icons/stopwatch.md b/hugo/content/icons/stopwatch.md new file mode 100644 index 0000000..c378b9f --- /dev/null +++ b/hugo/content/icons/stopwatch.md @@ -0,0 +1,5 @@ +--- +title: Stopwatch +tags: +categories: +--- diff --git a/hugo/content/icons/store.md b/hugo/content/icons/store.md new file mode 100644 index 0000000..9a19451 --- /dev/null +++ b/hugo/content/icons/store.md @@ -0,0 +1,5 @@ +--- +title: Store +tags: +categories: +--- diff --git a/hugo/content/icons/sun.md b/hugo/content/icons/sun.md new file mode 100644 index 0000000..9943564 --- /dev/null +++ b/hugo/content/icons/sun.md @@ -0,0 +1,5 @@ +--- +title: Sun +tags: +categories: +--- diff --git a/hugo/content/icons/swatchbook.md b/hugo/content/icons/swatchbook.md new file mode 100644 index 0000000..b76cb1c --- /dev/null +++ b/hugo/content/icons/swatchbook.md @@ -0,0 +1,5 @@ +--- +title: Swatchbook +tags: +categories: +--- diff --git a/hugo/content/icons/table-clock.md b/hugo/content/icons/table-clock.md new file mode 100644 index 0000000..9b8d5a6 --- /dev/null +++ b/hugo/content/icons/table-clock.md @@ -0,0 +1,5 @@ +--- +title: Table Clock +tags: +categories: +--- diff --git a/hugo/content/icons/table.md b/hugo/content/icons/table.md new file mode 100644 index 0000000..f51a79f --- /dev/null +++ b/hugo/content/icons/table.md @@ -0,0 +1,5 @@ +--- +title: Table +tags: +categories: +--- diff --git a/hugo/content/icons/tag.md b/hugo/content/icons/tag.md new file mode 100644 index 0000000..16d6105 --- /dev/null +++ b/hugo/content/icons/tag.md @@ -0,0 +1,5 @@ +--- +title: Tag +tags: +categories: +--- diff --git a/hugo/content/icons/tower-broadcast.md b/hugo/content/icons/tower-broadcast.md new file mode 100644 index 0000000..e764a5a --- /dev/null +++ b/hugo/content/icons/tower-broadcast.md @@ -0,0 +1,5 @@ +--- +title: Tower Broadcast +tags: +categories: +--- diff --git a/hugo/content/icons/trash-can.md b/hugo/content/icons/trash-can.md new file mode 100644 index 0000000..7e71149 --- /dev/null +++ b/hugo/content/icons/trash-can.md @@ -0,0 +1,5 @@ +--- +title: Trash Can +tags: +categories: +--- diff --git a/hugo/content/icons/triangle-exclamation.md b/hugo/content/icons/triangle-exclamation.md new file mode 100644 index 0000000..83145eb --- /dev/null +++ b/hugo/content/icons/triangle-exclamation.md @@ -0,0 +1,5 @@ +--- +title: Triangle Exclamation +tags: +categories: +--- diff --git a/hugo/content/icons/twitter.md b/hugo/content/icons/twitter.md new file mode 100644 index 0000000..5210671 --- /dev/null +++ b/hugo/content/icons/twitter.md @@ -0,0 +1,5 @@ +--- +title: Twitter +tags: +categories: +--- diff --git a/hugo/content/icons/unlock.md b/hugo/content/icons/unlock.md new file mode 100644 index 0000000..0f8dd40 --- /dev/null +++ b/hugo/content/icons/unlock.md @@ -0,0 +1,5 @@ +--- +title: Unlock +tags: +categories: +--- diff --git a/hugo/content/icons/user-clock.md b/hugo/content/icons/user-clock.md new file mode 100644 index 0000000..ae6f992 --- /dev/null +++ b/hugo/content/icons/user-clock.md @@ -0,0 +1,5 @@ +--- +title: User Clock +tags: +categories: +--- diff --git a/hugo/content/icons/user-gear.md b/hugo/content/icons/user-gear.md new file mode 100644 index 0000000..254ac64 --- /dev/null +++ b/hugo/content/icons/user-gear.md @@ -0,0 +1,5 @@ +--- +title: User Gear +tags: +categories: +--- diff --git a/hugo/content/icons/user-headset.md b/hugo/content/icons/user-headset.md new file mode 100644 index 0000000..5799e0f --- /dev/null +++ b/hugo/content/icons/user-headset.md @@ -0,0 +1,5 @@ +--- +title: User Headset +tags: +categories: +--- diff --git a/hugo/content/icons/user-list.md b/hugo/content/icons/user-list.md new file mode 100644 index 0000000..a6df851 --- /dev/null +++ b/hugo/content/icons/user-list.md @@ -0,0 +1,5 @@ +--- +title: User List +tags: +categories: +--- diff --git a/hugo/content/icons/user-lock.md b/hugo/content/icons/user-lock.md new file mode 100644 index 0000000..e1a322d --- /dev/null +++ b/hugo/content/icons/user-lock.md @@ -0,0 +1,5 @@ +--- +title: User Lock +tags: +categories: +--- diff --git a/hugo/content/icons/user-plus.md b/hugo/content/icons/user-plus.md new file mode 100644 index 0000000..6d15b96 --- /dev/null +++ b/hugo/content/icons/user-plus.md @@ -0,0 +1,5 @@ +--- +title: User Plus +tags: +categories: +--- diff --git a/hugo/content/icons/user.md b/hugo/content/icons/user.md new file mode 100644 index 0000000..8e8c3cf --- /dev/null +++ b/hugo/content/icons/user.md @@ -0,0 +1,5 @@ +--- +title: User +tags: +categories: +--- diff --git a/hugo/content/icons/users-list.md b/hugo/content/icons/users-list.md new file mode 100644 index 0000000..dc3d8ea --- /dev/null +++ b/hugo/content/icons/users-list.md @@ -0,0 +1,5 @@ +--- +title: Users List +tags: +categories: +--- diff --git a/hugo/content/icons/users.md b/hugo/content/icons/users.md new file mode 100644 index 0000000..f97afca --- /dev/null +++ b/hugo/content/icons/users.md @@ -0,0 +1,5 @@ +--- +title: Users +tags: +categories: +--- diff --git a/hugo/content/icons/valkyrie-sword.md b/hugo/content/icons/valkyrie-sword.md new file mode 100644 index 0000000..0ab3c46 --- /dev/null +++ b/hugo/content/icons/valkyrie-sword.md @@ -0,0 +1,5 @@ +--- +title: Valkyrie Sword +tags: +categories: +--- diff --git a/hugo/content/icons/video.md b/hugo/content/icons/video.md new file mode 100644 index 0000000..635a408 --- /dev/null +++ b/hugo/content/icons/video.md @@ -0,0 +1,5 @@ +--- +title: Video +tags: +categories: +--- diff --git a/hugo/content/icons/virtual-reality.md b/hugo/content/icons/virtual-reality.md new file mode 100644 index 0000000..478a5fe --- /dev/null +++ b/hugo/content/icons/virtual-reality.md @@ -0,0 +1,5 @@ +--- +title: Virtual Reality +tags: +categories: +--- diff --git a/hugo/content/icons/voicemail.md b/hugo/content/icons/voicemail.md new file mode 100644 index 0000000..017a562 --- /dev/null +++ b/hugo/content/icons/voicemail.md @@ -0,0 +1,5 @@ +--- +title: Voicemail +tags: +categories: +--- diff --git a/hugo/content/icons/volume-0.md b/hugo/content/icons/volume-0.md new file mode 100644 index 0000000..e246cb1 --- /dev/null +++ b/hugo/content/icons/volume-0.md @@ -0,0 +1,5 @@ +--- +title: Volume 0 +tags: +categories: +--- diff --git a/hugo/content/icons/volume-1.md b/hugo/content/icons/volume-1.md new file mode 100644 index 0000000..f09a52b --- /dev/null +++ b/hugo/content/icons/volume-1.md @@ -0,0 +1,5 @@ +--- +title: Volume 1 +tags: +categories: +--- diff --git a/hugo/content/icons/volume-2.md b/hugo/content/icons/volume-2.md new file mode 100644 index 0000000..d4c2275 --- /dev/null +++ b/hugo/content/icons/volume-2.md @@ -0,0 +1,5 @@ +--- +title: Volume 2 +tags: +categories: +--- diff --git a/hugo/content/icons/volume-3.md b/hugo/content/icons/volume-3.md new file mode 100644 index 0000000..626e834 --- /dev/null +++ b/hugo/content/icons/volume-3.md @@ -0,0 +1,5 @@ +--- +title: Volume 3 +tags: +categories: +--- diff --git a/hugo/content/icons/volume-none.md b/hugo/content/icons/volume-none.md new file mode 100644 index 0000000..e89a8fa --- /dev/null +++ b/hugo/content/icons/volume-none.md @@ -0,0 +1,5 @@ +--- +title: Volume None +tags: +categories: +--- diff --git a/hugo/content/icons/wallpaper.md b/hugo/content/icons/wallpaper.md new file mode 100644 index 0000000..1f95fba --- /dev/null +++ b/hugo/content/icons/wallpaper.md @@ -0,0 +1,5 @@ +--- +title: Wallpaper +tags: +categories: +--- diff --git a/hugo/content/icons/waveform.md b/hugo/content/icons/waveform.md new file mode 100644 index 0000000..0f8bdc5 --- /dev/null +++ b/hugo/content/icons/waveform.md @@ -0,0 +1,5 @@ +--- +title: Waveform +tags: +categories: +--- diff --git a/hugo/content/icons/window.md b/hugo/content/icons/window.md new file mode 100644 index 0000000..aea289a --- /dev/null +++ b/hugo/content/icons/window.md @@ -0,0 +1,5 @@ +--- +title: Window +tags: +categories: +--- diff --git a/hugo/content/icons/xmark.md b/hugo/content/icons/xmark.md new file mode 100644 index 0000000..f326026 --- /dev/null +++ b/hugo/content/icons/xmark.md @@ -0,0 +1,5 @@ +--- +title: Xmark +tags: +categories: +--- diff --git a/hugo/layouts/_default/home.html b/hugo/layouts/_default/home.html index a77a558..c09bdd2 100644 --- a/hugo/layouts/_default/home.html +++ b/hugo/layouts/_default/home.html @@ -1,11 +1,17 @@ - + {{ partialCached "head" . }} -
+ {{ partialCached "navbar" . }} + +
{{ .Content }} + + {{ partialCached "icons" . }}
+ + {{ partialCached "footer" . }} diff --git a/hugo/layouts/icons/single.html b/hugo/layouts/icons/single.html new file mode 100644 index 0000000..3579df2 --- /dev/null +++ b/hugo/layouts/icons/single.html @@ -0,0 +1,14 @@ + + + + {{ partialCached "head" . }} + {{ .Title }} · Amaranth + + + {{ partialCached "navbar" . }} + +
+

{{ .Title }}

+
+ + \ No newline at end of file diff --git a/hugo/layouts/partials/footer.html b/hugo/layouts/partials/footer.html new file mode 100644 index 0000000..c9d169a --- /dev/null +++ b/hugo/layouts/partials/footer.html @@ -0,0 +1,6 @@ +