From f175a37df064fdd3972832a7c62b9f91ef5085ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20M=C3=A4hr?= Date: Tue, 5 Mar 2024 08:47:42 +0100 Subject: [PATCH] Initial commit --- .gitattributes | 341 +++++ .github/ISSUE_TEMPLATE/bug_report.yml | 35 + .github/ISSUE_TEMPLATE/config.yml | 8 + .github/ISSUE_TEMPLATE/data_issue_report.yml | 32 + .github/ISSUE_TEMPLATE/docs_issue.yml | 23 + .github/ISSUE_TEMPLATE/feature_request.yml | 22 + .github/labeler.yml | 35 + .github/pull_request_template.md | 22 + .github/workflows/changelog.yaml | 25 + .github/workflows/greetings.yml | 13 + .github/workflows/label.yml | 12 + .gitignore | 230 +++ .husky/pre-commit | 4 + .prettierrc | 6 + CHANGELOG.md | 29 + CITATION.cff | 22 + CODE_OF_CONDUCT.md | 132 ++ CONTRIBUTING.md | 17 + LICENSE.md | 395 +++++ README.md | 139 ++ README.template.md | 84 ++ SECURITY.md | 27 + _config.yml | 3 + _layouts/default.html | 62 + analysis/.gitkeep | 0 android-chrome-192x192.png | Bin 0 -> 6769 bytes android-chrome-512x512.png | Bin 0 -> 19335 bytes apple-touch-icon.png | Bin 0 -> 5947 bytes assets/css/style.scss | 13 + assets/images/.gitkeep | 0 build/debug/.gitkeep | 0 cliff.toml | 73 + data/clean/.gitkeep | 0 data/raw/.gitkeep | 0 docs/codelist.txt | 1 + example.env | 1 + favicon-16x16.png | Bin 0 -> 668 bytes favicon-32x32.png | Bin 0 -> 1214 bytes favicon.ico | Bin 0 -> 15406 bytes favicon.txt | 6 + package.json | 33 + pnpm-lock.yaml | 1380 ++++++++++++++++++ project-management/communication.md | 3 + project-management/people.md | 3 + project-management/project-report.md | 3 + project-management/tools.md | 3 + report.md | 3 + site.webmanifest | 11 + src/.gitkeep | 0 test/.gitkeep | 0 50 files changed, 3251 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/data_issue_report.yml create mode 100644 .github/ISSUE_TEMPLATE/docs_issue.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/labeler.yml create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/changelog.yaml create mode 100644 .github/workflows/greetings.yml create mode 100644 .github/workflows/label.yml create mode 100644 .gitignore create mode 100755 .husky/pre-commit create mode 100644 .prettierrc create mode 100644 CHANGELOG.md create mode 100644 CITATION.cff create mode 100644 CODE_OF_CONDUCT.md create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE.md create mode 100644 README.md create mode 100644 README.template.md create mode 100644 SECURITY.md create mode 100644 _config.yml create mode 100644 _layouts/default.html create mode 100644 analysis/.gitkeep create mode 100644 android-chrome-192x192.png create mode 100644 android-chrome-512x512.png create mode 100644 apple-touch-icon.png create mode 100644 assets/css/style.scss create mode 100644 assets/images/.gitkeep create mode 100644 build/debug/.gitkeep create mode 100644 cliff.toml create mode 100644 data/clean/.gitkeep create mode 100644 data/raw/.gitkeep create mode 100644 docs/codelist.txt create mode 100644 example.env create mode 100644 favicon-16x16.png create mode 100644 favicon-32x32.png create mode 100644 favicon.ico create mode 100644 favicon.txt create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 project-management/communication.md create mode 100644 project-management/people.md create mode 100644 project-management/project-report.md create mode 100644 project-management/tools.md create mode 100644 report.md create mode 100644 site.webmanifest create mode 100644 src/.gitkeep create mode 100644 test/.gitkeep diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..83cf1bc --- /dev/null +++ b/.gitattributes @@ -0,0 +1,341 @@ +# Common settings that generally should always be used with your language specific settings +# generated by https://www.richie-bendall.ml/gitattributes-generator/ + +# Auto detect text files and perform LF normalization +* text=auto + +# +# The above will handle all files NOT found below +# + +# Documents +*.bibtex text diff=bibtex +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain +*.md text diff=markdown +*.mdx text diff=markdown +*.tex text diff=tex +*.adoc text +*.textile text +*.mustache text +*.csv text +*.tab text +*.tsv text +*.txt text +*.sql text +*.epub diff=astextplain + +# Graphics +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.tif binary +*.tiff binary +*.ico binary +# SVG treated as text by default. +*.svg text +# If you want to treat it as binary, +# use the following line instead. +# *.svg binary +*.eps binary + +# Scripts +*.bash text eol=lf +*.fish text eol=lf +*.sh text eol=lf +*.zsh text eol=lf +# These are explicitly windows files and should use crlf +*.bat text eol=crlf +*.cmd text eol=crlf +*.ps1 text eol=crlf + +# Serialisation +*.json text +*.toml text +*.xml text +*.yaml text +*.yml text + +# Archives +*.7z binary +*.gz binary +*.tar binary +*.tgz binary +*.zip binary + +# Text files where line endings should be preserved +*.patch -text + +# +# Exclude files from exporting +# + +.gitattributes export-ignore +.gitignore export-ignore +.gitkeep export-ignore + +# Apply override to all files in the directory +*.md linguist-detectable + +# Basic .gitattributes for a python repo. + +# Source files +# ============ +*.pxd text diff=python +*.py text diff=python +*.py3 text diff=python +*.pyw text diff=python +*.pyx text diff=python +*.pyz text diff=python +*.pyi text diff=python + +# Binary files +# ============ +*.db binary +*.p binary +*.pkl binary +*.pickle binary +*.pyc binary export-ignore +*.pyo binary export-ignore +*.pyd binary + +# Jupyter notebook +*.ipynb text eol=lf + +# Note: .db, .p, and .pkl files are associated +# with the python modules ``pickle``, ``dbm.*``, +# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb`` +# (among others). + +# Basic .gitattributes for a R repo. + +# Source files +# ============ +*.Rdata binary +*.RData binary +*.rda binary +*.rdb binary +*.rds binary +*.Rd text +*.Rdx binary +*.Rmd text +*.R text +*.Rproj text +*.[Rr]md linguist-detectable + +## GITATTRIBUTES FOR WEB PROJECTS +# +# These settings are for any web project. +# +# Details per file setting: +# text These files should be normalized (i.e. convert CRLF to LF). +# binary These files are binary and should be left untouched. +# +# Note that binary is a macro for -text -diff. +###################################################################### + +# Auto detect +## Handle line endings automatically for files detected as +## text and leave all files detected as binary untouched. +## This will handle all files NOT defined below. +* text=auto + +# Source code +*.bash text eol=lf +*.bat text eol=crlf +*.cmd text eol=crlf +*.coffee text +*.css text diff=css +*.htm text diff=html +*.html text diff=html +*.inc text +*.ini text +*.js text +*.json text +*.jsx text +*.less text +*.ls text +*.map text -diff +*.od text +*.onlydata text +*.php text diff=php +*.pl text +*.ps1 text eol=crlf +*.py text diff=python +*.rb text diff=ruby +*.sass text +*.scm text +*.scss text diff=css +*.sh text eol=lf +.husky/* text eol=lf +*.sql text +*.styl text +*.tag text +*.ts text +*.tsx text +*.xml text +*.xhtml text diff=html + +# Docker +Dockerfile text + +# Documentation +*.ipynb text eol=lf +*.markdown text diff=markdown +*.md text diff=markdown +*.mdwn text diff=markdown +*.mdown text diff=markdown +*.mkd text diff=markdown +*.mkdn text diff=markdown +*.mdtxt text +*.mdtext text +*.txt text +AUTHORS text +CHANGELOG text +CHANGES text +CONTRIBUTING text +COPYING text +copyright text +*COPYRIGHT* text +INSTALL text +license text +LICENSE text +NEWS text +readme text +*README* text +TODO text + +# Templates +*.dot text +*.ejs text +*.erb text +*.haml text +*.handlebars text +*.hbs text +*.hbt text +*.jade text +*.latte text +*.mustache text +*.njk text +*.phtml text +*.svelte text +*.tmpl text +*.tpl text +*.twig text +*.vue text + +# Configs +*.cnf text +*.conf text +*.config text +.editorconfig text +.env text +.gitattributes text +.gitconfig text +.htaccess text +*.lock text -diff +package.json text eol=lf +package-lock.json text eol=lf -diff +pnpm-lock.yaml text eol=lf -diff +.prettierrc text +yarn.lock text -diff +*.toml text +*.yaml text +*.yml text +browserslist text +Makefile text +makefile text + +# Heroku +Procfile text + +# Graphics +*.ai binary +*.bmp binary +*.eps binary +*.gif binary +*.gifv binary +*.ico binary +*.jng binary +*.jp2 binary +*.jpg binary +*.jpeg binary +*.jpx binary +*.jxr binary +*.pdf binary +*.png binary +*.psb binary +*.psd binary +# SVG treated as an asset (binary) by default. +*.svg text +# If you want to treat it as binary, +# use the following line instead. +# *.svg binary +*.svgz binary +*.tif binary +*.tiff binary +*.wbmp binary +*.webp binary + +# Audio +*.kar binary +*.m4a binary +*.mid binary +*.midi binary +*.mp3 binary +*.ogg binary +*.ra binary + +# Video +*.3gpp binary +*.3gp binary +*.as binary +*.asf binary +*.asx binary +*.avi binary +*.fla binary +*.flv binary +*.m4v binary +*.mng binary +*.mov binary +*.mp4 binary +*.mpeg binary +*.mpg binary +*.ogv binary +*.swc binary +*.swf binary +*.webm binary + +# Archives +*.7z binary +*.gz binary +*.jar binary +*.rar binary +*.tar binary +*.zip binary + +# Fonts +*.ttf binary +*.eot binary +*.otf binary +*.woff binary +*.woff2 binary + +# Executables +*.exe binary +*.pyc binary + +# RC files (like .babelrc or .eslintrc) +*.*rc text + +# Ignore files (like .npmignore or .gitignore) +*.*ignore text diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..80cb681 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,35 @@ +name: 🐞 Bug +description: File a bug/issue +title: '' +labels: [bug] +body: + - type: textarea + attributes: + label: Current Behavior + description: A description of what you're experiencing. + validations: + required: false + - type: textarea + attributes: + label: Reproduction / Steps To Reproduce + description: Link to a repository with steps to reproduce the behavior. + placeholder: | + As you can see in this code example/repostitory + 1. Using this component... + 2. With these properties... + 3. Click '...' + 4. See error... + validations: + required: false + - type: markdown + attributes: + value: | + Bug Reports with a repository with a full reproduction can be anwswered far quicker, so please consider including as much information as possible to let us help you quicker! + - type: textarea + attributes: + label: Anything else? + description: | + Links? References? Anything that will give us more context about the issue you are encountering! + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..f798557 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +contact_links: + - name: Are you looking for documentation on REPO_NAME? + url: https://USERNAME.github.io/REPO_NAME + about: Please see the documentation for REPO_NAME on its GitHub Pages page. + - name: Do want to discuss REPO_NAME with the community? + url: https://github.com/USERNAME/REPO_NAME/discussions + about: Please see the discussions page for REPO_NAME. +blank_issues_enabled: true diff --git a/.github/ISSUE_TEMPLATE/data_issue_report.yml b/.github/ISSUE_TEMPLATE/data_issue_report.yml new file mode 100644 index 0000000..e0db608 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/data_issue_report.yml @@ -0,0 +1,32 @@ +name: πŸ“Š Report Data Issue +description: Report faulty data +title: '[DATE]: [TITLE]' +labels: [data issue] +body: + - type: markdown + attributes: + value: A clear and concise description of the faulty data issue. + - type: input + id: dataset + attributes: + label: 'Dataset Information' + placeholder: 'e.g. data/clean/abc.csv' + - type: textarea + id: expected_data + attributes: + label: 'Expected Data' + placeholder: 'A clear and concise description of what the expected data should be.' + - type: textarea + id: actual_data + attributes: + label: 'Actual Data' + placeholder: 'A clear and concise description of what the actual data is, including any discrepancies or errors.' + - type: input + id: screenshot + attributes: + label: 'Screenshot/Example (if applicable)' + - type: textarea + id: additional_context + attributes: + label: 'Additional Context' + placeholder: 'Add any other context about the issue here, including any potential impact or consequences of the faulty data.' diff --git a/.github/ISSUE_TEMPLATE/docs_issue.yml b/.github/ISSUE_TEMPLATE/docs_issue.yml new file mode 100644 index 0000000..e62d9ae --- /dev/null +++ b/.github/ISSUE_TEMPLATE/docs_issue.yml @@ -0,0 +1,23 @@ +name: πŸ“— Report Docs Issue +description: See a typo? Outdated or incorrect information? Let us know! +title: '<title>' +labels: [documentation] +body: + - type: markdown + attributes: + value: Sometimes something slips through the cracks, and the documentation is not quite right. Thanks for letting us know! + - type: input + id: link + attributes: + label: Link to the Page + - type: textarea + id: quote + attributes: + label: Describe the Issue + - type: dropdown + id: participate + attributes: + label: Are you able to create a Pull Request with the fix? + options: + - 'Yes' + - 'No' diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..2658dd2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,22 @@ +name: πŸ› οΈ Request New Feature +description: Let us know what we should add. +labels: ['feature request'] +body: + - type: textarea + id: description + attributes: + label: Describe what feature you'd like. Pseudo-code, mockups, or screenshots of similar solutions are encouraged! + - type: dropdown + id: category + attributes: + label: What type of pull request would this be? + options: + - 'New Feature' + - 'Enhancement' + - 'Guide' + - 'Docs' + - 'Other' + - type: textarea + id: references + attributes: + label: Any links to similar examples or other references we should review? diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..520b491 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,35 @@ +data: + - analysis/* + - build/* + - data/* + +docs: + - _layouts/* + - assets/* + - docs/* + - project-management/* + - _config.yml + - android-chrome-192x192.png + - android-chrome-512x512.png + - apple-touch-icon.png + - CODE_OF_CONDUCT.md + - CONTRIBUTING.md + - favicon-16x16.png + - favicon-32x32.png + - favicon.ico + - LICENSE.md + - README.md + - SECURITY.md + - site.webmanifest + +github: + - .github/* + - .husky/* + +src: + - .dockerignore + - .gitattributes + - .gitignore + - example.env + - src/* + - test/* diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..91cf9ff --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,22 @@ +# Pull request + +## Proposed changes + +<!-- Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue. --> + +## Types of changes + +<!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> + +- [ ] New feature (non-breaking change which adds functionality). +- [ ] Enhancement (non-breaking change which enhances functionality) +- [ ] Bug Fix (non-breaking change which fixes an issue). +- [ ] Breaking change (fix or feature that would cause existing functionality to change). + +## Checklist + +<!-- Go over all the following points, and put an `x` in all the boxes that apply. If you're unsure about any of these, don't hesitate to ask. We're here to help! --> + +- [ ] I have read the **[README](./README.md)** document. +- [ ] My change requires a change to the documentation. +- [ ] I have updated the documentation accordingly. diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml new file mode 100644 index 0000000..69027a1 --- /dev/null +++ b/.github/workflows/changelog.yaml @@ -0,0 +1,25 @@ +name: Create changelog + +on: [push] + +jobs: + changelog: + name: Generate changelog + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Generate a changelog + uses: orhun/git-cliff-action@v2 + id: git-cliff + with: + config: cliff.toml + args: --verbose + env: + OUTPUT: CHANGELOG.md + + - name: Print the changelog + run: cat "${{ steps.git-cliff.outputs.changelog }}" diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..fe4f7b5 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,13 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: 'Hi there! Thanks for opening your first issue!' + pr-message: 'Hi there! Thanks for opening your first pull request!' diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 0000000..cda12b9 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,12 @@ +name: Pull Request Labeler + +on: + - pull_request_target + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4 + with: + repo-token: '${{ secrets.GITHUB_TOKEN }}' diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1fadca7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,230 @@ +# Exclude example.env +!example.env + +# Created by https://www.toptal.com/developers/gitignore/api/git,linux,macos,node,dotenv,windows,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=git,linux,macos,node,dotenv,windows,visualstudiocode + +### dotenv ### +.env + +### Git ### +# Created by git for backups. To disable backups in Git: +# $ git config --global mergetool.keepBackup false +*.orig + +# Created by git when using merge tools for conflicts +*.BACKUP.* +*.BASE.* +*.LOCAL.* +*.REMOTE.* +*_BACKUP_*.txt +*_BASE_*.txt +*_LOCAL_*.txt +*_REMOTE_*.txt + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env.test +.env.production + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# End of https://www.toptal.com/developers/gitignore/api/git,linux,macos,node,dotenv,windows,visualstudiocode \ No newline at end of file diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000..7fc3baf --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npm run check diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..ff2677e --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "useTabs": true, + "singleQuote": true, + "trailingComma": "none", + "printWidth": 100 +} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0bde8b3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,29 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased](https://github.com/USERNAME/REPO_NAME/compare/...HEAD) + +### Documentation + +- Docs for Zenodo added +- Fixed various typos and replaced favicon + +### Features + +- Initial version + +## [0.0.2](https://github.com/USERNAME/REPO_NAME/compare/v0.0.1...v0.0.2) - 2020-02-26 + +### Documentation + +- ... + +## [0.0.1](https://github.com/USERNAME/REPO_NAME/releases/tag/v0.0.1) - 2020-01-13 + +### Features + +- ... diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..e4248bd --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,22 @@ +abstract: 'This is my awesome research software. It does many things.' +authors: + - family-names: Doe + given-names: John + orcid: 'https://orcid.org/0000-0001-8888-9999' +cff-version: 1.2.0 +date-released: '2021-10-13' +identifiers: + - description: 'This is the collection of archived snapshots of all versions of My Research Software' + type: doi + value: 10.5281/zenodo.123456 + - description: 'This is the archived snapshot of version 0.11.2 of My Research Software' + type: doi + value: 10.5281/zenodo.123457 +keywords: + - 'amazing software' + - research +license: Apache-2.0 +message: 'If you use this software, please cite it using the metadata from this file.' +repository-code: 'https://github.com/citation-file-format/my-research-software' +title: 'My Research Software' +version: 0.11.2 diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..35b5167 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,132 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall + community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +[INSERT CONTACT METHOD]. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..60303d0 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,17 @@ +# Contributing + +When contributing to this repository, please first discuss the change you wish to make via issue, +email, or any other method with the owners of this repository before making a change. + +Please note we have a [code of conduct](CODE_OF_CONDUCT.md), please follow it in all your interactions with the project. + +## Pull Request Process + +1. Ensure any install or build dependencies are removed before the end of the layer when doing a + build. +2. Update the README.md with details of changes to the interface, this includes new environment + variables, exposed ports, useful file locations and container parameters. +3. Increase the version numbers in any examples files and the README.md to the new version that this + Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). +4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you + do not have permission to do that, you may request the second reviewer to merge it for you. diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..52bd145 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,395 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the β€œLicensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..55376df --- /dev/null +++ b/README.md @@ -0,0 +1,139 @@ +# GitHub template for FAIR and open research data + +This GitHub template is independent of the (research) data and its format. It follows the best practices for open research data as outlined in [The Turing Way](https://the-turing-way.netlify.app/). It uses [GitHub Actions](https://docs.github.com/en/actions) to manage releases, issues, and pull requests, [GitHub Pages](https://pages.github.com/) for documentation, and [Zenodo](https://zenodo.org/) for long-term archiving. + +[![GitHub issues](https://img.shields.io/github/issues/maehr/open-research-data-template.svg)](https://github.com/maehr/open-research-data-template/issues) +[![GitHub forks](https://img.shields.io/github/forks/maehr/open-research-data-template.svg)](https://github.com/maehr/open-research-data-template/network) +[![GitHub stars](https://img.shields.io/github/stars/maehr/open-research-data-template.svg)](https://github.com/maehr/open-research-data-template/stargazers) +[![GitHub license](https://img.shields.io/github/license/maehr/open-research-data-template.svg)](https://github.com/maehr/open-research-data-template/blob/main/LICENSE.md) + +## Why use a template (even for small datasets)? + +- Share your [open research data](#open-research-data) with others +- Write better [documentation](#documentation) for yourself and the community +- Write more [consistent](#consistency) code and encourage collaboration +- Increase [security](#security) +- Follow accepted [ethics](#ethics) + +## How this template helps you + +### Open research data + +- Citeable via [CITATION.cff](CITATION.cff) and [DOI](https://www.doi.org/) +- Automatic long-term archiving via [Zenodo](https://zenodo.org/) +- Licensed under a non-restrictive [CC BY 4.0 license](LICENSE.md) according to [The Turing Way](https://the-turing-way.netlify.app/reproducible-research/rdm/rdm-sharing.html#step-3-choose-a-licence-and-link-to-your-paper-and-code) +- Templates for reporting data issues using a [custom template](.github/ISSUE_TEMPLATE/data_issue_report.md) + +### Documentation + +- [README.md](README.md) according to [www.makeareadme.com](https://www.makeareadme.com/) and [The Turing Way](https://the-turing-way.netlify.app/project-design/project-repo/project-repo-readme.html) +- [CHANGELOG.md](CHANGELOG.md) according to [keepachangelog.com](https://keepachangelog.com/) +- Automated [CHANGELOG.md](CHANGELOG.md) via [git-cliff](https://github.com/orhun/git-cliff) +- [package.json](package.json) via [npm docs](https://docs.npmjs.com/cli/v7/configuring-npm/package-json) +- Accessible documentation via [gh-pages](https://help.github.com/en/articles/configuring-a-publishing-source-for-github-pages) + +### Consistency + +- Consistent formatting via [Prettier](https://prettier.io/) +- Consistent commit messages according to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) via [husky](https://github.com/typicode/husky) +- Consistent versioning via [Semantic Versioning](https://semver.org/spec/v2.0.0.html) +- Consistent [fork and pull](https://gist.github.com/Chaser324/ce0505fbed06b947d962) workflow via [GitHub branch protection](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule) +- Consistent issues via [issue templates](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository) +- Consistent pull request labels via [labeler](https://github.com/actions/labeler) +- Consistent file and folder naming conventions via [The Turing Way](https://the-turing-way.netlify.app/reproducible-research/rdm/rdm-storage.html#file-naming-conventions) + +### Security + +- [SECURITY.md](SECURITY.md) per [GitHub](https://docs.github.com/en/code-security/getting-started/adding-a-security-policy-to-your-repository) +- [GitHub Security Alerts](https://github.blog/2017-11-16-introducing-security-alerts-on-github/) +- Integrity via [GitHub branch protection](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/managing-a-branch-protection-rule) + +### Ethics + +- [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) per the [Contributor Covenant](https://www.contributor-covenant.org/) +- Friendly initial interactions via [Greetings](https://github.com/actions/starter-workflows/blob/main/automation/greetings.yml) + +## Installation + +To initialize the template, [generate](https://github.com/maehr/open-research-data-template/generate) a new project, [clone](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository) the repository to your local machine and follow this guide. + +1. Install [Node.js](https://nodejs.org/en/) and run the following commands in the root directory of the repository: + +```bash +npm install +npm run prepare +``` + +2. Complete the following checklist of tasks to customize the template for your project: + +- [ ] enable [GitHub security alerts](https://github.blog/2017-11-16-introducing-security-alerts-on-github/) +- [ ] [protect](https://help.github.com/en/articles/configuring-protected-branches) the main branch to enforce a [fork and pull](https://gist.github.com/Chaser324/ce0505fbed06b947d962) workflow +- [ ] search and replace `FULLNAME`, `USERNAME`, `REPO_NAME`, `SHORT_DESCRIPTION` `[INSERT CONTACT METHOD]` in [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md), [package.json](package.json), [README.template.md](README.template.md), [SECURITY.md](SECURITY.md) +- [ ] change `CITATION.CFF` according to [citation-file-format.github.io](https://citation-file-format.github.io/) +- [ ] setup the [Zenodo integration](https://docs.github.com/en/repositories/archiving-a-github-repository/referencing-and-citing-content) +- [ ] add `ZENODO_RECORD` to [README.md](README.md) +- [ ] add favicons to `./`, e.g. via [favicon.io](https://favicon.io/) +- [ ] search for `TODO` in the project (mostly documentation) and fix it +- [ ] delete [README.md](README.md) +- [ ] rename [README.template.md](README.template.md) to [README.md](README.md) +- [ ] run `npm run format` to format all files +- [ ] run `npm run commit` to commit all changes +- [ ] run `npm run changelog` and include the output in [CHANGELOG.md](CHANGELOG.md) +- [ ] enable [gh-pages](https://help.github.com/en/articles/configuring-a-publishing-source-for-github-pages) + +## Use + +Check that all files are properly formatted. + +```bash +npm run check +``` + +Format all files. + +```bash +npm run format +``` + +Run the wizard to write meaningful commit messages. + +```bash +npm run commit +``` + +Run the wizard to create a CHANGELOG.md. + +```bash +npm run changelog +``` + +## Support + +This project is maintained by [@maehr](https://github.com/maehr). Please understand that we can't provide individual support via email. We also believe that help is much more valuable when it's shared publicly, so more people can benefit from it. + +| Type | Platforms | +| -------------------------------------- | -------------------------------------------------------------------------------------- | +| 🚨 **Bug Reports** | [GitHub Issue Tracker](https://github.com/maehr/open-research-data-template/issues) | +| πŸ“Š **Report bad data** | [GitHub Issue Tracker](https://github.com/maehr/open-research-data-template/issues) | +| πŸ“š **Docs Issue** | [GitHub Issue Tracker](https://github.com/maehr/open-research-data-template/issues) | +| 🎁 **Feature Requests** | [GitHub Issue Tracker](https://github.com/maehr/open-research-data-template/issues) | +| πŸ›‘ **Report a security vulnerability** | See [SECURITY.md](SECURITY.md) | +| πŸ’¬ **General Questions** | [GitHub Discussions](https://github.com/maehr/open-research-data-template/discussions) | + +## Roadmap + +There are currently no changes planned. + +## Contributing + +Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests. + +## Authors and credits + +- **Moritz MΓ€hr** - _Initial work_ - [maehr](https://github.com/maehr) + +See also the list of [contributors](https://github.com/maehr/open-research-data-template/graphs/contributors) who contributed to this project. + +## License + +The data in this repository is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) License - see the [LICENSE.md](LICENSE.md) file for details. The code in this repository is released under the GNU Affero General Public License v3.0 - see the [gnu.org](https://www.gnu.org/licenses/agpl-3.0.html) file for details. diff --git a/README.template.md b/README.template.md new file mode 100644 index 0000000..95f09c6 --- /dev/null +++ b/README.template.md @@ -0,0 +1,84 @@ +# REPO_NAME + +This repository contains SHORT_DESCRIPTION. The data in this repository is openly available to everyone and is intended to support reproducible research. + +[![GitHub issues](https://img.shields.io/github/issues/USERNAME/REPO_NAME.svg)](https://github.com/USERNAME/REPO_NAME/issues) +[![GitHub forks](https://img.shields.io/github/forks/USERNAME/REPO_NAME.svg)](https://github.com/USERNAME/REPO_NAME/network) +[![GitHub stars](https://img.shields.io/github/stars/USERNAME/REPO_NAME.svg)](https://github.com/USERNAME/REPO_NAME/stargazers) +[![GitHub license](https://img.shields.io/github/license/USERNAME/REPO_NAME.svg)](https://github.com/USERNAME/REPO_NAME/blob/main/LICENSE.md) +[![DOI](https://zenodo.org/badge/ZENODO_RECORD.svg)](https://zenodo.org/badge/latestdoi/ZENODO_RECORD) + +## Repository Structure + +The structure of this repository follows the [Advanced Structure for Data Analysis](https://the-turing-way.netlify.app/project-design/project-repo/project-repo-advanced.html) of _The Turing Way_ and is organized as follows: + +- `analysis/`: scripts and notebooks used to analyze the data +- `assets/`: images, logos, etc. used in the README and other documentation +- `build/`: scripts and notebooks used to build the data +- `data/`: data files +- `docs/`: documentation for the data and the repository +- `project-management/`: project management documents (e.g., meeting notes, project plans, etc.) +- `src/`: source code for the data (e.g., scripts used to collect or process the data) +- `test/`: tests for the data and source code +- `report.md`: a report describing the analysis of the data + +## Data Description + +- TODO Describe the data in this repository, including what it represents, how it was collected or obtained, any preprocessing or cleaning that was done, and any limitations or potential biases. +- TODO Data models, including field names, descriptions, and controlled values, should be clearly documented in a static document that is maintained with the data and is part of the products. +- TODO All rights and intellectual property issues should be clearly documented. Where possible, data and products should be released under open licenses (Creative Commons, GNU, BSD, MPL). + +## Use + +These data are openly available to everyone and can be used for any research or educational purpose. If you use this data in your research, please cite as specified in [CITATION.cff](CITATION.cff). The following citation formats are also available through _Zenodo_: + +- [BibTeX](https://zenodo.org/record/ZENODO_RECORD/export/hx) +- [CSL](https://zenodo.org/record/ZENODO_RECORD/export/csl) +- [DataCite](https://zenodo.org/record/ZENODO_RECORD/export/dcite4) +- [Dublin Core](https://zenodo.org/record/ZENODO_RECORD/export/xd) +- [DCAT](https://zenodo.org/record/ZENODO_RECORD/export/dcat) +- [JSON](https://zenodo.org/record/ZENODO_RECORD/export/json) +- [JSON-LD](https://zenodo.org/record/ZENODO_RECORD/export/schemaorg_jsonld) +- [GeoJSON](https://zenodo.org/record/ZENODO_RECORD/export/geojson) +- [MARCXML](https://zenodo.org/record/ZENODO_RECORD/export/xm) + +_Zenodo_ provides an [API (REST & OAI-PMH)](https://developers.zenodo.org/) to access the data. For example, the following command will return the metadata for the most recent version of the data + +```bash +curl -i https://zenodo.org/api/records/ZENODO_RECORD +``` + +## Support + +This project is maintained by [@USERNAME](https://github.com/USERNAME). Please understand that we can't provide individual support via email. We also believe that help is much more valuable when it's shared publicly, so more people can benefit from it. + +| Type | Platforms | +| -------------------------------------- | ----------------------------------------------------------------------- | +| 🚨 **Bug Reports** | [GitHub Issue Tracker](https://github.com/USERNAME/REPO_NAME/issues) | +| πŸ“Š **Report bad data** | [GitHub Issue Tracker](https://github.com/USERNAME/REPO_NAME/issues) | +| πŸ“š **Docs Issue** | [GitHub Issue Tracker](https://github.com/USERNAME/REPO_NAME/issues) | +| 🎁 **Feature Requests** | [GitHub Issue Tracker](https://github.com/USERNAME/REPO_NAME/issues) | +| πŸ›‘ **Report a security vulnerability** | See [SECURITY.md](SECURITY.md) | +| πŸ’¬ **General Questions** | [GitHub Discussions](https://github.com/USERNAME/REPO_NAME/discussions) | + +## Roadmap + +No changes are currently planned. + +## Contributing + +All contributions to this repository are welcome! If you find errors or problems with the data, or if you want to add new data or features, please open an issue or pull request. Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct and the process for submitting pull requests. + +## Versioning + +We use [SemVer](http://semver.org/) for versioning. The available versions are listed in the [tags on this repository](https://github.com/USERNAME/REPO_NAME/tags). + +## Authors and acknowledgment + +- **FULLNAME** - _Initial work_ - [USERNAME](https://github.com/USERNAME) + +See also the list of [contributors](https://github.com/USERNAME/REPO_NAME/graphs/contributors) who contributed to this project. + +## License + +The data in this repository is released under the Creative Commons Attribution 4.0 International (CC BY 4.0) License - see the [LICENSE.md](LICENSE.md) file for details. By using this data, you agree to give appropriate credit to the original author(s) and to indicate if any modifications have been made. diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..6d5663f --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,27 @@ +# Security Policy + +<!-- +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | +--> + +## Reporting a Vulnerability + +<!-- +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. +--> + +To report a security issue, please email [INSERT CONTACT METHOD] with a description of the issue, the steps you took to create the issue, affected versions, and, if known, mitigations for the issue. This project follows a 90 day disclosure timeline. diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..012ff0a --- /dev/null +++ b/_config.yml @@ -0,0 +1,3 @@ +theme: jekyll-theme-minimal +logo: android-chrome-512x512.png +show_downloads: true diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..1a07f84 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,62 @@ +<!DOCTYPE html> +<html lang="{{ site.lang | default: "en-US" }}"> + +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + {% seo %} + <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}"> + <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png"> + <link rel="manifest" href="site.webmanifest"> + <!--[if lt IE 9]> + <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> + <![endif]--> +</head> + +<body> + <div class="wrapper"> + <header> + <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1> + + {% if site.logo %} + <img src="{{site.logo | relative_url}}" alt="Logo" /> + {% endif %} + + <p>{{ site.description | default: site.github.project_tagline }}</p> + + {% if site.github.is_project_page %} + <p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> + {% endif %} + + {% if site.github.is_user_page %} + <p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p> + {% endif %} + + {% if site.show_downloads %} + <ul class="downloads"> + <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> + <li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li> + <li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li> + </ul> + {% endif %} + </header> + <section> + + {{ content }} + + </section> + <footer> + {% if site.github.is_project_page %} + <p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> + {% endif %} + <p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> + </footer> + </div> + <script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script> +</body> + +</html> diff --git a/analysis/.gitkeep b/analysis/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..59fe372d6417839c41d72f89dcb393efa71ab94a GIT binary patch literal 6769 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 HiVXc9uUVBE literal 0 HcmV?d00001 diff --git a/android-chrome-512x512.png b/android-chrome-512x512.png new file mode 100644 index 0000000000000000000000000000000000000000..e61e51b558d1fcb3f2dbcb9e202261f471a6405f GIT binary patch literal 19335 zcmZ^Kby$>L*Y6&NZly~)lx`5DQ(8f!yIWdnD3Ml?l#~W3Ny$M<8YHDlKsuyj&hWg? z`<?InakwrnhP_w(*4k^Wz3#p5iPThA#KWe<1_0nGE6F_r00sFG1z@5h|NQkCzXU)< zU0F_A+Xu4K4!H*aDk=|++)v%EsSYQ0B+38x=bTk6!(#uzO1@Yc5A5u$YoXJyt8Q$f zYFEv1w$4eccx$@OX|`@%yDg*fWjDo%=<o`n^u~Q(wYtD+6zyY2<HMgXl&>GWAb6fL zHXu*==hZn>W~20+h&?Ct!^jZj4GX2+?}6yScfPm0F;H8EFfdY4uK!Agq)qkyOpp&< zQ^oz)^vXWZyMk<6$H@b==>;zcr2GA|!X#AQFH~RZcm1v5n=iOOq^fFAzrs+x(PZbb z3er&M!CxX{i*ahQPt3~G&locbW#UtYd470fjt#$9<g3?_QDnc;30#q9<uBg@geX#3 zwuj%3wPmh~NAT7;kE44>n0MOLWHfMTDI8&uQi>2301lvIoty<HI@h&*f4^bJ@=(0) zLg-_)e7>*#MdbXtGd-7FR~TSIvUN|r5iVUkE+ifAl{c*t4;)PJ!VY2;8oRc-FABn0 zdCJxA6msLHpQyalVKyw5F-gS@D1JKHmKKKJr_0IL;^ql~5rRf1(*qlQmDC5_qCpfN zMmAn(+=h45bWcEl4A}e}+-_nuD){ln;?V<x+i*3M4`D>SSU?qkCE8wAF8-ONCEDWY zcG~aB&;*$Ogv=N@h9)1<wal+CzO(D>WN8<?7!9TKPh_CU;x=+*SOrhRks5=^K1u&t zH29P#>7QvnO@EA=ONpV$5H{ilqT`d_1Xd&b5*)yEVN^%y#Z%fCDBC@mO&;)Deo`lg zTeY0zT#wNx*>@QWIe{m$$pm93%XrH8Bpr3*R`A60ep|j9$d|?hG#@gqOzzKUqy}zE z_v^pdL|0oe>1=`^)qoNDi@to8VsjszE>_%+Cy8OL8l(H>)KbbwclCrh>0HN?GdXA^ zjEq5(pTt7h(2#xzJGS*8dEHsmtLd&PX`7e$?=Xzot{lDWHn=$dK9?YVHZgKlpdZc| z51L(aV>A!5esAlNkBPwU)1kt=`uBqR{=VhoLI@5FPb5kp{e*%<Vhv4h*OnQpLj)Hm zmglt~#X@9&ZEpHJqJ-Ta9x54|_vp4{XAThq-Sp;yN?q;j-)1p5mCGddjxf<PA9Ann z+}cn}waH?F-A;!XZTTS8+*!o5lEsbqfu!lb6M`SQUCm?=LC<wAR;*Zhc%@pFFag~L zVz&)(i>TLsvpC)4AW|Akhr851|MW}uYyG*hcKa`#e$<!uo!q>=2h&Z2yxVrry}f<E z4lM1>&ClLMA?$>?kAM56iB}7<>kHRcHPce>gM%0A6OGbO2xv2BD+}UVyqomm(b`ae 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 literal 0 HcmV?d00001 diff --git a/apple-touch-icon.png b/apple-touch-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c809f43738d3600d0ca8f157c8c07e2b343facc8 GIT binary patch literal 5947 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 literal 0 HcmV?d00001 diff --git a/assets/css/style.scss b/assets/css/style.scss new file mode 100644 index 0000000..f939656 --- /dev/null +++ b/assets/css/style.scss @@ -0,0 +1,13 @@ +@import '{{ site.theme }}'; + +a:hover, +a:focus { + font-weight: inherit; + /* Not default bold, but what the surrounding text looks like. */ + text-decoration: underline; +} + +header ul a:hover, +header ul a:focus { + font-weight: normal; +} diff --git a/assets/images/.gitkeep b/assets/images/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/build/debug/.gitkeep b/build/debug/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/cliff.toml b/cliff.toml new file mode 100644 index 0000000..7e41de5 --- /dev/null +++ b/cliff.toml @@ -0,0 +1,73 @@ +# configuration file for git-cliff +# see https://github.com/orhun/git-cliff#configuration-file + +[changelog] +# changelog header +header = """ +# Changelog +All notable changes to this project will be documented in this file.\n +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n +""" +# template for the changelog body +# https://tera.netlify.app/docs/#introduction +body = """ +{% if version %}\ + ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} +{% else %}\ + ## [Unreleased](https://github.com/USERNAME/REPO_NAME/compare/...HEAD) +{% endif %}\ +{% for group, commits in commits | group_by(attribute="group") %} + ### {{ group | upper_first }} + {% for commit in commits %} + - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}\ + {% endfor %} +{% endfor %}\n +""" +# remove the leading and trailing whitespace from the template +trim = true +# changelog footer +footer = """ +<!-- generated by git-cliff --> +""" + +[git] +# parse the commits based on https://www.conventionalcommits.org +conventional_commits = true +# filter out the commits that are not conventional +filter_unconventional = true +# process each line of a commit as an individual commit +split_commits = false +# regex for preprocessing the commit messages +commit_preprocessors = [ + # { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/orhun/git-cliff/issues/${2}))"}, # replace issue numbers +] +# regex for parsing and grouping commits +commit_parsers = [ + { message = "^feat", group = "Features"}, + { message = "^fix", group = "Bug Fixes"}, + { message = "^doc", group = "Documentation"}, + { message = "^perf", group = "Performance"}, + { message = "^refactor", group = "Refactor"}, + { message = "^style", group = "Styling"}, + { message = "^test", group = "Testing"}, + { message = "^chore\\(release\\): prepare for", skip = true}, + { message = "^chore", group = "Miscellaneous Tasks"}, + { body = ".*security", group = "Security"}, +] +# protect breaking changes from being skipped due to matching a skipping commit_parser +protect_breaking_commits = false +# filter out the commits that are not matched by commit parsers +filter_commits = false +# glob pattern for matching git tags +tag_pattern = "v[0-9]*" +# regex for skipping tags +skip_tags = "v0.1.0-beta.1" +# regex for ignoring tags +ignore_tags = "" +# sort the tags topologically +topo_order = false +# sort the commits inside sections by oldest/newest order +sort_commits = "oldest" +# limit the number of commits included in the changelog. +# limit_commits = 42 diff --git a/data/clean/.gitkeep b/data/clean/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/data/raw/.gitkeep b/data/raw/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/codelist.txt b/docs/codelist.txt new file mode 100644 index 0000000..c8aef13 --- /dev/null +++ b/docs/codelist.txt @@ -0,0 +1 @@ +TODO https://ec.europa.eu/eurostat/data/metadata/code-lists \ No newline at end of file diff --git a/example.env b/example.env new file mode 100644 index 0000000..13d0f68 --- /dev/null +++ b/example.env @@ -0,0 +1 @@ +ENV_VAR="Value" diff --git a/favicon-16x16.png b/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..6ca891a11dda2a8e8726a57df0198d84edd47457 GIT binary patch literal 668 zcmV;N0%QG&P)<h;3K|Lk000e1NJLTq000mG000mO1^@s6AM^iV0007GNkl<ZcmZva z1F-8_6o$W*?kak=ZQHhO+qOA;7(Lszd2L(Awtbp)dot-1bN_HJ;};Ot1pVzmf3!FK zprYxRh-NbSW#ZxqGbw>Zgxel?YU8)Q`0kY1OUpl<wYco7@^$a~t>516v7z)<_bS{s z;P3kNtgP<stj+b0KDQAO1cV#!d+JEBf<O1zZMW0`2kgfm^$xwG0t#C=8P3%&>9e<| z*WHb&GiI`2@zVZSMvi;^<!7cD08DVp`fIP7I_B_0kwl7(Twz0ng{`ov*D$ir<-`%z z6*&6vL#VHBvfH~lZU>?O8Ft%rlZ{#X(;u*wmvNQ=zRO;B+)gHu#KdB`$*`8^vDu~@ z(c00rCxChSnWxN1a-AKoxZrFCo_>`8Pz8Dh*mI*axM@TMPzXQ573ZHrU1Q^pPe1*X zvFf|o-m&eZWh|TrZoql$cD%>#z<u$4#7ReaixD$|>p00VU*mc1uD0j#<6jdBj3w_D zWf#c@5(V4w@O*bydGpJkpAwO$K@c==R2WD=RX{Ws5D+v7p0*@r`MCjUXbH8|)s(F& zqpWOI_9+Yh$7BSB%LmI?zRATy1W{#ZbeN&RLC!e!B%~nYPrv`gNLH6fBvB=*RWM;* z5i}B^V*|3;eAA5)6r$ix+75N9g)>qN2&$U1!$N3nYv<qpCx(F$MKeNMdpqlIym5Y@ z3W8uH03|Y1FbTuf+ipuscMmAJ!Ln6WW{g1)Ad&}=-NG+dS;7Y@Ao<PZ*N0HdBPINX z?da74VUQ~=kv-J{Air}}BDcH(AOH<?!A%#R@zH9BrUU;Fn2WCf0000<MNUMnLSTYy CaYD`j literal 0 HcmV?d00001 diff --git a/favicon-32x32.png b/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..99226e103a2ebbe1cfa0a168976719a264bc1711 GIT binary patch literal 1214 zcmV;v1VQ_WP)<h;3K|Lk000e1NJLTq001BW001Be1^@s6b9#F8000DqNkl<ZcmZM{ z7yO^^!0~ONlk|UNyxKtm&}&&lxp4$xSYbHj6wW!v&?Su5+``N;v$bYzo0(ZMvtW5= znc1|=3_^RE%&v5eT0NRq%9uUxeXrD0f7k!3HM<gk=@HX|zOFexe*cE^)BfwuPl4e2 zv=oxwdG@{-v77K{d0pEV=juAX3DT}Ip7>p^YUV&wia%@FO4Q+AoN-5{|1$RM1heJ4 ziDt{J%#!l>bM<X-u7SfVa-P#(aumEdt0cW?Go?9(YAtg}J<h;c6QbDHe=zp6q4}h! z#jj5=M|W@l$v<0-hAJuLov<~}1DkR<xf<3&H<Z=2Lm+#Z8sKv5mrz+<E(7G9sm56X z);ML+qSqptFJ<gep0XT;|IQ5ss8NR$)U?B&aTnm1m|pnB)rVEb`WzorSDl6CGAB2$ zkmd-^kO7dn(fJVrOqjdmy?=#hre!sx=9WNnw+~v~0my3%XofCCA7EknMQGzXf+qmY zT|Q89i*cq5G1<)Cq{nY&e}@FFlx*no_XY9wLc6yYYPx!%x|7%LUZ~`Cd$AU1MQ*RE z?L>VLvUa6r%K+#_ParCKb4ZY$Uk2U9<=~yL7<@m?)bq=1aBn-ThMJke-+g8;oaqoo z0jz2m0-q@Zpcf5bwq&Tszho5@pRWNg+XlWLh3Sv8I9f$KRZZZ&I0zoX5F*!ZK@p#c zv(W>+A_Z_ST(t=TeS<J|`6^tnY!>D-iMf|ET;Ga1!8K7SqhURqy<pX5Krfy7Ovav@ zFn8(AV=>86+;=oy7*hNb7Qtx$kg;K;9_Oel3H~*+o9HP6{4<Zek4JMNE=Aigei;Vy z&p>}-HuNWPL>*9aVZ`m%bXU~Ddb2As1nHp%dZDKbz!UvV0^AYTZtorjhz$lnPZ?mM znQfZI)`0b70>ow&L2Ty#QEYIZR07UMk6COjpr;J5Xx;Yoz4j!qI+MZb2!gL|SS4~T zbPDN*^~n8jEqbA6$p4W&ClkEbxId8KBp|ZqM1mK+O|}yWFJMEacHX7o?eCLX^fuXI zQeM@XiZ;}#zqk8D0<7D66xQxN5}7?}MGb0iD+qd<tRetu3S%2*S1zBu$>46%fN zyXjtIZwA-m9{N1d0J;;<ixgQmA2_8N%w4(;>`58mP_hKsYITY=_U5v6s&>mkyTJo2 zLb+rBX+~3W;U*Da-^n=gji-GH1wjpJHyu1>_zc+S3DC3x5x@fbPsN8BQ!pHAFu-OE zVDylZ00wFC-QduO0RsAUc!0<sX&9jZHp9PRMLhw0z*cUxLRC`-)V6d*q?-4*hMWL} zd<2T2c;~TLm>9)y@NI!w+++NYDLjCaylb*~z3n(GSiKGAt=bAv8o1VhnhjigTmQT; zz-~v<E3~N?Z=~zH`Y(yzrlk(YlYBAEfro_%J<Pbb2`{TXaXA$#nA~815`I!tOYiIV z+mn`?LYKqgc+AFc@S($WlR^j5dMD<?XpWxbhbbNjelGZ6hOnwNHTYUoN~+KqgR_|v ck6pX|1I=w~Oq-jb<p2Nx07*qoM6N<$g8lPIwEzGB literal 0 HcmV?d00001 diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..fde4cbb8aa2eee4c4f00ac26527f7edd6293cef0 GIT binary patch literal 15406 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 literal 0 HcmV?d00001 diff --git a/favicon.txt b/favicon.txt new file mode 100644 index 0000000..1fcac11 --- /dev/null +++ b/favicon.txt @@ -0,0 +1,6 @@ +This favicon was generated using the following graphics from Twitter Twemoji: + +- Graphics Title: 1f5c3.svg +- Graphics Author: Copyright 2020 Twitter, Inc and other contributors (https://github.com/twitter/twemoji) +- Graphics Source: https://github.com/twitter/twemoji/blob/master/assets/svg/1f5c3.svg +- Graphics License: CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/) diff --git a/package.json b/package.json new file mode 100644 index 0000000..6f27f92 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "REPO_NAME", + "description": "SHORT_DESCRIPTION", + "author": "FULLNAME <[INSERT CONTACT METHOD]>", + "url": "https://github.com/USERNAME/REPO_NAME/issues", + "license": "AGPL-3.0", + "scripts": { + "check": "prettier --ignore-path .gitignore --check . '!{CODE_OF_CONDUCT.md,LICENSE.md,_layouts/default.html,package-lock.json,pnpm-lock.yaml,yarn.lock}'", + "commit": "cz", + "format": "prettier --ignore-path .gitignore --write . '!{CODE_OF_CONDUCT.md,LICENSE.md,_layouts/default.html,package-lock.json,pnpm-lock.yaml,yarn.lock}'", + "prepare": "husky install", + "changelog": "npm exec git-cliff -- --config cliff.toml" + }, + "devDependencies": { + "commitizen": "^4.3.0", + "cz": "^1.8.2", + "cz-conventional-changelog": "^3.3.0", + "git-cliff": "^1.3.1", + "husky": "^8.0.3", + "prettier": "^3.0.3" + }, + "type": "module", + "config": { + "commitizen": { + "path": "./node_modules/cz-conventional-changelog" + }, + "husky": { + "hooks": { + "prepare-commit-msg": "exec < /dev/tty && git cz --hook || true" + } + } + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..e64c4d3 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,1380 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +devDependencies: + commitizen: + specifier: ^4.3.0 + version: 4.3.0 + cz: + specifier: ^1.8.2 + version: 1.8.2 + cz-conventional-changelog: + specifier: ^3.3.0 + version: 3.3.0 + git-cliff: + specifier: ^1.3.1 + version: 1.3.1 + husky: + specifier: ^8.0.3 + version: 8.0.3 + prettier: + specifier: ^3.0.3 + version: 3.0.3 + +packages: + + /@babel/code-frame@7.22.13: + resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} + engines: {node: '>=6.9.0'} + requiresBuild: true + dependencies: + '@babel/highlight': 7.22.20 + chalk: 2.4.2 + dev: true + optional: true + + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} + requiresBuild: true + dev: true + optional: true + + /@babel/highlight@7.22.20: + resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} + engines: {node: '>=6.9.0'} + requiresBuild: true + dependencies: + '@babel/helper-validator-identifier': 7.22.20 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + optional: true + + /@commitlint/config-validator@17.6.7: + resolution: {integrity: sha512-vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ==} + engines: {node: '>=v14'} + requiresBuild: true + dependencies: + '@commitlint/types': 17.4.4 + ajv: 8.12.0 + dev: true + optional: true + + /@commitlint/execute-rule@17.4.0: + resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==} + engines: {node: '>=v14'} + requiresBuild: true + dev: true + optional: true + + /@commitlint/load@17.7.2: + resolution: {integrity: sha512-XA7WTnsjHZ4YH6ZYsrnxgLdXzriwMMq+utZUET6spbOEEIPBCDLdOQXS26P+v3TTO4hUHOEhzUquaBv3jbBixw==} + engines: {node: '>=v14'} + requiresBuild: true + dependencies: + '@commitlint/config-validator': 17.6.7 + '@commitlint/execute-rule': 17.4.0 + '@commitlint/resolve-extends': 17.6.7 + '@commitlint/types': 17.4.4 + '@types/node': 20.5.1 + chalk: 4.1.2 + cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.1)(typescript@5.2.2) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + resolve-from: 5.0.0 + ts-node: 10.9.1(@types/node@20.5.1)(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + optional: true + + /@commitlint/resolve-extends@17.6.7: + resolution: {integrity: sha512-PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg==} + engines: {node: '>=v14'} + requiresBuild: true + dependencies: + '@commitlint/config-validator': 17.6.7 + '@commitlint/types': 17.4.4 + import-fresh: 3.3.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + optional: true + + /@commitlint/types@17.4.4: + resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==} + engines: {node: '>=v14'} + requiresBuild: true + dependencies: + chalk: 4.1.2 + dev: true + optional: true + + /@cspotcode/source-map-support@0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + requiresBuild: true + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + dev: true + optional: true + + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} + requiresBuild: true + dev: true + optional: true + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + requiresBuild: true + dev: true + optional: true + + /@jridgewell/trace-mapping@0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + requiresBuild: true + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + optional: true + + /@tsconfig/node10@1.0.9: + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} + requiresBuild: true + dev: true + optional: true + + /@tsconfig/node12@1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + requiresBuild: true + dev: true + optional: true + + /@tsconfig/node14@1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + requiresBuild: true + dev: true + optional: true + + /@tsconfig/node16@1.0.4: + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + requiresBuild: true + dev: true + optional: true + + /@types/node@20.5.1: + resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==} + requiresBuild: true + dev: true + optional: true + + /acorn-walk@8.2.0: + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + engines: {node: '>=0.4.0'} + requiresBuild: true + dev: true + optional: true + + /acorn@8.10.0: + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} + engines: {node: '>=0.4.0'} + hasBin: true + requiresBuild: true + dev: true + optional: true + + /ajv@8.12.0: + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + requiresBuild: true + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + optional: true + + /ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.21.3 + dev: true + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + requiresBuild: true + dev: true + optional: true + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + requiresBuild: true + dev: true + optional: true + + /at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + dev: true + + /babel-polyfill@6.26.0: + resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==} + dependencies: + babel-runtime: 6.26.0 + core-js: 2.6.12 + regenerator-runtime: 0.10.5 + dev: true + + /babel-runtime@6.26.0: + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} + dependencies: + core-js: 2.6.12 + regenerator-runtime: 0.11.1 + dev: true + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + dev: true + + /bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: true + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /cachedir@2.3.0: + resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==} + engines: {node: '>=6'} + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + requiresBuild: true + dev: true + optional: true + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + dev: true + + /cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + dependencies: + restore-cursor: 3.1.0 + dev: true + + /cli-spinners@2.9.1: + resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==} + engines: {node: '>=6'} + dev: true + + /cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + dev: true + + /clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + requiresBuild: true + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: true + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + requiresBuild: true + dev: true + + /commitizen@4.3.0: + resolution: {integrity: sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw==} + engines: {node: '>= 12'} + hasBin: true + dependencies: + cachedir: 2.3.0 + cz-conventional-changelog: 3.3.0 + dedent: 0.7.0 + detect-indent: 6.1.0 + find-node-modules: 2.1.3 + find-root: 1.1.0 + fs-extra: 9.1.0 + glob: 7.2.3 + inquirer: 8.2.5 + is-utf8: 0.2.1 + lodash: 4.17.21 + minimist: 1.2.7 + strip-bom: 4.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /conventional-commit-types@3.0.0: + resolution: {integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==} + dev: true + + /core-js@2.6.12: + resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + requiresBuild: true + dev: true + + /cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.1)(typescript@5.2.2): + resolution: {integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==} + engines: {node: '>=v14.21.3'} + requiresBuild: true + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=7' + ts-node: '>=10' + typescript: '>=4' + dependencies: + '@types/node': 20.5.1 + cosmiconfig: 8.3.6(typescript@5.2.2) + ts-node: 10.9.1(@types/node@20.5.1)(typescript@5.2.2) + typescript: 5.2.2 + dev: true + optional: true + + /cosmiconfig@8.3.6(typescript@5.2.2): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + requiresBuild: true + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + typescript: 5.2.2 + dev: true + optional: true + + /create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + requiresBuild: true + dev: true + optional: true + + /cz-conventional-changelog@3.3.0: + resolution: {integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==} + engines: {node: '>= 10'} + dependencies: + chalk: 2.4.2 + commitizen: 4.3.0 + conventional-commit-types: 3.0.0 + lodash.map: 4.6.0 + longest: 2.0.1 + word-wrap: 1.2.5 + optionalDependencies: + '@commitlint/load': 17.7.2 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /cz@1.8.2: + resolution: {integrity: sha512-bSwdgNHdfwi3mb00NDX5nJ+i5m1CQub74QszamN8G09IKGPXFp1Sz2yAATtenngqDT1qdTc+/XjB3wokkqK3Pg==} + dependencies: + if-env: 1.0.4 + lodash: 4.17.21 + dev: true + + /dedent@0.7.0: + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + dev: true + + /defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + dependencies: + clone: 1.0.4 + dev: true + + /detect-file@1.0.0: + resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} + engines: {node: '>=0.10.0'} + dev: true + + /detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + dev: true + + /diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + requiresBuild: true + dev: true + optional: true + + /duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + dev: true + + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + requiresBuild: true + dependencies: + is-arrayish: 0.2.1 + dev: true + optional: true + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /event-stream@3.3.4: + resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} + dependencies: + duplexer: 0.1.2 + from: 0.1.7 + map-stream: 0.1.0 + pause-stream: 0.0.11 + split: 0.3.3 + stream-combiner: 0.0.4 + through: 2.3.8 + dev: true + + /expand-tilde@2.0.2: + resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} + engines: {node: '>=0.10.0'} + dependencies: + homedir-polyfill: 1.0.3 + dev: true + + /external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + dev: true + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + requiresBuild: true + dev: true + optional: true + + /figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /find-node-modules@2.1.3: + resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==} + dependencies: + findup-sync: 4.0.0 + merge: 2.1.1 + dev: true + + /find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + dev: true + + /findup-sync@4.0.0: + resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==} + engines: {node: '>= 8'} + dependencies: + detect-file: 1.0.0 + is-glob: 4.0.3 + micromatch: 4.0.5 + resolve-dir: 1.0.1 + dev: true + + /from@0.1.7: + resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} + dev: true + + /fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /git-cliff-darwin-arm64@1.3.1: + resolution: {integrity: sha512-Ms8xACh/8GFQ2t7/2MJk9yJof/Ir5Ls9d+LuEMut0D3toNjIaGSmHq0WC5hBPq2PJ1/FK8U53sgkOIf2x8Q4aA==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /git-cliff-darwin-x64@1.3.1: + resolution: {integrity: sha512-lnotUCDnCQmEyadf2t9NASeTT6/3Gaz5Hf3+W/uS1fpnPJKWWY4n9TNfCKhZyJhUOq43/vrcOScznuLug+YPcw==} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /git-cliff-linux-arm64@1.3.1: + resolution: {integrity: sha512-ydx5CSjKlELFEH7NAJf2aciBJg0hzIoM3308E8sGSBltXPeSHOuMAxIJP4jMkJ9ONsY90AHmunldCUSPv1gwTA==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /git-cliff-linux-x64@1.3.1: + resolution: {integrity: sha512-CJXRH+37PDQMQWuGwXPDacZmbQQ6xQji6h7HXifxCkanOsKqsBocYI+n35woa+Pgk3QUcf2pTGpZuFhrKlwSoA==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /git-cliff-windows-arm64@1.3.1: + resolution: {integrity: sha512-uKP7syv0SeJjJq58vSqI4fXOnlbfXpi1VLTrLLMJljnk+i/V2AfDJaZaRgYOxtuxMcRXq5/SD8v47vvbugFRvw==} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /git-cliff-windows-x64@1.3.1: + resolution: {integrity: sha512-TU4/PBvo6Qb9Lz2/5pHPamkJuymHzn7ypLQCfg5AT3V27VVnphJMAR7iScBxDLvtj4mey48uFjCaWX+7ub+Z9w==} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /git-cliff@1.3.1: + resolution: {integrity: sha512-w0d35QMWuN4HSutGZINQ1rFD4zmWmWIzB40pXHwgb/fBSlXNvjGsFAoz/vxhsKUrlRSc2VZX/pdTC81hx+JzPA==} + hasBin: true + optionalDependencies: + git-cliff-darwin-arm64: 1.3.1 + git-cliff-darwin-x64: 1.3.1 + git-cliff-linux-arm64: 1.3.1 + git-cliff-linux-x64: 1.3.1 + git-cliff-windows-arm64: 1.3.1 + git-cliff-windows-x64: 1.3.1 + dev: true + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /global-dirs@0.1.1: + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} + requiresBuild: true + dependencies: + ini: 1.3.8 + dev: true + optional: true + + /global-modules@1.0.0: + resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} + engines: {node: '>=0.10.0'} + dependencies: + global-prefix: 1.0.2 + is-windows: 1.0.2 + resolve-dir: 1.0.1 + dev: true + + /global-prefix@1.0.2: + resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} + engines: {node: '>=0.10.0'} + dependencies: + expand-tilde: 2.0.2 + homedir-polyfill: 1.0.3 + ini: 1.3.8 + is-windows: 1.0.2 + which: 1.3.1 + dev: true + + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: true + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + requiresBuild: true + dev: true + + /homedir-polyfill@1.0.3: + resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} + engines: {node: '>=0.10.0'} + dependencies: + parse-passwd: 1.0.0 + dev: true + + /husky@8.0.3: + resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} + engines: {node: '>=14'} + hasBin: true + dev: true + + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: true + + /if-env@1.0.4: + resolution: {integrity: sha512-4tDLfStvvI8Yh0+tBseP2KufM33QQdLxbm4OlUgVCH6sr3t+kRcPMMzt/zOwB0nzAyW/ZqrXtMdkaUsPIZMLYQ==} + hasBin: true + dependencies: + npm-run-all: 1.4.0 + dev: true + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + requiresBuild: true + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + optional: true + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /inquirer@8.2.5: + resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} + engines: {node: '>=12.0.0'} + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.8.1 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + requiresBuild: true + dev: true + optional: true + + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true + + /is-utf8@0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + dev: true + + /is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + dev: true + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + requiresBuild: true + dev: true + optional: true + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + requiresBuild: true + dependencies: + argparse: 2.0.1 + dev: true + optional: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + requiresBuild: true + dev: true + optional: true + + /json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + requiresBuild: true + dev: true + optional: true + + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.0 + optionalDependencies: + graceful-fs: 4.2.11 + dev: true + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + requiresBuild: true + dev: true + optional: true + + /lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + requiresBuild: true + dev: true + optional: true + + /lodash.map@4.6.0: + resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==} + dev: true + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + requiresBuild: true + dev: true + optional: true + + /lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + requiresBuild: true + dev: true + optional: true + + /lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + requiresBuild: true + dev: true + optional: true + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + dev: true + + /log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + dev: true + + /longest@2.0.1: + resolution: {integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==} + engines: {node: '>=0.10.0'} + dev: true + + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + requiresBuild: true + dev: true + optional: true + + /map-stream@0.1.0: + resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} + dev: true + + /merge@2.1.1: + resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==} + dev: true + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist@1.2.7: + resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} + dev: true + + /mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + dev: true + + /npm-run-all@1.4.0: + resolution: {integrity: sha512-Le4iFE4VsbjPG4IMtuMN7gHu3UXIVnywPqBS2s3vHQe0JMGewfyWE8WYyqM509PjUybi4wbSqgW69mr3XGFr0w==} + hasBin: true + dependencies: + babel-polyfill: 6.26.0 + minimatch: 3.1.2 + ps-tree: 1.2.0 + shell-quote: 1.8.1 + which: 1.3.1 + dev: true + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + + /ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.1 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + + /os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + dev: true + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + requiresBuild: true + dependencies: + callsites: 3.1.0 + dev: true + optional: true + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + requiresBuild: true + dependencies: + '@babel/code-frame': 7.22.13 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + optional: true + + /parse-passwd@1.0.0: + resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} + engines: {node: '>=0.10.0'} + dev: true + + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + requiresBuild: true + dev: true + optional: true + + /pause-stream@0.0.11: + resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} + dependencies: + through: 2.3.8 + dev: true + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /prettier@3.0.3: + resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} + engines: {node: '>=14'} + hasBin: true + dev: true + + /ps-tree@1.2.0: + resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==} + engines: {node: '>= 0.10'} + hasBin: true + dependencies: + event-stream: 3.3.4 + dev: true + + /punycode@2.3.0: + resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} + engines: {node: '>=6'} + requiresBuild: true + dev: true + optional: true + + /readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + + /regenerator-runtime@0.10.5: + resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==} + dev: true + + /regenerator-runtime@0.11.1: + resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} + dev: true + + /require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: true + optional: true + + /resolve-dir@1.0.1: + resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} + engines: {node: '>=0.10.0'} + dependencies: + expand-tilde: 2.0.2 + global-modules: 1.0.0 + dev: true + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + requiresBuild: true + dev: true + optional: true + + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + requiresBuild: true + dev: true + optional: true + + /resolve-global@1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + requiresBuild: true + dependencies: + global-dirs: 0.1.1 + dev: true + optional: true + + /restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + dev: true + + /rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + dependencies: + tslib: 2.6.2 + dev: true + + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: true + + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: true + + /shell-quote@1.8.1: + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /split@0.3.3: + resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} + dependencies: + through: 2.3.8 + dev: true + + /stream-combiner@0.0.4: + resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} + dependencies: + duplexer: 0.1.2 + dev: true + + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + dev: true + + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + requiresBuild: true + dependencies: + has-flag: 4.0.0 + dev: true + + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true + + /tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + dependencies: + os-tmpdir: 1.0.2 + dev: true + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /ts-node@10.9.1(@types/node@20.5.1)(typescript@5.2.2): + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + requiresBuild: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.5.1 + acorn: 8.10.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.2.2 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + optional: true + + /tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + dev: true + + /type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + dev: true + + /typescript@5.2.2: + resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} + engines: {node: '>=14.17'} + hasBin: true + requiresBuild: true + dev: true + optional: true + + /universalify@2.0.0: + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} + dev: true + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + requiresBuild: true + dependencies: + punycode: 2.3.0 + dev: true + optional: true + + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + dev: true + + /v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + requiresBuild: true + dev: true + optional: true + + /wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + dependencies: + defaults: 1.0.4 + dev: true + + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + requiresBuild: true + dev: true + optional: true diff --git a/project-management/communication.md b/project-management/communication.md new file mode 100644 index 0000000..7271b2c --- /dev/null +++ b/project-management/communication.md @@ -0,0 +1,3 @@ +# TODO + +Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. diff --git a/project-management/people.md b/project-management/people.md new file mode 100644 index 0000000..7271b2c --- /dev/null +++ b/project-management/people.md @@ -0,0 +1,3 @@ +# TODO + +Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. diff --git a/project-management/project-report.md b/project-management/project-report.md new file mode 100644 index 0000000..7271b2c --- /dev/null +++ b/project-management/project-report.md @@ -0,0 +1,3 @@ +# TODO + +Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. diff --git a/project-management/tools.md b/project-management/tools.md new file mode 100644 index 0000000..7271b2c --- /dev/null +++ b/project-management/tools.md @@ -0,0 +1,3 @@ +# TODO + +Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. diff --git a/report.md b/report.md new file mode 100644 index 0000000..7271b2c --- /dev/null +++ b/report.md @@ -0,0 +1,3 @@ +# TODO + +Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. diff --git a/site.webmanifest b/site.webmanifest new file mode 100644 index 0000000..52a2fe3 --- /dev/null +++ b/site.webmanifest @@ -0,0 +1,11 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, + { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/src/.gitkeep b/src/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/test/.gitkeep b/test/.gitkeep new file mode 100644 index 0000000..e69de29