diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 64320be..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 Md. Emruz Hossain - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index f075c7b..0000000 --- a/README.md +++ /dev/null @@ -1,240 +0,0 @@ -**Warning: This theme is going through a heavy re-write. The `main` branch contains some undocumented changes. Please, do not use `main` branch. Use latest release instead. We will release a new version once the re-write is done and the changes are documented.** - -# Toha - -[![Netlify Status](https://api.netlify.com/api/v1/badges/b1b93b02-f278-440b-ae1b-304e9f4c4ab5/deploy-status)](https://app.netlify.com/sites/toha/deploys) -[![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Fhugo-toha%2Ftoha%2Fbadge%3Fref%3Dmain&style=flat)](https://actions-badge.atrox.dev/hugo-toha/toha/goto?ref=main) -![Repository Size](https://img.shields.io/github/repo-size/hugo-toha/toha) -![Lines of Codes](https://img.shields.io/tokei/lines/github.com/hugo-toha/toha) -![Contributor](https://img.shields.io/github/contributors/hugo-toha/toha) -![Latest Release](https://img.shields.io/github/v/release/hugo-toha/toha?include_prereleases) -![Last Commit](https://img.shields.io/github/last-commit/hugo-toha/toha) -![Open Issues](https://img.shields.io/github/issues/hugo-toha/toha?color=important) -![Open Pull Requests](https://img.shields.io/github/issues-pr/hugo-toha/toha?color=yellowgreen) -![License](https://img.shields.io/github/license/hugo-toha/toha) -![Security Headers](https://img.shields.io/security-headers?url=https%3A%2F%2Fhugo-toha.github.io%2F) -[![This project is using Percy.io for visual regression testing.](https://percy.io/static/images/percy-badge.svg)](https://percy.io/b7cb60ab/hugo-toha.github.io) - -A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness. - -![Thumbnail](https://raw.githubusercontent.com/hugo-toha/toha/main/images/screenshot.png) - -- **Example Site:** [hugo-toha.github.io](https://hugo-toha.github.io) -- **Documentation:** [toha-guides.netlify.app](https://toha-guides.netlify.app/posts) - -## Features - -- Minimalist Design -- Fully Responsive -- Multiple Language Support -- Carefully Designed Cards -- Experience Timeline -- Achievement Gallery -- Sidebar to Categorize the Posts -- Short Codes -- Analytics Support - - GoatCounter - - counter.dev - - Google Analytics - - Matomo/Piwik -- Comment Support - - [Disqus](https://disqus.com/) - - [Valine](https://valine.js.org/) - - [Uttarances](https://utteranc.es/) - - [Giscus](https://giscus.app/) - -For more details about the features please visit [here](https://toha-guides.netlify.app/posts/features/). - -## Available Translations - -- English -- বাংলা -- Français -- Indonesian -- Deutsch -- Español -- 简体中文 -- हिन्दी -- Italiano -- 日本語 -- 한국어 -- русский -- suomi -- Tiếng Việt -- Turkish -- Arabic (العربية) -- Português -- Català -- Português Brasileiro - -To know more about how to translate your site, please visit [here](https://toha-guides.netlify.app/posts/translation/). Follow, the data and post format from this [example site](https://hugo-toha.github.io). - -## Screenshots - -Here are few screenshots from the [example site](https://hugo-toha.github.io). - -##### Home Page Sections - -![Home Page Sections](https://raw.githubusercontent.com/hugo-toha/toha/main/images/about.png) - -##### List Page - -![List Page](https://raw.githubusercontent.com/hugo-toha/toha/main/images/list.png) - -##### Reading Page - -![Reading Page](https://raw.githubusercontent.com/hugo-toha/toha/main/images/single.png) - -## Requirements - -- Hugo Version 0.109.0 (extended) or higher -- Go language 1.18 or higher (require for hugo modules) -- Node version v18.x or later and npm 8.x or later. - -## Usage - -The easiest way to use this theme is to fork [hugo-toha.github.io](https://github.com/hugo-toha/hugo-toha.github.io) sample repo.Then change the configurations according to your need. - -If you want to start from scratch, then follow these steps: - -##### 1. Initialize Hugo module on you repo - -At first, initialize [Hugo modules](https://gohugo.io/hugo-modules/) in your repo. This will create a `go.mod` file. - -```bash -hugo mod init github.com// -``` - -##### 2. Add this theme as your module dependency - -Now, in your `config.yaml` file, add a `module` section. - -```yaml -# Use Hugo modules to add theme -module: - imports: - - path: github.com/hugo-toha/toha/v4 -``` - -Check this sample [config.yaml](https://github.com/hugo-toha/hugo-toha.github.io/blob/main/config.yaml) for further reference. - -##### 3. Update your module - -Now, run this command to load this theme as your module. - -```bash -hugo mod tidy -``` - -#### Running Locally - -Now, you can run your hugo site locally with the following steps: - -##### 1. Generate node dependency configuration - -Now run the following command to generate node dependency configuration. This will create the a `package.json` file in you repo. - -```bash -hugo mod npm pack -``` - -##### 2. Install dependencies - -Install the node dependencies using following command: -```bash -npm install -``` - -##### 3. Run your site - -Now, run you site locally using following command. - -```bash -hugo server -w -``` - -When you run your site for first time, it will start with the default parameters. It should look similar to the [example site](https://hugo-toha.github.io). However, it will not have any sections in the homepage as we haven't configured them yet. You can configure your site by following the guides from [here](https://toha-guides.netlify.app/posts/configuration/). - -## Shortcodes - -Here, are some handy shortcodes you can use with this theme. - -- [Alert](https://toha-guides.netlify.app/posts/shortcodes/#alert) -- [Image](https://toha-guides.netlify.app/posts/shortcodes/#image) -- [Split](https://toha-guides.netlify.app/posts/shortcodes/#split) -- [Vertical Space](https://toha-guides.netlify.app/posts/shortcodes/#vertical-space) -- [Video](https://toha-guides.netlify.app/posts/shortcodes/#video) -- [Mermaid](https://hugo-toha.github.io/posts/shortcodes/#mermaid) - -## Contributing - -You can contribute to this theme in various ways. You can report a [bug](https://github.com/hugo-toha/toha/issues/new?template=bug.md), file an [feature request](https://github.com/hugo-toha/toha/issues/new?template=feature_request.md), send a PR, [share your thoughts](https://github.com/hugo-toha/toha/issues/new?template=question.md) etc. - -Pull requests are most welcome and I will be happy to review. Just follow the following principles: - -- Keep it simple. -- Keep it consistent with the design. -- Use as few dependencies as possible. -- Have patience. - -> I am not a web developer. I have created this theme for my personal needs. So, it is reasonable to have some flaws in the codes. Feel free to open issues and PRs acknowledging the problems. - -## Local Development - -For local development, you can make changes in the theme submodule and test the changes against your own site or this [example site](https://github.com/hugo-toha/hugo-toha.github.io) locally. - -### Fork - -At first, fork [this repo](https://github.com/hugo-toha/toha). Then, follow the following steps to use the forked theme for local developments, - -**Using the forked theme in your own site:** - -If you want to run your local development against your own site, follow the following steps: - -```bash -# add the original theme as a submodule of your site if you haven't done already -$ git submodule add https://github.com/hugo-toha/toha.git themes/toha -# navigate into the toha theme folder -$ cd themes/toha -# add your own fork as a remote -$ git remote add my-fork https://github.com//toha -# create a new branch for your changes -$ git checkout -b my-feature-branch -``` - -**Using the forked theme in the example site:** - -If your want to run your local development against this [example site](https://github.com/hugo-toha/hugo-toha.github.io), follow the following steps: - -```bash -# clone the example site along with the submodules -$ git clone git@github.com:hugo-toha/hugo-toha.github.io.git --recursive -# navigate into the toha theme folder -$ cd themes/toha -# add your own fork as a remote -$ git remote add my-fork https://github.com//toha -# create a new branch for your changes -$ git checkout -b my-feature-branch -``` - -From there you can make changes to the source code of the theme while testing with your running Hugo site or the example site. - -### Open a PR - -When the changes look good, commit and push them to your fork. - -```bash -# stage all the changes -$ git add . -# commit the changes with a meaning full commit message -$ git commit -m "A meaningful commit message" -# push the commit to your fork -$ git push my-fork my-feature-branch -``` - -Then, open a PR against `main` branch of [hugo-toha/toha](https://github.com/hugo-toha/toha) from the `my-feature-branch` branch of your own fork. - -## Attribution - -- Thanks [Anup Deb](https://dribbble.com/anupdeb) for his design guidance. -- Many of the illustrations have been taken from [iconscout](http://iconscout.com/). diff --git a/archetypes/default.md b/archetypes/default.md deleted file mode 100644 index 00e77bd..0000000 --- a/archetypes/default.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "{{ replace .Name "-" " " | title }}" -date: {{ .Date }} -draft: true ---- - diff --git a/assets/jsconfig.json b/assets/jsconfig.json deleted file mode 100644 index a948a97..0000000 --- a/assets/jsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compilerOptions": { - "baseUrl": ".", - "paths": { - "*": [ - "../themes/toha/assets/*" - ] - } - } -} \ No newline at end of file diff --git a/config.yaml b/config.yaml deleted file mode 100644 index 4816a5e..0000000 --- a/config.yaml +++ /dev/null @@ -1,38 +0,0 @@ -baseURL: https://hugo-toha.github.io - -languageCode: en-us -title: "John's Blog" -theme: "toha" - -# Manage languages -# For any more details, you can check the official documentation: https://gohugo.io/content-management/multilingual/ -languages: - en: - languageName: English - weight: 1 - -# Control TOC depth -markup: - tableOfContents: - startLevel: 2 - endLevel: 6 - ordered: false - -# Enable global emoji support -enableEmoji: true - -# Site parameters -params: - # GitHub repo URL of your site - gitRepo: https://github.com/hugo-toha/hugo-toha.github.io - - # specify whether you want to write some blog posts or not - enableBlogPost: true - - # specify whether you want to show Table of Contents in reading page - enableTOC: true - - # Provide newsletter configuration. This feature hasn't been implemented yet. - # Currently, you can just hide it from the footer. - newsletter: - enable: true \ No newline at end of file diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml deleted file mode 100644 index 99d29f9..0000000 --- a/exampleSite/config.yaml +++ /dev/null @@ -1,292 +0,0 @@ - -baseURL: http://example.org/ -languageCode: en-us -title: Example Site - -module: - imports: - - path: github.com/hugo-toha/hugo-toha.github.io - disable: false - mounts: - - source: content - target: content - - source: layouts - target: layouts - - source: data - target: data - - source: assets - target: assets - - source: static - target: static - - path: github.com/hugo-toha/toha/v4 - -# Manage languages -# For any more details, you can check the official documentation: https://gohugo.io/content-management/multilingual/ -languages: - en: - languageName: English - weight: 1 - bn: - languageName: বাংলা - weight: 3 - -# Force a locale to be use, really useful to develop the application ! Should be commented in production, the "weight" should rocks. -# DefaultContentLanguage: bn - -# Allow raw html in markdown file -markup: - goldmark: - renderer: - unsafe: true - tableOfContents: - startLevel: 2 - endLevel: 6 - ordered: false - -# At least HTML and JSON are required for the main HTML content and -# client-side JavaScript search -outputs: - home: - - HTML - - RSS - - JSON - -# Enable global emoji support -enableEmoji: true - -# Site parameters -params: - # Background image of the landing page - background: /images/site/background.jpg - - # Provide logos for your site. The inverted logo will be used in the initial - # transparent navbar and the main logo will be used in the non-transparent navbar. - logo: - main: /images/site/main-logo.png - inverted: /images/site/inverted-logo.png - favicon: /images/site/favicon.png - - # GitHub repo of your site - gitRepo: https://github.com/hugo-toha/hugo-toha.github.io - # Default branch of your Git repo - gitBranch: main - - # Configure the number of section title visible in the top navbar - topNavbar: - maxVisibleSections: 5 - - # Configure various features of this theme - features: - - # Enable dark theme - darkMode: - enable: false - services: - darkreader: - defaultColorScheme: system # options are 'system', 'dark', 'light' - fixes: - invert: ['img[src$=".svg"]'] # inverts svg colors. - theme: - brightness: 100 - contrast: 100 - sepia: 0 - - # Enable and configure portfolio - portfolio: - enable: true - - # Enable and configure blog posts - blog: - enable: true - # Share post on different social media - shareButtons: - facebook: true - twitter: true - linkedin: true - reddit: true - whatsapp: true - email: true - # tumblr: true - # pocket: true - # diaspora: true - # mastodon: true - - # Enable & configure "Notes" features - notes: - enable: true - - # Enable comment feature. There, should be only one of them. - comment: - enable: false - services: - disqus: - shortName: toha-example-site - # valine: - # appId: HTV6askWxVo3vOxlqjjaq2hd-MsYXbMMI - # appKey: pVrT3C85KGIuk27t07eh6bUC - # avatar: retro - # placeholder: Share your thought. - # lang: en - # recordIP: true - # enableQQ: true - # utteranc: - # repo: github.com/hugo-toha/hugo-toha.github.io - # issueTerm: title - # theme: github-light - # giscus: - # repo: your-repo/name - # repoID: your-repo-id - # category: your-category - # categoryID: your-category-id - # theme: light - # map: url - # reaction: 1 - # metadata: 0 - # inputPosition: bottom - # crossOrigin: anonymous - # commento: - # serverURL: cdn.commento.io - # autoInit: true - # hideDeleted: false - - # Enable Analytics - analytics: - enabled: false - services: - # Google Analytics - google: - id: G-H4LBG7NDFZ - # # CounterDev - # counterDev: - # id: - # # GoatCounter - # goatCounter: - # code: - # # Matomo / Piwik - # matomo: - # instance: matomo.example.com - # siteId: 1 # Or any other number - - # Enable Support - support: - enable: false - services: - kofi: - user: hossainemruz - text: Tip Me - textColor: '#f9fafc' - backgroundColor: '#248aaa' - # buymeacoffee: - # user: - # text: Support me on Buy me a coffee! - # info: Buy me a coffee! - # color: '#FFDD00' - - # specify whether you want to show Table of Contents in reading page - toc: - enable: true - - # Show tags under the post title - tags: - enable: true - - # Specify whether to show flag in the language selector. Default is true. - flags: - enable: true - # # If you want to use different country flag for a language, specify them here. - # flagOverwrites: - # - languageCode: en - # countryCode: us - - # Enable this to use `embed-pdf` shortcode. - embedpdf: - enable: false - - # Enable this to create flowcharts using shortcodes. - flowchart: - enable: false - services: - # Uncomment for `mermaid` shortcode. - mermaid: - # For config options, see: https://mermaid-js.github.io/mermaid/#/Setup?id=configuration - # theme: dark - - # Enable this to create mathematic expressions using `$$` blocks - math: - enable: false - services: - # https://katex.org/docs/autorender.html#api for more configurations - katex: - delimiters: - - left: $$ - right: $$ - display: true - - left: \\[ - right: \\] - display: true - - left: $ - right: $ - display: false - - left: \\( - right: \\) - display: false - - # Enable to use custom syntax highlight - # Please note, Hugo comes with it's own html based syntax highlighter. - # Your code block will still be syntax highlighted by hugo. - # For more details: https://gohugo.io/content-management/syntax-highlighting/ - # To disable Hugo's builtin syntax highlight, - # see: https://gohugo.io/getting-started/configuration-markup#highlight - # ``` - # # config.yaml - # markup: - # # this disables hugo's syntax highlighting. - # codeFences: false - # ``` - syntaxHighlight: - enable: true - services: - hljs: - # see: https://highlightjs.readthedocs.io/en/latest/api.html#configure - noHighlightRe: /^no-highlight$/i - - # Enable to use `video-player` shortcode - videoPlayer: - enable: false - services: - # convert .js-player class into video player via https://plyr.io/ - # Can play HTML5 Video, Audio, Youtube, Vimeo. - # For more info on setup: https://github.com/sampotts/plyr#quick-setup - plyr: - # options doc: https://github.com/sampotts/plyr#options - # fullscreen: true - - - # Provide footer configuration. - footer: - enable: true - # You can provide your custom footer template using this option. - # Put your template in "layouts/partials" folder of your repo. - template: footer.html - # Show/hide navigation in the footer. Default is "true". - navigation: - enable: true - # show custom menus in the footer - customMenus: true - # Show/hide "Contact Me" section in the footer. Default is "true". - contactMe: - enable: true - # Show/hide credentials section in the footer. Default is "true". - credentials: - enable: true - - # Show/hide newsletter section in the footer. Default is "true". - # Currently, it supports "mailchimp". - newsletter: - enable: true - provider: mailchimp - mailchimpURL: https://github.us1.list-manage.com/subscribe/post?u=19de52a4603135aae97163fd8&id=094a24c76e - - # Show/hide disclaimer notice in the footer. Default is "false". - disclaimer: - enable: true diff --git a/exampleSite/go.mod b/exampleSite/go.mod deleted file mode 100644 index d7882e2..0000000 --- a/exampleSite/go.mod +++ /dev/null @@ -1,8 +0,0 @@ -module github.com/hugo-toha/toha/exampleSite - -go 1.19 - -require github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6 // indirect - -replace github.com/hugo-toha/toha/v4 => ../../toha -// replace github.com/hugo-toha/hugo-toha.github.io => ../../hugo-toha.github.io diff --git a/exampleSite/go.sum b/exampleSite/go.sum deleted file mode 100644 index aec65ac..0000000 --- a/exampleSite/go.sum +++ /dev/null @@ -1,2 +0,0 @@ -github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6 h1:TPFhOZAnuH4wjLIdzimswCRa2qCcc1teKVTatADJU2g= -github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6/go.mod h1:OMMaP9Hh9NsKd41lVIazBQRPa0s6Z57AfJoY3DcCNNY= diff --git a/go.mod b/go.mod deleted file mode 100644 index d7882e2..0000000 --- a/go.mod +++ /dev/null @@ -1,8 +0,0 @@ -module github.com/hugo-toha/toha/exampleSite - -go 1.19 - -require github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6 // indirect - -replace github.com/hugo-toha/toha/v4 => ../../toha -// replace github.com/hugo-toha/hugo-toha.github.io => ../../hugo-toha.github.io diff --git a/go.sum b/go.sum deleted file mode 100644 index aec65ac..0000000 --- a/go.sum +++ /dev/null @@ -1,2 +0,0 @@ -github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6 h1:TPFhOZAnuH4wjLIdzimswCRa2qCcc1teKVTatADJU2g= -github.com/hugo-toha/hugo-toha.github.io v0.0.0-20221228191121-007f31838bd6/go.mod h1:OMMaP9Hh9NsKd41lVIazBQRPa0s6Z57AfJoY3DcCNNY= diff --git a/i18n/ad.toml b/i18n/ad.toml deleted file mode 100644 index d0479c6..0000000 --- a/i18n/ad.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Inici" - -[posts] -other = "Publicacions" - -[toc_heading] -other = "Taula de Continguts" - -[tags] -other = "Etiquetes" - -[categories] -other = "Categories" - -[at] -other = "a" - -[resume] -other = "El meu currículum" - -[navigation] -other = "Navegació" - -[contact_me] -other = "Contacta'm:" - -[email] -other = "Correu electrònic" - -[phone] -other = "Telèfon" - -[newsletter_text] -other = "Subscriure's" - -[newsletter_input_placeholder] -other = "Entra l'email" - -[newsletter_warning] -other = "Al entrar la vostra direcció de correu electrònic, esteu acceptant rebre el butlletí d'aquest lloc web." - -[submit] -other = "Enviar" - -[hugoAttributionText] -other = "Impulsat per" - -[prev] -other = "Anterior" - -[next] -other = "Següent" - -[share_on] -other = "Compartir a" - -[improve_this_page] -other = "Millorar aquesta pàgina" - -[out_of] -other = "de" - -[publications] -other = "Publicacions" - -[taken_courses] -other = "Cursos realitzats" - -[course_name] -other = "Nom del curs" - -[total_credit] -other = "Crèdits Totals" - -[obtained_credit] -other = "Crèdits Obtinguts" - -[extracurricular_activities] -other = "Activitats Extracurriculars" - -[show_more] -other = "Mostra'n més" - -[show_less] -other = "Mostra'n menys" - -[responsibilities] -other = "Responsabilitats:" - -[present] -other = "Actualitat" - -[comments_javascript] -other = "Si us plau, activa Javascript per mostrar" - -[comments_by] -other = "Comentaris per" - -[read] -other = "Llegir" - -[project_star] -other = "Preferit" - -[project_details] -other = "Detalls" - -[err_404] -other = "La pàgina que està cercant encara no existeix." - -[more] -other = "Més" - -[view_certificate] -other = "Mostrar Certificat" - -[notes] -other = "Notes" - -[disclaimer_text] -other = "Avís de Responsabilitat" - -[search] -other = "Cerca" diff --git a/i18n/ar.toml b/i18n/ar.toml deleted file mode 100644 index 7bc84f2..0000000 --- a/i18n/ar.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "الصفحة الرئيسية" - -[posts] -other = "المنشورات" - -[toc_heading] -other = "قائمة المحتويات" - -[tags] -other = "الوسوم" - -[categories] -other = "الأقسام" - -[at] -other = "at" - -[resume] -other = "سيرتي الذاتية" - -[navigation] -other = "التصفح" - -[contact_me] -other = "اتصل بي:" - -[email] -other = "البريد الإلكتروني" - -[phone] -other = "الهاتف" - -[newsletter_text] -other = "ابق على اتصال من خلال القائمة البريدية" - -[newsletter_input_placeholder] -other = "ادخل بريدك الالكتروني" - -[newsletter_warning] -other = "بإدخال بريدك الإلكتروني، أنت توافق على تلقي رسائل إلكترونية دورية من هذا الموقع." - -[submit] -other = "إرسال" - -[hugoAttributionText] -other = "صنع باستخدام" - -[prev] -other = "السابق" - -[next] -other = "التالي" - -[share_on] -other = "المشاركة على" - -[improve_this_page] -other = "ساعد في تحسين هذه الصفحة" - -[out_of] -other = "من" - -[publications] -other = "المنشورات" - -[taken_courses] -other = "الدروس" - -[course_name] -other = "اسم المادة" - -[total_credit] -other = "العلامة العامة" - -[obtained_credit] -other = "العلامة" - -[extracurricular_activities] -other = "نشاطات خارجية" - -[show_more] -other = "إظهار المزيد" - -[show_less] -other = "إخفاء" - -[responsibilities] -other = "المسؤوليات:" - -[present] -other = "حاليا" - -[comments_javascript] -other = "من فضلك قم بتفعيل جافاسكريب لإظهار" - -[comments_by] -other = "التعليقات موفرة بواسطة" - -[read] -other = "قراءة" - -[project_star] -other = "نجمة" - -[project_details] -other = "التفاصيل" - -[err_404] -other = "الصفحة التي تبحث عنها ليست بعد هناك." - -[more] -other = "المزيد" - -[view_certificate] -other = "إظهار الشهادة" - -[notes] -other = "ملاحظات" - -[disclaimer_text] -other = "إشعار بالمسؤولية" - -[search] -other = "بحث" diff --git a/i18n/bn.toml b/i18n/bn.toml deleted file mode 100644 index 96b0546..0000000 --- a/i18n/bn.toml +++ /dev/null @@ -1,123 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "হোম" - -[posts] -other = "পোষ্ট সমূহ" - -[toc_heading] -other = "সুচিপত্র" - -[tags] -other = "ট্যাগ সমুহ" - -[categories] -other = "বিভাগ সমুহ" - -[resume] -other = "আমার জীবনবৃত্তান্ত" - -[navigation] -other = "নেভিগেশন" - -[contact_me] -other = "আমার সাথে যোগাযোগ করুনঃ" - -[email] -other = "ইমেইল" - -[phone] -other = "ফোন" - -[newsletter_text] -other = "ইমেইল নোটিফিকেশান এর মাধ্যমে সর্বশেষ তথ্য জানুন" - -[newsletter_input_placeholder] -other = "ইমেইল প্রবেশ করান" - -[newsletter_warning] -other = "আপনার ইমেইল ঠিকানা প্রবেশের মাধমে আপনি এই ওয়েবসাইটের নিউজ লেটার পেতে সম্মত হচ্ছেন।" - -[submit] -other = "জমা দিন" - -[hugoAttributionText] -other = "পাওয়ারড বাই" - -[prev] -other = "পূর্ববর্তী" - -[next] -other = "পরবর্তী" - -[share_on] -other = "শেয়ার করুন" - -[improve_this_page] -other = "এই পৃষ্ঠাটি উন্নত করুন" - -[out_of] -other = "এর মধ্যে" - -[publications] -other = "প্রকাশনা সমূহ" - -[taken_courses] -other = "গৃহীত কোর্সসমূহ" - -[course_name] -other = "কোর্সের নাম" - -[total_credit] -other = "মোট ক্রেডিট" - -[obtained_credit] -other = "অর্জিত ক্রেডিট" - -[extracurricular_activities] -other = "পাঠক্রম বহির্ভূত কার্যক্রম" - -[show_more] -other = "আরো দেখান" - -[show_less] -other = "কম দেখান" - -[responsibilities] -other = "দায়িত্বসমুহ:" - -[present] -other = "বর্তমান" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -# [project_details] -# other = "Details" - -# [err_404] -# other = "The page you are looking for is not there yet." - -[more] -other = "আরো" - -[view_certificate] -other = "সার্টিফিকেট দেখুন" - -[notes] -other = "নোট সমূহ" - -[disclaimer_text] -other = "দায় বিজ্ঞপ্তি" - -[search] -other = "অনুসন্ধান করুন" diff --git a/i18n/de.toml b/i18n/de.toml deleted file mode 100644 index 940e089..0000000 --- a/i18n/de.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Home" - -[posts] -other = "Beiträge" - -[toc_heading] -other = "Inhaltsverzeichnis" - -[tags] -other = "Stichworte" - -[categories] -other = "Kategorien" - -[at] -other = "bei" - -[resume] -other = "Mein Lebenslauf" - -[navigation] -other = "Navigation" - -[contact_me] -other = "Kontaktiere mich:" - -[email] -other = "E-Mail" - -[phone] -other = "Telefon" - -[newsletter_text] -other = "Mit dem Newsletter auf dem neuesten Stand bleiben" - -[newsletter_input_placeholder] -other = "E-Mail Adresse eingeben" - -[newsletter_warning] -other = "Mit der Eingabe Ihrer E-Mail-Adresse erklären Sie sich damit einverstanden, den Newsletter dieser Website zu erhalten." - -[submit] -other = "Absenden" - -[hugoAttributionText] -other = "Unterstützt von" - -[prev] -other = "Vorherige" - -[next] -other = "Nächste" - -# [share_on] -# other = "Share on" - -[improve_this_page] -other = "Diese Seite verbessern" - -[out_of] -other = "aus" - -[publications] -other = "Publikationen" - -[taken_courses] -other = "Belegte Kurse" - -[course_name] -other = "Kursname" - -[total_credit] -other = "Mögliche Punktzahl" - -[obtained_credit] -other = "Note" - -[extracurricular_activities] -other = "Außerschulische Aktivitäten" - -[show_more] -other = "Mehr anzeigen" - -[show_less] -other = "Weniger anzeigen" - -[responsibilities] -other = "Verantwortlichkeiten:" - -[present] -other = "heute" - -[comments_javascript] -other = "Bitte aktiviere JavaScript um die Kommentare zu sehen" - -[comments_by] -other = "Kommentare Unterstützt von" - -[read] -other = "Lesen" - -[project_star] -other = "Star" - -[project_details] -other = "Details" - -[err_404] -other = "Die von Ihnen gesuchte Seite ist noch nicht vorhanden." - -[more] -other = "Mehr" - -[view_certificate] -other = "Zertifikat ansehen" - -[notes] -other = "Notizen" - -[disclaimer_text] -other = "Haftungshinweis" - -[search] -other = "Suche" diff --git a/i18n/en.toml b/i18n/en.toml deleted file mode 100644 index c352868..0000000 --- a/i18n/en.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Home" - -[posts] -other = "Posts" - -[toc_heading] -other = "Table of Contents" - -[tags] -other = "Tags" - -[categories] -other = "Categories" - -[at] -other = "at" - -[resume] -other = "My resume" - -[navigation] -other = "Navigation" - -[contact_me] -other = "Contact me:" - -[email] -other = "Email" - -[phone] -other = "Phone" - -[newsletter_text] -other = "Stay up to date with email notification" - -[newsletter_input_placeholder] -other = "Enter email" - -[newsletter_warning] -other = "By entering your email address, you agree to receive the newsletter of this website." - -[submit] -other = "Submit" - -[hugoAttributionText] -other = "Powered by" - -[prev] -other = "Prev" - -[next] -other = "Next" - -[share_on] -other = "Share on" - -[improve_this_page] -other = "Improve this page" - -[out_of] -other = "out of" - -[publications] -other = "Publications" - -[taken_courses] -other = "Taken Courses" - -[course_name] -other = "Course Name" - -[total_credit] -other = "Total Credit" - -[obtained_credit] -other = "Obtained Credit" - -[extracurricular_activities] -other = "Extracurricular Activities" - -[show_more] -other = "Show More" - -[show_less] -other = "Show Less" - -[responsibilities] -other = "Responsibilities:" - -[present] -other = "Present" - -[comments_javascript] -other = "Please enable JavaScript to view the" - -[comments_by] -other = "comments powered by" - -[read] -other = "Read" - -[project_star] -other = "Star" - -[project_details] -other = "Details" - -[err_404] -other = "The page you are looking for is not there yet." - -[more] -other = "More" - -[view_certificate] -other = "View Certificate" - -[notes] -other = "Notes" - -[disclaimer_text] -other = "Liability Notice" - -[search] -other = "Search" diff --git a/i18n/es.toml b/i18n/es.toml deleted file mode 100644 index 5265bcd..0000000 --- a/i18n/es.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Inicio" - -[posts] -other = "Posts" - -[toc_heading] -other = "Contenido" - -[tags] -other = "Etiquetas" - -[categories] -other = "Categorías" - -[at] -other = "en" - -[resume] -other = "Mi currículum" - -[navigation] -other = "Navegación" - -[contact_me] -other = "Contacto" - -[email] -other = "Email" - -[phone] -other = "Teléfono" - -[newsletter_text] -other = "Subscribirse" - -[newsletter_input_placeholder] -other = "Ingrese email" - -[newsletter_warning] -other = "Al ingresar su dirección de correo electrónico, acepta recibir el boletín de este sitio web." - -[submit] -other = "Enviar" - -[hugoAttributionText] -other = "Funcionando con" - -[prev] -other = "Anterior" - -[next] -other = "Siguiente" - -[share_on] -other = "Compartir en" - -[improve_this_page] -other = "Mejorar esta página" - -[out_of] -other = "de" - -[publications] -other = "Publicaciones" - -[taken_courses] -other = "Cursos tomados" - -[course_name] -other = "Nombre del curso" - -[total_credit] -other = "Crédito total" - -[obtained_credit] -other = "Crédito obtenido" - -[extracurricular_activities] -other = "Actividades extracurriculares" - -[show_more] -other = "Ver más" - -[show_less] -other = "Muestra menos" - -[responsibilities] -other = "Responsabilidades:" - -[present] -other = "Presente" - -[comments_javascript] -other = "Por favor, activa JavaScript para ver el" - -[comments_by] -other = "comentarios cortesía de" - -[read] -other = "Leer" - -[project_star] -other = "Favorito" - -[project_details] -other = "Detalles" - -[err_404] -other = "La página que estás buscando no está aquí (todavía)" - -[more] -other = "Más" - -[view_certificate] -other = "Ver Certificado" - -[notes] -other = "Notas" - -[disclaimer_text] -other = "Aviso de responsabilidad" - -[search] -other = "Búsqueda" diff --git a/i18n/fi.toml b/i18n/fi.toml deleted file mode 100644 index f5f3021..0000000 --- a/i18n/fi.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Koti" - -[posts] -other = "Artikkelit" - -[toc_heading] -other = "Sisällysluettelo" - -[tags] -other = "Tagit" - -[categories] -other = "Kategoriat" - -[at] -other = "at" - -[resume] -other = "Ansioluetteloni" - -[navigation] -other = "Navigointi" - -[contact_me] -other = "Ota yhteyttä minuun:" - -[email] -other = "Sähköposti" - -[phone] -other = "Puhelin" - -[newsletter_text] -other = "Pysy ajan tasalla tilaamalla sähköposti-ilmoitukset" - -[newsletter_input_placeholder] -other = "Syötä sähköpostiosoite" - -[newsletter_warning] -other = "Syöttämällä sähköpostin, hyväksyt että haluat vastaanottaa uutiskirjeen tältä sivustolta." - -[submit] -other = "Lähetä" - -[hugoAttributionText] -other = "Voimanlähteenä" - -[prev] -other = "Edellinen" - -[next] -other = "Seuraava" - -[share_on] -other = "Jaa" - -[improve_this_page] -other = "Paranna tätä sivua" - -[out_of] -other = "out of" - -[publications] -other = "Julkaisut" - -[taken_courses] -other = "Käydyt kurssit" - -[course_name] -other = "Kurssin nimi" - -[total_credit] -other = "Opintopisteet yhteensä" - -[obtained_credit] -other = "Saadut opintopisteet" - -[extracurricular_activities] -other = "Opetusohjelman ulkopuolinen toiminta" - -[show_more] -other = "Näytä lisää" - -[show_less] -other = "Näytä vähemmän" - -[responsibilities] -other = "Työtehtävät:" - -[present] -other = "Tämä päivä" - -[comments_javascript] -other = "Ole hyvä ja enabloi JavaScript katsoaksesi" - -[comments_by] -other = "kommentit mahdollistavat" - -[read] -other = "Lue" - -[project_star] -other = "Tähti" - -[project_details] -other = "Yksityiskohdat" - -[err_404] -other = "Sivua jota etsit ei löydy." - -[more] -other = "Lisää" - -[view_certificate] -other = "Katso todistus" - -[notes] -other = "Muistiinpanot" - -[disclaimer_text] -other = "Vastuuilmoitus" - -[search] -other = "Haku" diff --git a/i18n/fr.toml b/i18n/fr.toml deleted file mode 100644 index e138e71..0000000 --- a/i18n/fr.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Accueil" - -[posts] -other = "Articles" - -[toc_heading] -other = "Table des matières" - -[tags] -other = "Mots clés" - -[categories] -other = "Catégories" - -[at] -other = "chez" - -[resume] -other = "Mon Curriculum Vitæ" - -[navigation] -other = "Navigation" - -[contact_me] -other = "Contactez moi :" - -[email] -other = "Email" - -[phone] -other = "Téléphone" - -[newsletter_text] -other = "Restez à jour par e-mail" - -[newsletter_input_placeholder] -other = "Entrez une adresse e-mail" - -[newsletter_warning] -other = "En renseignant votre adresse e-mail, vous acceptez de recevoir la newsletter de ce site." - -[submit] -other = "Envoyer" - -[hugoAttributionText] -other = "Alimenté par" - -[prev] -other = "Précédent" - -[next] -other = "Suivant" - -[share_on] -other = "Partager sur" - -[improve_this_page] -other = "Améliorez cette page" - -[out_of] -other = "sur" - -[publications] -other = "Publications" - -[taken_courses] -other = "Cours suivis" - -[course_name] -other = "Intitulé du cours" - -[total_credit] -other = "Crédit total" - -[obtained_credit] -other = "Crédit obtenu" - -[extracurricular_activities] -other = "Activités extra-scolaires" - -[show_more] -other = "En savoir plus" - -[show_less] -other = "Montrer moins" - -[responsibilities] -other = "Responsabilités :" - -[present] -other = "Aujourd'hui" - -[comments_javascript] -other = "Merci d'activer JavaScript pour voir le" - -[comments_by] -other = "commentaires fournis par" - -[read] -other = "Lire" - -# [project_star] -# other = "Star" - -[project_details] -other = "Détails" - -[err_404] -other = "La page que vous recherchez n'est pas disponible." - -[more] -other = "Suite" - -[view_certificate] -other = "Afficher le certificat" - -[notes] -other = "Remarques" - -[disclaimer_text] -other = "Avis de responsabilité" - -[search] -other = "Chercher" diff --git a/i18n/hi.toml b/i18n/hi.toml deleted file mode 100644 index 8348cbd..0000000 --- a/i18n/hi.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "होम" - -[posts] -other = "पोस्ट" - -[toc_heading] -other = "विषयसूची" - -[tags] -other = "टैग" - -[categories] -other = "श्रेणियाँ" - -[at] -other = "अन्य" - -[resume] -other = "बायोडाटा" - -[navigation] -other = "पथ प्रदर्शन" - -[contact_me] -other = "मुझसे संपर्क करो:" - -[email] -other = "ईमेल" - -[phone] -other = "फ़ोन" - -[newsletter_text] -other = "ईमेल अधिसूचना से अवगत रहें" - -[newsletter_input_placeholder] -other = "ईमेल दर्ज करें" - -[newsletter_warning] -other = "अपना ईमेल पता दर्ज करके, आप इस वेबसाइट का न्यूज़लेटर प्राप्त करने के लिए सहमत होते हैं।" - -[submit] -other = "जमा करें" - -[hugoAttributionText] -other = "द्वारा संचालित" - -[prev] -other = "पिछला" - -[next] -other = "आगे" - -# [share_on] -# other = "Share on" - -[improve_this_page] -other = "इस पृष्ठ को सुधारें" - -[out_of] -other = "में से बाहर" - -[publications] -other = "प्रकाशन" - -[taken_courses] -other = "पाठ्यक्रम लिया" - -[course_name] -other = "कोर्स का नाम" - -[total_credit] -other = "कुल क्रेडिट" - -[obtained_credit] -other = "श्रेय प्राप्त किया" - -[extracurricular_activities] -other = "अतिरिक्त पाठयक्रम गतिविधियों" - -[show_more] -other = "और देखें" - -[show_less] -other = "कम दिखाएं" - -# [responsibilities] -# other = "Responsibilities:" - -# [present] -# other = "Present" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -# [project_details] -# other = "Details" - -# [err_404] -# other = "The page you are looking for is not there yet." - -[more] -other = "अधिक" - -[view_certificate] -other = "प्रमाणपत्र देखें" - -[notes] -other = "टिप्पणियाँ" - -[disclaimer_text] -other = "दायित्व सूचना" - -[search] -other = "खोज" diff --git a/i18n/id.toml b/i18n/id.toml deleted file mode 100644 index c82b940..0000000 --- a/i18n/id.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Beranda" - -[posts] -other = "Artikel" - -[toc_heading] -other = "Daftar Isi" - -[tags] -other = "Tags" - -[categories] -other = "Kategori" - -[at] -other = "at" - -[resume] -other = "Resume saya" - -[navigation] -other = "Navigasi" - -[contact_me] -other = "Hubungi saya:" - -[email] -other = "Surel" - -[phone] -other = "Telepon" - -[newsletter_text] -other = "Ingin selalu update dengan notifikasi email" - -[newsletter_input_placeholder] -other = "Masukkan email" - -[newsletter_warning] -other = "Dengan memasukkan alamat email Anda, Anda setuju untuk menerima buletin situs web ini." - -[submit] -other = "Kirim" - -[hugoAttributionText] -other = "Didukung oleh" - -[prev] -other = "Sebelumnya" - -[next] -other = "Lanjut" - -# [share_on] -# other = "Share on" - -[improve_this_page] -other = "Perbaiki halaman ini" - -[out_of] -other = "dari" - -[publications] -other = "Publikasi" - -[taken_courses] -other = "Kursus yang Diambil" - -[course_name] -other = "Nama kursus" - -[total_credit] -other = "Total Kredit" - -[obtained_credit] -other = "Memperoleh Kredit" - -[extracurricular_activities] -other = "Kegiatan ekstrakulikuler" - -[show_more] -other = "Lihat Selengkapnya" - -[show_less] -other = "Tampilkan Lebih Sedikit" - -# [responsibilities] -# other = "Responsibilities:" - -# [present] -# other = "Present" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -# [project_details] -# other = "Details" - -# [err_404] -# other = "The page you are looking for is not there yet." - -[more] -other = "Lebih" - -[view_certificate] -other = "Lihat Sertifikat" - -[notes] -other = "Catatan" - -[disclaimer_text] -other = "Pemberitahuan Kewajiban" - -[search] -other = "Mencari" diff --git a/i18n/it.toml b/i18n/it.toml deleted file mode 100644 index b88a214..0000000 --- a/i18n/it.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Home" - -[posts] -other = "Post" - -[toc_heading] -other = "Contenuti" - -[tags] -other = "Tags" - -[categories] -other = "Categorie" - -[at] -other = "presso" - -[resume] -other = "Il mio curriculum" - -[navigation] -other = "Navigazione" - -[contact_me] -other = "Contattami:" - -[email] -other = "Email" - -[phone] -other = "Telefono" - -[newsletter_text] -other = "Resta aggiornato con la notifica di email" - -[newsletter_input_placeholder] -other = "Inserisci l'email" - -[newsletter_warning] -other = "Inserendo il tuo indirizzo email, accetti di ricevere la newsletter di questo sito." - -[submit] -other = "Invia" - -[hugoAttributionText] -other = "Creato con" - -[prev] -other = "Precedente" - -[next] -other = "Successivo" - -[share_on] -other = "Condividi su:" - -[improve_this_page] -other = "Migliora questa pagina" - -[out_of] -other = "su" - -[publications] -other = "Pubblicazioni" - -[taken_courses] -other = "Corsi presi" - -[course_name] -other = "Nome del corso" - -[total_credit] -other = "Credito totale" - -[obtained_credit] -other = "Credito ottenuto" - -[extracurricular_activities] -other = "Attività extracurriculari" - -[show_more] -other = "Vedi altro" - -[show_less] -other = "Mostra meno" - -[responsibilities] -other = "Responsabilità:" - -[present] -other = "Ad oggi" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -# [project_details] -# other = "Details" - -# [err_404] -# other = "The page you are looking for is not there yet." - -[more] -other = "Di più" - -[view_certificate] -other = "Vedi certificato" - -[notes] -other = "Appunti" - -[disclaimer_text] -other = "Avviso di responsabilità" - -[search] -other = "Ricerca" diff --git a/i18n/jp.toml b/i18n/jp.toml deleted file mode 100644 index fab32a5..0000000 --- a/i18n/jp.toml +++ /dev/null @@ -1,123 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "ホーム" - -[posts] -other = "記事" - -[toc_heading] -other = "目次" - -[tags] -other = "タグ" - -[categories] -other = "カテゴリ" - -[resume] -other = "職務経歴書" - -[navigation] -other = "メニュー" - -[contact_me] -other = "連絡先" - -[email] -other = "メール" - -[phone] -other = "電話番号" - -[newsletter_text] -other = "メールで最新情報を受け取る" - -[newsletter_input_placeholder] -other = "ここにメールアドレスを入力" - -[newsletter_warning] -other = "メールアドレスを入力すると、このウェブサイトのニュースレターを受け取ることに同意したことになります。" - -[submit] -other = "登録" - -[hugoAttributionText] -other = "搭載" - -[prev] -other = "前" - -[next] -other = "次" - -# [share_on] -# other = "Share on" - -[improve_this_page] -other = "編集リクエストを送る" - -[out_of] -other = "のうち" - -[publications] -other = "出版物" - -[taken_courses] -other = "受講したコース" - -[course_name] -other = "コース名" - -[total_credit] -other = "合計クレジット" - -[obtained_credit] -other = "取得したクレジット" - -[extracurricular_activities] -other = "課外活動" - -[show_more] -other = "続きを見る" - -[show_less] -other = "表示を減らす" - -# [responsibilities] -# other = "Responsibilities:" - -# [present] -# other = "Present" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -# [project_details] -# other = "Details" - -# [err_404] -# other = "The page you are looking for is not there yet." - -[more] -other = "もっと" - -[view_certificate] -other = "ビューの証明書" - -[notes] -other = "ノート" - -[disclaimer_text] -other = "責任通知" - -[search] -other = "検索" diff --git a/i18n/ko.toml b/i18n/ko.toml deleted file mode 100644 index cefdb30..0000000 --- a/i18n/ko.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Home" - -[posts] -other = "게시글" - -[toc_heading] -other = "목차" - -[tags] -other = "태그" - -[categories] -other = "카테고리" - -[at] -other = "at" - -[resume] -other = "이력서" - -[navigation] -other = "바로가기" - -[contact_me] -other = "Contact me:" - -[email] -other = "Email" - -[phone] -other = "Phone" - -[newsletter_text] -other = "이메일 알림으로 최신 상태를 유지해보세요" - -[newsletter_input_placeholder] -other = "이메일을 입력하세요" - -[newsletter_warning] -other = "이메일 주소를 입력하면이 웹 사이트의 뉴스 레터 수신에 동의하는 것입니다." - -[submit] -other = "제출" - -[hugoAttributionText] -other = "Powered by" - -[prev] -other = "이전" - -[next] -other = "다음" - -# [share_on] -# other = "Share on" - -[improve_this_page] -other = "이 페이지를 개선" - -[out_of] -other = "out of" - -[publications] -other = "Publications" - -[taken_courses] -other = "이수 과목" - -[course_name] -other = "과목명" - -[total_credit] -other = "총 수익" - -[obtained_credit] -other = "획득한 수익" - -[extracurricular_activities] -other = "기타 활동" - -[show_more] -other = "더보기" - -[show_less] -other = "간단히보기" - -# [responsibilities] -# other = "Responsibilities:" - -# [present] -# other = "Present" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -# [project_details] -# other = "Details" - -# [err_404] -# other = "The page you are looking for is not there yet." - -[more] -other = "더" - -[view_certificate] -other = "인증서보기" - -[notes] -other = "메모" - -[disclaimer_text] -other = "책임 고지" - -[search] -other = "찾다" diff --git a/i18n/nl.toml b/i18n/nl.toml deleted file mode 100644 index 8487720..0000000 --- a/i18n/nl.toml +++ /dev/null @@ -1,125 +0,0 @@ -[home] -other = "Hoofdpagina" - -[posts] -other = "Posts" - -[toc_heading] -other = "Inhoudsopgave" - -[tags] -other = "Tags" - -[categories] -other = "Categorieën" - -[at] -other = "bij" - -[resume] -other = "Curriculum Vitae" - -[navigation] -other = "Navigatie" - -[contact_me] -other = "Contactgegevens" - -[email] -other = "E-Mail" - -[phone] -other = "Telefoon" - -[newsletter_text] -other = "Ontvang updates via email" - -[newsletter_input_placeholder] -other = "Email ingeven" - -[newsletter_warning] -other = "Door uw e-mailadres in te voeren, gaat u akkoord met het ontvangen van de nieuwsbrief van deze website." - -[submit] -other = "Opslaan" - -[hugoAttributionText] -other = "Mogelijk gemaakt met" - -[prev] -other = "Vorige" - -[next] -other = "Volgende" - -[share_on] -other = "Delen op" - -[improve_this_page] -other = "Deze pagina verbeteren" - -[out_of] -other = "van de" - -[publications] -other = "Publicaties" - -[taken_courses] -other = "Gevolgde cursussen" - -[course_name] -other = "Cursus naam" - -[total_credit] -other = "Totaal krediet" - -[obtained_credit] -other = "Krediet verkregen" - -[extracurricular_activities] -other = "Buitenschoolse activiteiten" - -[show_more] -other = "Bekijk meer" - -[show_less] -other = "Laat minder zien" - -[responsibilities] -other = "Verantwoordelijkheden:" - -[present] -other = "Heden" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -[project_details] -other = "Details" - -[err_404] -other = "De pagina waar je voor zoekt bestaat nog niet." - -[more] -other = "Meer" - -[view_certificate] -other = "Bekijk certificaat" - -[notes] -other = "Opmerkingen" - -[disclaimer_text] -other = "Aansprakelijkheidsverklaring" - -[search] -other = "Zoek" diff --git a/i18n/pt-br.toml b/i18n/pt-br.toml deleted file mode 100644 index 7642dc8..0000000 --- a/i18n/pt-br.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Início" - -[posts] -other = "Postagens" - -[toc_heading] -other = "Tabela de conteúdos" - -[tags] -other = "Etiquetas" - -[categories] -other = "Categorias" - -[at] -other = "em" - -[resume] -other = "Currículo" - -[navigation] -other = "Navegação" - -[contact_me] -other = "Contato:" - -[email] -other = "E-mail" - -[phone] -other = "Telefone" - -[newsletter_text] -other = "Se mantenha atualizado com notificações por e-mail" - -[newsletter_input_placeholder] -other = "Inserir email" - -[newsletter_warning] -other = "Ao assinar nossa newsletter, você está concordando em receber a newsletter deste site." - -[submit] -other = "Enviar" - -[hugoAttributionText] -other = "Desenvolvido por" - -[prev] -other = "Anterior" - -[next] -other = "Próximo" - -[share_on] -other = "Compartilhe" - -[improve_this_page] -other = "Melhore esta página" - -[out_of] -other = "de" - -[publications] -other = "Publicações" - -[taken_courses] -other = "Cursos realizados" - -[course_name] -other = "Nome do Curso" - -[total_credit] -other = "Créditos Totais" - -[obtained_credit] -other = "Créditos Obtidos" - -[extracurricular_activities] -other = "Atividades Extracurriculares" - -[show_more] -other = "Ver Mais" - -[show_less] -other = "Ver Menos" - -[responsibilities] -other = "Responsabilidades:" - -[present] -other = "Presente" - -[comments_javascript] -other = "Por favor ative JavaScript para ver o" - -[comments_by] -other = "comentários por" - -[read] -other = "Ler" - -[project_star] -other = "Star" - -[project_details] -other = "Detalhes" - -[err_404] -other = "A página que você está procurando ainda não está aqui." - -[more] -other = "Mais" - -[view_certificate] -other = "Ver Certificado" - -[notes] -other = "Notas" - -[disclaimer_text] -other = "Nota legal" - -[search] -other = "Pesquisar" diff --git a/i18n/pt.toml b/i18n/pt.toml deleted file mode 100644 index 65f7703..0000000 --- a/i18n/pt.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Início" - -[posts] -other = "Artigos" - -[toc_heading] -other = "Tabela de conteúdos" - -[tags] -other = "Etiquetas" - -[categories] -other = "Categorias" - -[at] -other = "em" - -[resume] -other = "O meu Currículo" - -[navigation] -other = "Navegação" - -[contact_me] -other = "Contacte-me:" - -[email] -other = "Email" - -[phone] -other = "Telefone" - -[newsletter_text] -other = "Mantenha-se actualizado com notificações por email" - -[newsletter_input_placeholder] -other = "Inserir email" - -[newsletter_warning] -other = "Ao submeter o seu endereço de email, concorda em receber a newsletter deste website." - -[submit] -other = "Enviar" - -[hugoAttributionText] -other = "Desenvolvido por" - -[prev] -other = "Anterior" - -[next] -other = "Próximo" - -[share_on] -other = "Partilha" - -[improve_this_page] -other = "Melhore esta página" - -[out_of] -other = "de" - -[publications] -other = "Publicações" - -[taken_courses] -other = "Cursos frequentados" - -[course_name] -other = "Nome do Curso" - -[total_credit] -other = "Créditos Totais" - -[obtained_credit] -other = "Créditos Obtidos" - -[extracurricular_activities] -other = "Actividades Extracurriculares" - -[show_more] -other = "Ver Mais" - -[show_less] -other = "Ver Menos" - -[responsibilities] -other = "Responsabilidades:" - -[present] -other = "Presente" - -[comments_javascript] -other = "Por favor active JavaScript para ver o" - -[comments_by] -other = "comentários por" - -[read] -other = "Ler" - -[project_star] -other = "Star" - -[project_details] -other = "Detalhes" - -[err_404] -other = "A página que procura ainda não está aqui." - -[more] -other = "Mais" - -[view_certificate] -other = "Ver Certificado" - -[notes] -other = "Notas" - -[disclaimer_text] -other = "Nota legal" - -[search] -other = "Pesquisar" diff --git a/i18n/ru.toml b/i18n/ru.toml deleted file mode 100644 index 1b60205..0000000 --- a/i18n/ru.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Главная" - -[posts] -other = "Посты" - -[toc_heading] -other = "Оглавление" - -[tags] -other = "Теги" - -[categories] -other = "Категории" - -[at] -other = "в" - -[resume] -other = "Резюме" - -[navigation] -other = "Навигация" - -[contact_me] -other = "Контакты:" - -[email] -other = "Email" - -[phone] -other = "Телефон" - -[newsletter_text] -other = "Подпишитесь на уведомления, чтобы не пропустить новый пост" - -[newsletter_input_placeholder] -other = "Введите email" - -[newsletter_warning] -other = "Вводя свой адрес электронной почты, вы соглашаетесь получать информационный бюллетень этого веб-сайта." - -[submit] -other = "Подтвердить" - -[hugoAttributionText] -other = "Создано при помощи" - -[prev] -other = "Предыдущий" - -[next] -other = "Следующий" - -# [share_on] -# other = "Share on" - -[improve_this_page] -other = "Улучшить эту страницу" - -[out_of] -other = "из" - -[publications] -other = "Публикации" - -[taken_courses] -other = "Пройденные курсы" - -[course_name] -other = "Название курса" - -[total_credit] -other = "Общий кредит" - -[obtained_credit] -other = "Полученный кредит" - -[extracurricular_activities] -other = "Внеклассные занятия" - -[show_more] -other = "Узнать больше" - -[show_less] -other = "Показывай меньше" - -# [responsibilities] -# other = "Responsibilities:" - -# [present] -# other = "Present" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -# [project_details] -# other = "Details" - -# [err_404] -# other = "The page you are looking for is not there yet." - -[more] -other = "Более" - -[view_certificate] -other = "Просмотреть сертификат" - -[notes] -other = "Ноты" - -[disclaimer_text] -other = "Уведомление об ответственности" - -[search] -other = "Поиск" diff --git a/i18n/tr.toml b/i18n/tr.toml deleted file mode 100644 index e6eec2d..0000000 --- a/i18n/tr.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Anasayfa" - -[posts] -other = "Gönderiler" - -[toc_heading] -other = "İçerik Tablosu" - -[tags] -other = "Etiketler" - -[categories] -other = "Kategoriler" - -[at] -other = "," - -[resume] -other = "Özgeçmişim" - -[navigation] -other = "Menü" - -[contact_me] -other = "İletişime geç:" - -[email] -other = "E-Posta" - -[phone] -other = "Telefon" - -[newsletter_text] -other = "Yeni içeriklerden haberdar olmak için E-Posta adresinizi giriniz." - -[newsletter_input_placeholder] -other = "E-Posta adresi giriniz." - -[newsletter_warning] -other = "E-Posta adresini girerseniz, bu web sitesinin haber bültenini almayı kabul ediyorsunuz." - -[submit] -other = "Onayla" - -[hugoAttributionText] -other = "" - -[prev] -other = "Önceki" - -[next] -other = "Sonraki" - -[share_on] -other = "Paylaş" - -[improve_this_page] -other = "Bu sayfaya katkıda bulunun" - -[out_of] -other = "/" - -[publications] -other = "Akademik Yayınlar" - -[taken_courses] -other = "Alınan Dersler" - -[course_name] -other = "Ders Adı" - -[total_credit] -other = "Üzerinden" - -[obtained_credit] -other = "Alınan Not" - -[extracurricular_activities] -other = "Ders Dışı Aktiviteler" - -[show_more] -other = "Devamını Göster" - -[show_less] -other = "Gizle" - -[responsibilities] -other = "Sorumluluklar:" - -[present] -other = "Halen" - -[comments_javascript] -other = "Görüntüleyebilmek için lüften Javascript etkinleştirin" - -[comments_by] -other = "comments powered by" - -[read] -other = "Oku" - -[project_star] -other = "Star" - -[project_details] -other = "Detaylar" - -[err_404] -other = "Aradığınız sayfa bulunamadı." - -[more] -other = "Devamını Göster" - -[view_certificate] -other = "Sertifikayı Görüntüle" - -[notes] -other = "Notlar" - -[disclaimer_text] -other = "Yükümlülük Bildirisi" - -[search] -other = "Ara" diff --git a/i18n/vn.toml b/i18n/vn.toml deleted file mode 100644 index 4184752..0000000 --- a/i18n/vn.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "Trang chủ" - -[posts] -other = "Bài viết" - -[toc_heading] -other = "Mục lục" - -[tags] -other = "Thẻ" - -[categories] -other = "Thể loại" - -[at] -other = "tại" - -[resume] -other = "Sơ yếu lý lịch của tôi" - -[navigation] -other = "Điều hướng" - -[contact_me] -other = "Liên hệ với tôi" - -[email] -other = "Email" - -[phone] -other = "Điện thoại" - -[newsletter_text] -other = "Nhận email cập nhật thông tin" - -[newsletter_input_placeholder] -other = "Nhập email" - -[newsletter_warning] -other = "Bằng cách nhập địa chỉ email của bạn, bạn đồng ý nhận bản tin của trang web này." - -[submit] -other = "Gửi" - -[hugoAttributionText] -other = "Được cung cấp bởi" - -[prev] -other = "Trước" - -[next] -other = "Tiếp theo" - -# [share_on] -# other = "Share on" - -[improve_this_page] -other = "Cải thiện trang này" - -[out_of] -other = "trên" - -[publications] -other = "Ấn phẩm" - -[taken_courses] -other = "Đã thực hiện các khóa học" - -[course_name] -other = "Tên khóa học" - -[total_credit] -other = "Tổng số tín dụng" - -[obtained_credit] -other = "Tín dụng thu được" - -[extracurricular_activities] -other = "Các hoạt động ngoại khóa" - -[show_more] -other = "Xem thêm" - -[show_less] -other = "Hiện ít hơn" - -# [responsibilities] -# other = "Responsibilities:" - -# [present] -# other = "Present" - -# [comments_javascript] -# other = "Please enable JavaScript to view the" - -# [comments_by] -# other = "comments powered by" - -# [read] -# other = "Read" - -# [project_star] -# other = "Star" - -# [project_details] -# other = "Details" - -# [err_404] -# other = "The page you are looking for is not there yet." - -[more] -other = "Hơn" - -[view_certificate] -other = "Xem chứng chỉ" - -[notes] -other = "Ghi chú" - -[disclaimer_text] -other = "Thông báo trách nhiệm" - -[search] -other = "Tìm kiếm" diff --git a/i18n/zh-cn.toml b/i18n/zh-cn.toml deleted file mode 100644 index 8ad597e..0000000 --- a/i18n/zh-cn.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "主页" - -[posts] -other = "博文" - -[toc_heading] -other = "目录" - -[tags] -other = "标签" - -[categories] -other = "类别" - -[at] -other = "at" - -[resume] -other = "我的简历" - -[navigation] -other = "导航" - -[contact_me] -other = "联系方式:" - -[email] -other = "邮箱" - -[phone] -other = "电话" - -[newsletter_text] -other = "通过电子邮件接收最新信息" - -[newsletter_input_placeholder] -other = "填入 E-mail" - -[newsletter_warning] -other = "输入您的电子邮件地址,即表示您同意接收本网站的时事通讯" - -[submit] -other = "提交" - -[hugoAttributionText] -other = "Powered by" - -[prev] -other = "上一篇" - -[next] -other = "下一篇" - -[share_on] -other = "分享" - -[improve_this_page] -other = "改善此页面" - -[out_of] -other = "/" - -[publications] -other = "刊物" - -[taken_courses] -other = "选修课程" - -[course_name] -other = "课程名" - -[total_credit] -other = "满分" - -[obtained_credit] -other = "获得分数" - -[extracurricular_activities] -other = "课外活动" - -[show_more] -other = "查看更多" - -[show_less] -other = "显示较少" - -[responsibilities] -other = "职责:" - -[present] -other = "至今" - -[comments_javascript] -other = "请启用 JavaScript 以查看" - -[comments_by] -other = "评论支持 by" - -[read] -other = "阅读" - -[project_star] -other = "Star" - -[project_details] -other = "详情" - -[err_404] -other = "您查找的页面已私奔。" - -[more] -other = "更多的" - -[view_certificate] -other = "查看证书" - -[notes] -other = "笔记" - -[disclaimer_text] -other = "免责声明" - -[search] -other = "搜索" diff --git a/i18n/zh-tw.toml b/i18n/zh-tw.toml deleted file mode 100644 index 5767f9b..0000000 --- a/i18n/zh-tw.toml +++ /dev/null @@ -1,126 +0,0 @@ -# More documentation here: https://github.com/nicksnyder/go-i18n -[home] -other = "首頁" - -[posts] -other = "文章" - -[toc_heading] -other = "目錄" - -[tags] -other = "标签" - -[categories] -other = "类别" - -[at] -other = "at" - -[resume] -other = "履歷" - -[navigation] -other = "導覽列" - -[contact_me] -other = "聯絡方式:" - -[email] -other = "信箱" - -[phone] -other = "電話" - -[newsletter_text] -other = "通過電子郵件接收最新消息" - -[newsletter_input_placeholder] -other = "在此輸入您的電子郵件地址" - -[newsletter_warning] -other = "輸入您的電子郵件地址,即表示您同意接受本網站的最新消息" - -[submit] -other = "提交" - -[hugoAttributionText] -other = "Powered by" - -[prev] -other = "上一篇" - -[next] -other = "下一篇" - -[share_on] -other = "分享" - -[improve_this_page] -other = "改善此頁面" - -[out_of] -other = "/" - -[publications] -other = "出版" - -[taken_courses] -other = "修習課程" - -[course_name] -other = "課程名稱" - -[total_credit] -other = "總分" - -[obtained_credit] -other = "獲得學分" - -[extracurricular_activities] -other = "課外活動" - -[show_more] -other = "查看更多" - -[show_less] -other = "顯示較少" - -[responsibilities] -other = "職責:" - -[present] -other = "現在" - -[comments_javascript] -other = "請開啟 JavaScript 查看" - -[comments_by] -other = "評論由" - -[read] -other = "閱讀" - -[project_star] -other = "Star" - -[project_details] -other = "詳情" - -[err_404] -other = "您訪問的頁面不存在" - -[more] -other = "更多的" - -[view_certificate] -other = "查看證書" - -[notes] -other = "筆記" - -[disclaimer_text] -other = "免責聲明" - -[search] -other = "搜索" diff --git a/images/about.png b/images/about.png deleted file mode 100644 index a8e7179..0000000 Binary files a/images/about.png and /dev/null differ diff --git a/images/list.png b/images/list.png deleted file mode 100644 index 047bcde..0000000 Binary files a/images/list.png and /dev/null differ diff --git a/images/screenshot.png b/images/screenshot.png deleted file mode 100644 index c6fbc4b..0000000 Binary files a/images/screenshot.png and /dev/null differ diff --git a/images/single.png b/images/single.png deleted file mode 100644 index 45dbc57..0000000 Binary files a/images/single.png and /dev/null differ diff --git a/images/tn.png b/images/tn.png deleted file mode 100644 index 5937dbb..0000000 Binary files a/images/tn.png and /dev/null differ diff --git a/images/tn2.png b/images/tn2.png deleted file mode 100644 index 288ee39..0000000 Binary files a/images/tn2.png and /dev/null differ diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 6dac960..0000000 --- a/package-lock.json +++ /dev/null @@ -1,2725 +0,0 @@ -{ - "name": "toha", - "version": "1.0.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@braintree/sanitize-url": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.2.tgz", - "integrity": "sha512-Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg==", - "dev": true - }, - "@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - } - }, - "@fontsource/mulish": { - "version": "4.5.13", - "resolved": "https://registry.npmjs.org/@fontsource/mulish/-/mulish-4.5.13.tgz", - "integrity": "sha512-uJ4NzvEZSCZnrKU0Xvk6Qf0WFMRnyCwslLOtHIao3vh2+W1llbaZy4+PiR6mcB2Y62dPG2HvZPN0NnKfDaFSbA==", - "dev": true - }, - "@fortawesome/fontawesome-free": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.2.1.tgz", - "integrity": "sha512-viouXhegu/TjkvYQoiRZK3aax69dGXxgEjpvZW81wIJdxm5Fnvp3VVIP4VHKqX4SvFw6qpmkILkD4RJWAdrt7A==", - "dev": true - }, - "@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", - "dev": true - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true - }, - "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - } - }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "bootstrap": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.2.tgz", - "integrity": "sha512-51Bbp/Uxr9aTuy6ca/8FbFloBUJZLHwnhTcnjIeRn2suQWsWzcuJhGjKDB5eppVte/8oCdOL3VuwxvZDUggwGQ==", - "dev": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" - } - }, - "builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", - "dev": true, - "requires": { - "semver": "^7.0.0" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001427", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001427.tgz", - "integrity": "sha512-lfXQ73oB9c8DP5Suxaszm+Ta2sr/4tf8+381GkIm1MLj/YdLf+rEDyDSRCzeltuyTVGm+/s18gdZ0q+Wmp8VsQ==", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "chokidar": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", - "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "colorette": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", - "dev": true - }, - "commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "core-js": { - "version": "3.27.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.27.2.tgz", - "integrity": "sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "custom-event-polyfill": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz", - "integrity": "sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w==", - "dev": true - }, - "d3": { - "version": "7.8.2", - "resolved": "https://registry.npmjs.org/d3/-/d3-7.8.2.tgz", - "integrity": "sha512-WXty7qOGSHb7HR7CfOzwN1Gw04MUOzN8qh9ZUsvwycIMb4DYMpY9xczZ6jUorGtO6bR9BPMPaueIKwiDxu9uiQ==", - "dev": true, - "requires": { - "d3-array": "3", - "d3-axis": "3", - "d3-brush": "3", - "d3-chord": "3", - "d3-color": "3", - "d3-contour": "4", - "d3-delaunay": "6", - "d3-dispatch": "3", - "d3-drag": "3", - "d3-dsv": "3", - "d3-ease": "3", - "d3-fetch": "3", - "d3-force": "3", - "d3-format": "3", - "d3-geo": "3", - "d3-hierarchy": "3", - "d3-interpolate": "3", - "d3-path": "3", - "d3-polygon": "3", - "d3-quadtree": "3", - "d3-random": "3", - "d3-scale": "4", - "d3-scale-chromatic": "3", - "d3-selection": "3", - "d3-shape": "3", - "d3-time": "3", - "d3-time-format": "4", - "d3-timer": "3", - "d3-transition": "3", - "d3-zoom": "3" - } - }, - "d3-array": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.2.tgz", - "integrity": "sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==", - "dev": true, - "requires": { - "internmap": "1 - 2" - } - }, - "d3-axis": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", - "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", - "dev": true - }, - "d3-brush": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", - "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", - "dev": true, - "requires": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "3", - "d3-transition": "3" - } - }, - "d3-chord": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", - "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", - "dev": true, - "requires": { - "d3-path": "1 - 3" - } - }, - "d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", - "dev": true - }, - "d3-contour": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", - "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", - "dev": true, - "requires": { - "d3-array": "^3.2.0" - } - }, - "d3-delaunay": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.2.tgz", - "integrity": "sha512-IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ==", - "dev": true, - "requires": { - "delaunator": "5" - } - }, - "d3-dispatch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", - "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", - "dev": true - }, - "d3-drag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", - "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", - "dev": true, - "requires": { - "d3-dispatch": "1 - 3", - "d3-selection": "3" - } - }, - "d3-dsv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", - "dev": true, - "requires": { - "commander": "7", - "iconv-lite": "0.6", - "rw": "1" - }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true - } - } - }, - "d3-ease": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", - "dev": true - }, - "d3-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", - "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", - "dev": true, - "requires": { - "d3-dsv": "1 - 3" - } - }, - "d3-force": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", - "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", - "dev": true, - "requires": { - "d3-dispatch": "1 - 3", - "d3-quadtree": "1 - 3", - "d3-timer": "1 - 3" - } - }, - "d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", - "dev": true - }, - "d3-geo": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz", - "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==", - "dev": true, - "requires": { - "d3-array": "2.5.0 - 3" - } - }, - "d3-hierarchy": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", - "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", - "dev": true - }, - "d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", - "dev": true, - "requires": { - "d3-color": "1 - 3" - } - }, - "d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", - "dev": true - }, - "d3-polygon": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", - "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", - "dev": true - }, - "d3-quadtree": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", - "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", - "dev": true - }, - "d3-random": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", - "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", - "dev": true - }, - "d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "dev": true, - "requires": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - } - }, - "d3-scale-chromatic": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", - "integrity": "sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==", - "dev": true, - "requires": { - "d3-color": "1 - 3", - "d3-interpolate": "1 - 3" - } - }, - "d3-selection": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", - "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", - "dev": true - }, - "d3-shape": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", - "dev": true, - "requires": { - "d3-path": "^3.1.0" - } - }, - "d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", - "dev": true, - "requires": { - "d3-array": "2 - 3" - } - }, - "d3-time-format": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", - "dev": true, - "requires": { - "d3-time": "1 - 3" - } - }, - "d3-timer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", - "dev": true - }, - "d3-transition": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", - "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", - "dev": true, - "requires": { - "d3-color": "1 - 3", - "d3-dispatch": "1 - 3", - "d3-ease": "1 - 3", - "d3-interpolate": "1 - 3", - "d3-timer": "1 - 3" - } - }, - "d3-zoom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", - "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", - "dev": true, - "requires": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "2 - 3", - "d3-transition": "2 - 3" - } - }, - "dagre-d3-es": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.6.tgz", - "integrity": "sha512-CaaE/nZh205ix+Up4xsnlGmpog5GGm81Upi2+/SBHxwNwrccBb3K51LzjZ1U6hgvOlAEUsVWf1xSTzCyKpJ6+Q==", - "dev": true, - "requires": { - "d3": "^7.7.0", - "lodash-es": "^4.17.21" - } - }, - "darkreader": { - "version": "4.9.58", - "resolved": "https://registry.npmjs.org/darkreader/-/darkreader-4.9.58.tgz", - "integrity": "sha512-D/JGoJqW3m2AWBLhO+Pev+eThfs+CwRT4bcLb/1zKjql2yVwG0lx8C2XRDdSVGHw4y11n26W7syWoBpUfuhMqQ==", - "dev": true - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "dev": true, - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "delaunator": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz", - "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==", - "dev": true, - "requires": { - "robust-predicates": "^3.0.0" - } - }, - "dependency-graph": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.9.0.tgz", - "integrity": "sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dompurify": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.4.1.tgz", - "integrity": "sha512-ewwFzHzrrneRjxzmK6oVz/rZn9VWspGFRDb4/rRtIsM1n36t9AKma/ye8syCpcw+XJ25kOK/hOG7t1j2I2yBqA==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.4.270", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.270.tgz", - "integrity": "sha512-KNhIzgLiJmDDC444dj9vEOpZEgsV96ult9Iff98Vanumn+ShJHd5se8aX6KeVxdc0YQeqdrezBZv89rleDbvSg==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "es-abstract": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.0.tgz", - "integrity": "sha512-GUGtW7eXQay0c+PRq0sGIKSdaBorfVqsCMhGHo4elP7YVqZu9nCZS4UkK4gv71gOWNMra/PaSKD3ao1oWExO0g==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.0", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.3", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.4", - "is-array-buffer": "^3.0.0", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - } - }, - "es-set-tostringtag": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.0.tgz", - "integrity": "sha512-vZVAIWss0FcR/+a08s6e2/GjGjjYBCZJXDrOnj6l5kJCKhQvJs4cnVqUxkVepIhqHbKHm3uwOvPb8lRcqA3DSg==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3", - "has-tostringtag": "^1.0.0" - } - }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "eslint": { - "version": "8.31.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.31.0.tgz", - "integrity": "sha512-0tQQEVdmPZ1UtUKXjX7EMm9BlgJ08G90IhWh0PKDCb3ZLsgAOHI8fYSIzYVZej92zsgq+ft0FGsxhJ3xo2tbuA==", - "dev": true, - "requires": { - "@eslint/eslintrc": "^1.4.1", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "dependencies": { - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - } - } - }, - "eslint-config-prettier": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz", - "integrity": "sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==", - "dev": true - }, - "eslint-config-standard": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz", - "integrity": "sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==", - "dev": true - }, - "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "resolve": "^1.20.0" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", - "dev": true, - "requires": { - "debug": "^3.2.7" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-plugin-es": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", - "dev": true, - "requires": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, - "dependencies": { - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", - "dev": true - } - } - }, - "eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", - "dev": true, - "requires": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "eslint-plugin-n": { - "version": "15.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.6.0.tgz", - "integrity": "sha512-Hd/F7wz4Mj44Jp0H6Jtty13NcE69GNTY0rVlgTIj1XBnGGVI6UTdDrpE6vqu3AHo07bygq/N+7OH/lgz1emUJw==", - "dev": true, - "requires": { - "builtins": "^5.0.1", - "eslint-plugin-es": "^4.1.0", - "eslint-utils": "^3.0.0", - "ignore": "^5.1.1", - "is-core-module": "^2.11.0", - "minimatch": "^3.1.2", - "resolve": "^1.22.1", - "semver": "^7.3.8" - } - }, - "eslint-plugin-no-jquery": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-no-jquery/-/eslint-plugin-no-jquery-2.7.0.tgz", - "integrity": "sha512-Aeg7dA6GTH1AcWLlBtWNzOU9efK5KpNi7b0EhBO0o0M+awyzguUUo8gF6hXGjQ9n5h8/uRtYv9zOqQkeC5CG0w==", - "dev": true - }, - "eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", - "dev": true - }, - "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^2.0.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true - } - } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - }, - "espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", - "dev": true, - "requires": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - } - }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "ev-emitter": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-2.1.2.tgz", - "integrity": "sha512-jQ5Ql18hdCQ4qS+RCrbLfz1n+Pags27q5TwMKvZyhp5hh2UULUYZUy1keqj6k6SYsdqIYjnmz7xyyEY0V67B8Q==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", - "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "fast-memoize": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz", - "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==", - "dev": true - }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "filterizr": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/filterizr/-/filterizr-2.2.4.tgz", - "integrity": "sha512-hqyEdg7RrvJMVFOeF0yysS75HP6jLu0wBSUtSPAc3BysAtHpwcXaPnR1kYp2uZtd3YXyhH6JRfF9+H4SRvrqXg==", - "dev": true, - "requires": { - "fast-memoize": "^2.5.1", - "imagesloaded": "^4.1.4" - }, - "dependencies": { - "ev-emitter": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ev-emitter/-/ev-emitter-1.1.1.tgz", - "integrity": "sha512-ipiDYhdQSCZ4hSbX4rMW+XzNKMD1prg/sTvoVmSLkuQ1MVlwjJQQA+sW8tMYR3BLUr9KjodFV4pvzunvRhd33Q==", - "dev": true - }, - "imagesloaded": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/imagesloaded/-/imagesloaded-4.1.4.tgz", - "integrity": "sha512-ltiBVcYpc/TYTF5nolkMNsnREHW+ICvfQ3Yla2Sgr71YFwQ86bDwV9hgpFhFtrGPuwEx5+LqOHIrdXBdoWwwsA==", - "dev": true, - "requires": { - "ev-emitter": "^1.0.0" - } - } - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "flag-icon-css": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/flag-icon-css/-/flag-icon-css-4.1.7.tgz", - "integrity": "sha512-AFjSU+fv98XbU0vnTQ32vcLj89UEr1MhwDFcooQv14qWJCjg9fGZzfh9BVyDhAhIOZW/pGmJmq38RqpgPaeybQ==", - "dev": true - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "requires": { - "is-callable": "^1.1.3" - } - }, - "fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", - "dev": true - }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - } - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true - }, - "fuse.js": { - "version": "6.6.2", - "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-6.6.2.tgz", - "integrity": "sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - }, - "globals": { - "version": "13.19.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", - "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "requires": { - "define-properties": "^1.1.3" - } - }, - "globby": { - "version": "11.0.4", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", - "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - } - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", - "dev": true - }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "highlight.js": { - "version": "11.7.0", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.7.0.tgz", - "integrity": "sha512-1rRqesRFhMO/PRF+G86evnyJkCgaZFOI+Z6kdj15TA18funfoqJXvgPCLSf0SWq3SRfg1j3HlDs8o4s3EGq1oQ==", - "dev": true - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "imagesloaded": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/imagesloaded/-/imagesloaded-5.0.0.tgz", - "integrity": "sha512-/0JGSubc1MTCoDKVmonLHgbifBWHdyLkun+R/151E1c5n79hiSxcd7cB7mPXFgojYu8xnRZv7GYxzKoxW8BetQ==", - "dev": true, - "requires": { - "ev-emitter": "^2.1.2" - } - }, - "import-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", - "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", - "dev": true, - "requires": { - "import-from": "^3.0.0" - } - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } - } - }, - "import-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", - "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", - "dev": true, - "requires": { - "resolve-from": "^5.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "internal-slot": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz", - "integrity": "sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", - "dev": true - }, - "is-array-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.0.tgz", - "integrity": "sha512-TI2hnvT6dPUnn/jARFCJBKL1eeabAfLnKZ2lmW5Uh317s1Ii2IMroL1yMciEk/G+OETykVzlsH6x/L4q/avhgw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3" - } - }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true - }, - "is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - } - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "ityped": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ityped/-/ityped-1.0.3.tgz", - "integrity": "sha512-46Qnh3qs+6EJlWDHmvWRW6qiz5jFy2mkh9UvtTvQmLJMZIjKrdz4du68le7hLX4tAWCp6QTKiq/OuLv6huHxZg==", - "dev": true - }, - "jquery": { - "version": "3.6.4", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.4.tgz", - "integrity": "sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==" - }, - "js-sdsl": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", - "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==", - "dev": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "katex": { - "version": "0.16.4", - "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.4.tgz", - "integrity": "sha512-WudRKUj8yyBeVDI4aYMNxhx5Vhh2PjpzQw1GRu/LVGqL4m1AxwD1GcUp0IMbdJaf5zsjtj8ghP0DOQRYhroNkw==", - "dev": true, - "requires": { - "commander": "^8.0.0" - } - }, - "khroma": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/khroma/-/khroma-2.0.0.tgz", - "integrity": "sha512-2J8rDNlQWbtiNYThZRvmMv5yt44ZakX+Tz5ZIp/mN1pt4snn+m030Va5Z4v8xA0cQFDXBwO/8i42xL4QPsVk3g==", - "dev": true - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "lilconfig": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz", - "integrity": "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==", - "dev": true - }, - "loadjs": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/loadjs/-/loadjs-4.2.0.tgz", - "integrity": "sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA==", - "dev": true - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "dev": true - }, - "lodash.difference": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", - "integrity": "sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw=", - "dev": true - }, - "lodash.forown": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.forown/-/lodash.forown-4.4.0.tgz", - "integrity": "sha1-hRFc8E9z75ZuztUlEdOJPMRmg68=", - "dev": true - }, - "lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", - "dev": true - }, - "lodash.groupby": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz", - "integrity": "sha1-Cwih3PaDl8OXhVwyOXg4Mt90A9E=", - "dev": true - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", - "dev": true - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "mark.js": { - "version": "8.11.1", - "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", - "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "mermaid": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/mermaid/-/mermaid-9.3.0.tgz", - "integrity": "sha512-mGl0BM19TD/HbU/LmlaZbjBi//tojelg8P/mxD6pPZTAYaI+VawcyBdqRsoUHSc7j71PrMdJ3HBadoQNdvP5cg==", - "dev": true, - "requires": { - "@braintree/sanitize-url": "^6.0.0", - "d3": "^7.0.0", - "dagre-d3-es": "7.0.6", - "dompurify": "2.4.1", - "khroma": "^2.0.0", - "lodash-es": "^4.17.21", - "moment-mini": "^2.24.0", - "non-layered-tidy-tree-layout": "^2.0.2", - "stylis": "^4.1.2", - "uuid": "^9.0.0" - } - }, - "micromatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", - "dev": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", - "dev": true - }, - "moment-mini": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment-mini/-/moment-mini-2.29.4.tgz", - "integrity": "sha512-uhXpYwHFeiTbY9KSgPPRoo1nt8OxNVdMVoTBYHfSEKeRkIkwGpO+gERmhuhBtzfaeOyTkykSrm2+noJBgqt3Hg==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", - "dev": true - }, - "non-layered-tidy-tree-layout": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz", - "integrity": "sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==", - "dev": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", - "dev": true - }, - "object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", - "dev": true - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "requires": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", - "dev": true - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "plyr": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/plyr/-/plyr-3.7.3.tgz", - "integrity": "sha512-ORULENBvEvvzMYXRQBALDmEi8P+wZt1Hr/NvHqchu/t7E2xJKNkRYWx0qCA1HETIGZ6zobrOVgqeAUqWimS7fQ==", - "dev": true, - "requires": { - "core-js": "^3.26.1", - "custom-event-polyfill": "^1.0.7", - "loadjs": "^4.2.0", - "rangetouch": "^2.0.1", - "url-polyfill": "^1.1.12" - } - }, - "popper.js": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", - "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", - "dev": true - }, - "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", - "dev": true, - "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "postcss-cli": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-8.3.1.tgz", - "integrity": "sha512-leHXsQRq89S3JC9zw/tKyiVV2jAhnfQe0J8VI4eQQbUjwIe0XxVqLrR+7UsahF1s9wi4GlqP6SJ8ydf44cgF2Q==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "chokidar": "^3.3.0", - "dependency-graph": "^0.9.0", - "fs-extra": "^9.0.0", - "get-stdin": "^8.0.0", - "globby": "^11.0.0", - "postcss-load-config": "^3.0.0", - "postcss-reporter": "^7.0.0", - "pretty-hrtime": "^1.0.3", - "read-cache": "^1.0.0", - "slash": "^3.0.0", - "yargs": "^16.0.0" - } - }, - "postcss-load-config": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz", - "integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==", - "dev": true, - "requires": { - "import-cwd": "^3.0.0", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - } - }, - "postcss-reporter": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.2.tgz", - "integrity": "sha512-JyQ96NTQQsso42y6L1H1RqHfWH1C3Jr0pt91mVv5IdYddZAE9DUZxuferNgk6q0o6vBVOrfVJb10X1FgDzjmDw==", - "dev": true, - "requires": { - "colorette": "^1.2.1", - "lodash.difference": "^4.5.0", - "lodash.forown": "^4.4.0", - "lodash.get": "^4.4.2", - "lodash.groupby": "^4.6.0", - "lodash.sortby": "^4.7.0" - } - }, - "postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", - "dev": true - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "rangetouch": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/rangetouch/-/rangetouch-2.0.1.tgz", - "integrity": "sha512-sln+pNSc8NGaHoLzwNBssFSf/rSYkqeBXzX1AtJlkJiUaVSJSbRAWJk+4omsXkN+EJalzkZhWQ3th1m0FpR5xA==", - "dev": true - }, - "read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", - "dev": true, - "requires": { - "pify": "^2.3.0" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - } - }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "dev": true - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true - }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dev": true, - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "robust-predicates": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz", - "integrity": "sha512-ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g==", - "dev": true - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "rw": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", - "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", - "dev": true - }, - "safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "stylis": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", - "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - }, - "typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - } - }, - "unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - }, - "update-browserslist-db": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz", - "integrity": "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==", - "dev": true, - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "url-polyfill": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/url-polyfill/-/url-polyfill-1.1.12.tgz", - "integrity": "sha512-mYFmBHCapZjtcNHW0MDq9967t+z4Dmg5CJ0KqysK3+ZbyoNOWQHksGCTWwDhxGXllkWlOc10Xfko6v4a3ucM6A==", - "dev": true - }, - "uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", - "dev": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - } - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true - } - } -} diff --git a/package.hugo.json b/package.hugo.json deleted file mode 100644 index c000e52..0000000 --- a/package.hugo.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "name": "toha", - "version": "1.0.0", - "description": "A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness.", - "main": "index.js", - "scripts": { - "lint": "eslint .", - "lint:fix": "eslint --fix .", - "autoprefixer": "postcss static/css/*/*.css --use autoprefixer -r --no-map" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/hugo-toha/toha.git" - }, - "author": "Emruz Hossain", - "license": "MIT", - "bugs": { - "url": "https://github.com/hugo-toha/toha/issues" - }, - "homepage": "https://github.com/hugo-toha/toha#readme", - "devDependencies": { - "autoprefixer": "^10.4.13", - "eslint": "^8.31.0", - "eslint-config-prettier": "^8.6.0", - "eslint-config-standard": "^17.0.0", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-n": "^15.6.0", - "eslint-plugin-no-jquery": "^2.7.0", - "eslint-plugin-promise": "^6.1.1", - "postcss": "^8.4.21", - "postcss-cli": "^8.3.1", - "@fontsource/mulish": "4.5.13", - "@fortawesome/fontawesome-free": "^6.2.0", - "bootstrap": "^4.6.2", - "darkreader": "^4.9.58", - "filterizr": "^2.2.4", - "flag-icon-css": "^4.1.7", - "fuse.js": "^6.6.2", - "highlight.js": "^11.6.0", - "imagesloaded": "^5.0.0", - "ityped": "^1.0.3", - "katex": "^0.16.3", - "mark.js": "^8.11.1", - "mermaid": "^9.2.1", - "plyr": "^3.7.2", - "popper.js": "^1.16.1" - } -} diff --git a/package.json b/package.json deleted file mode 100644 index c7a72c2..0000000 --- a/package.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "author": "Emruz Hossain", - "bugs": { - "url": "https://github.com/hugo-toha/toha/issues" - }, - "comments": { - "dependencies": {}, - "devDependencies": { - "@fontsource/mulish": "project", - "@fortawesome/fontawesome-free": "project", - "autoprefixer": "project", - "bootstrap": "project", - "darkreader": "project", - "eslint": "project", - "eslint-config-prettier": "project", - "eslint-config-standard": "project", - "eslint-plugin-import": "project", - "eslint-plugin-n": "project", - "eslint-plugin-no-jquery": "project", - "eslint-plugin-promise": "project", - "filterizr": "project", - "flag-icon-css": "project", - "fuse.js": "project", - "highlight.js": "project", - "imagesloaded": "project", - "ityped": "project", - "katex": "project", - "mark.js": "project", - "mermaid": "project", - "plyr": "project", - "popper.js": "project", - "postcss": "project", - "postcss-cli": "project" - } - }, - "dependencies": { - "jquery": "^3.6.4" - }, - "description": "A [Hugo](https://gohugo.io/) theme for a personal portfolio with minimalist design and responsiveness.", - "devDependencies": { - "@fontsource/mulish": "4.5.13", - "@fortawesome/fontawesome-free": "^6.2.0", - "autoprefixer": "^10.4.13", - "bootstrap": "^4.6.2", - "darkreader": "^4.9.58", - "eslint": "^8.31.0", - "eslint-config-prettier": "^8.6.0", - "eslint-config-standard": "^17.0.0", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-n": "^15.6.0", - "eslint-plugin-no-jquery": "^2.7.0", - "eslint-plugin-promise": "^6.1.1", - "filterizr": "^2.2.4", - "flag-icon-css": "^4.1.7", - "fuse.js": "^6.6.2", - "highlight.js": "^11.6.0", - "imagesloaded": "^5.0.0", - "ityped": "^1.0.3", - "katex": "^0.16.3", - "mark.js": "^8.11.1", - "mermaid": "^9.2.1", - "plyr": "^3.7.2", - "popper.js": "^1.16.1", - "postcss": "^8.4.21", - "postcss-cli": "^8.3.1" - }, - "homepage": "https://github.com/hugo-toha/toha#readme", - "license": "MIT", - "main": "index.js", - "name": "toha", - "repository": { - "type": "git", - "url": "git+https://github.com/hugo-toha/toha.git" - }, - "scripts": { - "autoprefixer": "postcss static/css/*/*.css --use autoprefixer -r --no-map", - "lint": "eslint .", - "lint:fix": "eslint --fix ." - }, - "version": "1.0.0" -} diff --git a/theme.toml b/theme.toml deleted file mode 100644 index 63621a8..0000000 --- a/theme.toml +++ /dev/null @@ -1,40 +0,0 @@ -# theme.toml template for a Hugo theme -# See https://github.com/gohugoio/hugoThemes#themetoml for an example -description = "A simple hugo theme for personal portfolio" -homepage = "https://hugo-toha.github.io/" -license = "MIT" -licenselink = "https://github.com/hugo-toha/toha/blob/master/LICENSE" -min_version = "0.109.0" -name = "Toha" - -features = [ - "Minimalist Design", - "Fully Responsive", - "Multiple Language Support", - "Carefully Designed Cards", - "Experience Timeline", - "Achievement Gallery", - "Sidebar to Categorize the Posts", - "Short Codes", - "Google Analytics Support", - "Disqus Comment Support", -] -tags = [ - "Portfolio", - "Blog", - "Resume", - "Projects", - "Gallery", - "Multilingual", - "Minimalist", - "Responsive", - "Customizable", - "Google analytics", - "Disqus", - "Bootstrap", - "Syntax highlighting", -] - -[author] -homepage = "https://hossainemruz.github.io" -name = "Emruz Hossain" diff --git a/themes/toha b/themes/toha deleted file mode 160000 index 83d10c5..0000000 --- a/themes/toha +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 83d10c59ad6001af14733b10539baeaa0550c14f