diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml index 8b51e9a..82d2c62 100644 --- a/.github/workflows/hugo.yml +++ b/.github/workflows/hugo.yml @@ -55,7 +55,7 @@ jobs: HUGO_ENV: production run: | url="${{ steps.pages.outputs.base_url }}" - directories=("shenzhen-2024" "tokyo-2024") + directories=("shenzhen-2024" "tokyo-2024" "dublin-2024") for dir in "${directories[@]}"; do cd $dir hugo \ diff --git a/assets/isgd-2024-logo.png b/assets/isgd-2024-logo.png new file mode 100644 index 0000000..f55e844 Binary files /dev/null and b/assets/isgd-2024-logo.png differ diff --git a/assets/isgv-2024-logo.png b/assets/isgv-2024-logo.png new file mode 100644 index 0000000..531761f Binary files /dev/null and b/assets/isgv-2024-logo.png differ diff --git a/dublin-2024/.gitignore b/dublin-2024/.gitignore new file mode 100644 index 0000000..646ac51 --- /dev/null +++ b/dublin-2024/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +node_modules/ diff --git a/dublin-2024/archetypes/default.md b/dublin-2024/archetypes/default.md new file mode 100644 index 0000000..c50d068 --- /dev/null +++ b/dublin-2024/archetypes/default.md @@ -0,0 +1,5 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- diff --git a/dublin-2024/config.toml b/dublin-2024/config.toml new file mode 100644 index 0000000..1c8ba57 --- /dev/null +++ b/dublin-2024/config.toml @@ -0,0 +1,176 @@ +######################## default configuration #################### +baseURL = "https://gatherings.innersourcecommons.org/dublin-2024" +title = "InnerSource Gathering Dublin 2024" +themesDir = "../themes" +theme = "gathering-theme" +# post pagination +paginate = "4" +# post excerpt +summaryLength = "10" +# disqus short name +disqusShortname = "" # get your shortname form here : https://disqus.com +# disable language +disableLanguages = [] # desable language from here + +# output +[outputs] +home = ["HTML", "RSS", "JSON"] + +[markup] +defaultMarkdownHandler = "goldmark" + +[markup.goldmark] +[markup.goldmark.renderer] +unsafe = true + +############################# Plugins ############################## +# CSS Plugins +[[params.plugins.css]] +link = "plugins/bootstrap/css/bootstrap.min.css" +[[params.plugins.css]] +link = "plugins/themefisher-font/themefisher-font.min.css" + +# JS Plugins +[[params.plugins.js]] +link = "plugins/jquery/jquery.js" +[[params.plugins.js]] +link = "plugins/bootstrap/js/bootstrap.min.js" +[[params.plugins.js]] +link = "plugins/syotimer/syotimer.min.js" +[[params.plugins.js]] +link = "plugins/search/fuse.min.js" +[[params.plugins.js]] +link = "plugins/search/mark.js" +[[params.plugins.js]] +link = "plugins/search/search.js" +[[params.plugins.js]] +link = "plugins/google-map/map.js" + +############################## navigation ############################### +[menu] + +[[menu.main]] +name = "About" +URL = "about" +weight = 2 + +# [[menu.main]] +# name = "Speakers" +# URL = "speaker" +# weight = 3 + +[[menu.main]] +name = "FAQ" +URL = "faq" +weight = 4 + +[[menu.main]] +name = "Contact" +URL = "contact" +weight = 5 + +#################### default parameters ################################ +[params] +logo = "images/gathering-dublin-2024.png" +home = "Home" +# Meta data +description = "InnerSource Gathering Dublin 2024" +author = "InnerSource Gathering Organizors" +# email address +email = "gathering@innersource.org" +# Google Analitycs +google_analitycs_id = "" # your id +# search for blog page +search = true +images = ["images/ogp/ogp.png"] + +# Preloader +[params.preloader] +enable = true +preloader = "" # use jpg, png, svg or gif format. + +# Navigation button +[params.navigation_button] +enable = true +label = "Register" +link = "https://innersourcecommons.connpass.com/event/317995/" + +# google map +[params.map] +enable = true +gmap_api = "https://maps.googleapis.com/maps/api/js?key=AIzaSyBu5nZKbeK-WHQ70oqOWo-_4VmwOwKP9YQ" +map_latitude = "35.6678347" +map_longitude = "139.7500377,15" +map_marker = "images/marker.png" + + +############################# social icon ############################ +[[params.social]] +icon = "tf-ion-social-twitter" +link = "https://twitter.com/InnerSourceJP" + +[[params.social]] +icon = "tf-ion-social-linkedin" +link = "https://www.linkedin.com/company/innersourcecommons/" + +[[params.social]] +icon = "tf-ion-social-youtube" +link = "https://www.youtube.com/@InnerSourceCommonsJapan" + +################################### English language ##################################### +[Languages.en] +languageName = "En" +languageCode = "en-us" +contentDir = "content" +weight = 1 +home = "Home" +# footer content +footer_content = """ +InnerSource Commons is a global community for InnerSource. Established in 2015, it now supports and connects over 3,000 individuals from more than 750 companies, academic institutions, and government agencies. The community shares how to get started with InnerSource and its best practices while fostering discussions about InnerSource values and principles. +""" +# copyright +copyright = """ +[CODE OF CONDUCT](https://innersourcecommons.org/about/codeofconduct/) | © InnerSource Gathering +""" + +############################# Organizers ############################ +# Executive Members +[params.organizers] +enable = true +head = "Organizers" + +[[params.organizers.members]] +image = "images/organizers/bory_kb.png" +profile = "https://twitter.com/bory_kb" + +[[params.organizers.members]] +image = "images/organizers/daichi-tazawa.png" +profile = "https://github.com/daichi-tazawa" + +[[params.organizers.members]] +image = "images/organizers/jimmysharp.png" +profile = "https://github.com/jimmysharp" + +[[params.organizers.members]] +image = "images/organizers/jnymyk.png" +profile = "https://twitter.com/jnymyk" + +[[params.organizers.members]] +image = "images/organizers/HK3330.png" +profile = "https://github.com/HK3330" + +[[params.organizers.members]] +image = "images/organizers/kyuukix.png" +profile = "https://github.com/kyuukix" + +[[params.organizers.members]] +image = "images/organizers/piyonakajima.png" +profile = "https://twitter.com/piyonakajima" + +[[params.organizers.members]] +image = "images/organizers/rashikawat.png" +profile = "https://github.com/rashikawat" + +[[params.organizers.members]] +image = "images/organizers/yuhattor.png" +profile = "https://twitter.com/yuhattor" diff --git a/dublin-2024/content/about/_index.md b/dublin-2024/content/about/_index.md new file mode 100644 index 0000000..6b46dd1 --- /dev/null +++ b/dublin-2024/content/about/_index.md @@ -0,0 +1,7 @@ +--- +title: "About" +date: 2024-01-10T13:51:25+06:00 +draft: false +description: "インナーソースとは" +bg_image: "images/gathering-images/gathering-2-dark.jpg" +--- diff --git a/dublin-2024/content/blog/_index.md b/dublin-2024/content/blog/_index.md new file mode 100644 index 0000000..2629fd5 --- /dev/null +++ b/dublin-2024/content/blog/_index.md @@ -0,0 +1,7 @@ +--- +title: "Blog" +date: 2019-09-10T13:51:25+06:00 +draft: false +description: "this is meta description" +bg_image : "images/bg/cta-bg.jpg" +--- \ No newline at end of file diff --git a/tokyo-2024/content/blog/post.3.md b/dublin-2024/content/blog/post.1.md similarity index 95% rename from tokyo-2024/content/blog/post.3.md rename to dublin-2024/content/blog/post.1.md index 6391697..eaed5c0 100644 --- a/tokyo-2024/content/blog/post.3.md +++ b/dublin-2024/content/blog/post.1.md @@ -6,12 +6,12 @@ description: "this is meta description" # page title backgrount image bg_image : "images/bg/cta-bg.jpg" # post thumb -image : "images/blog/blog-3.jpg" +image : "images/blog/blog-2.jpg" # author author: "John Doe" # Taxonomies -categories: ["Event"] -tags: ["Web", "Blog"] +categories: ["Lifestyle"] +tags: ["Music", "Agency"] # type type: "post" --- diff --git a/dublin-2024/content/contact/_index.md b/dublin-2024/content/contact/_index.md new file mode 100644 index 0000000..5b2c8fe --- /dev/null +++ b/dublin-2024/content/contact/_index.md @@ -0,0 +1,9 @@ +--- +title: "お問い合わせ" +date: 2023-09-10T13:51:25+06:00 +draft: false +description: "お問い合わせ" +bg_image: "images/gathering-images/gathering-4-dark.jpg" +--- + +gatherings@innersourcecommons.org にお問い合わせください。 diff --git a/dublin-2024/content/faq/_index.md b/dublin-2024/content/faq/_index.md new file mode 100644 index 0000000..2299880 --- /dev/null +++ b/dublin-2024/content/faq/_index.md @@ -0,0 +1,7 @@ +--- +title: "よくある質問" +date: 2019-09-10T13:51:25+06:00 +draft: false +description: "InnerSource Gathering のよくある質問" +bg_image: "images/gathering-images/gathering-1-dark.jpg" +--- diff --git a/dublin-2024/content/schedule/_index.md b/dublin-2024/content/schedule/_index.md new file mode 100644 index 0000000..b0a94c4 --- /dev/null +++ b/dublin-2024/content/schedule/_index.md @@ -0,0 +1,7 @@ +--- +title: "Schedule" +date: 2019-09-10T13:51:25+06:00 +draft: false +description: "this is meta description" +bg_image: "images/gathering-images/gathering-4-dark.jpg" +--- diff --git a/dublin-2024/content/speaker/Kazumi-Sato.md b/dublin-2024/content/speaker/Kazumi-Sato.md new file mode 100644 index 0000000..58b544d --- /dev/null +++ b/dublin-2024/content/speaker/Kazumi-Sato.md @@ -0,0 +1,20 @@ +--- +title: "佐藤 和美 / Kazumi Sato" +date: 2019-09-10T13:51:25+06:00 +draft: false +description: | + さまざまなソニー製品向けのLinuxベースのシステムソフトウェアの開発に従事、その技術開発の主導しています。また、オープンソースライセンスコンプライアンスやソニーでのオープンソースコミュニティ連携、オープンソース戦略を主導しています。2002年にソニーがLinuxを商品に搭載したときから、オープンソースライセンスに準拠したシステムソフトウェアの開発主導し製品に導入しています。ソニーのソフトウェア戦略コミッティのメンバーでもあります。 +image : "images/speakers/KazumiSato.png" +designation : ソニーグループ株式会社 テクノロジープラットフォーム Technology Infrastructure Center システムプラットフォーム技術部門 主幹技師, Distinguished Engineer +type : "speaker" +social: + # social site loop + # - icon : "tf-ion-social-facebook" + # link : "#" + # # social site loop + # - icon : "tf-ion-social-twitter" + # link : "#" + # social site loop + - icon : "tf-ion-social-linkedin" + link : "https://www.linkedin.com/in/kazumi-sato-5286a2304" +--- diff --git a/dublin-2024/content/speaker/_index.md b/dublin-2024/content/speaker/_index.md new file mode 100644 index 0000000..fef442e --- /dev/null +++ b/dublin-2024/content/speaker/_index.md @@ -0,0 +1,11 @@ +--- +title: "Sessions" +date: 2019-09-10T13:51:25+06:00 +draft: false +description: "登壇者のご紹介" +bg_image: "images/gathering-images/gathering-3-dark.jpg" +--- + +## 登壇者のご紹介 + +インナーソースの実践者や、開発文化を変革しているリーダーなど、様々なバックグラウンドを持つ登壇者が、インナーソースに関するトピックについてお話します。 diff --git a/dublin-2024/data/en/about.yml b/dublin-2024/data/en/about.yml new file mode 100644 index 0000000..71fcfb1 --- /dev/null +++ b/dublin-2024/data/en/about.yml @@ -0,0 +1,98 @@ +Here's a translation of the provided text into English: + +################## about ################################# +about: + enable : true + title : "What is InnerSource" + content : | + InnerSource means **cultivating an open source-like culture within a company and creating a culture of transparent collaboration**.
+ This concept was proposed by Tim O'Reilly in 2000 as an innovative idea. + While open source involves sharing source code globally, InnerSource aims to share source code on a large scale within a company. + As companies grow larger, walls between departments and products can emerge, making collaboration difficult. + **InnerSource is a groundbreaking effort to solve these challenges by creating a culture of sharing across the entire organization.** + +################## sponsor ############################### +sponsor: + enable : false + # sponsor data comes from "homepage.yml" file + +################## Feature ############################## +feature: + enable: true + subtitle: "InnerSource Principles" + title: "Principles of
InnerSource" + button: + enable: true + label: "Learn More" + link: "https://innersourcecommons.org/ja/" + + feature_item: + # feature item loop + - title: "Openness" + icon: "tf-ion-code" # for a collaborative, community-focused icon + bg_color: "#17a2b8" + content: | + **Source code is made open within the organization, and anyone can freely access it.** + This allows developers to reference and learn from other teams' code. + Knowledge sharing becomes active, leading to overall skill improvement. + + # feature item loop + - title: "Transparency" + icon: "tf-ion-qr-scanner" # for an icon symbolizing knowledge or learning + bg_color: "" # defaults to dark color for a sleek look + content: | + **Not only the code but also the discussion process is made public.** + In other words, how decisions were made is transparent. + This allows developers from other teams to easily participate, and the project is recognized as a shared asset across the organization. + + # feature item loop + - title: "Prioritized
Mentorship" + icon: "tf-ion-person-stalker" # for an icon representing innovation or ideas + bg_color: "#ff4747" + content: | + **Prioritized support is provided to make it easier for new developers to participate.** + By following the contributions of guest teams and lowering the barriers to entry, new contributions to the project continue to emerge. + + # feature item loop + - title: "Voluntary
Contribution" + icon: "tf-ion-ios-heart" # for an icon depicting synchronization or processes + bg_color: "#4125dd" + content: | + **Contribution to the project is not forced.**
+ Support from the project is also voluntary. + Each team respects and collaborates with each other to drive development forward. + +################## Resource ############################## +resource: + enable: true + title: "Learn about InnerSource" + body: "The InnerSource community provides resources to help learn about InnerSource in Japan.
Here are some representative resources where you can learn about InnerSource in Japanese." + items: + - title: Getting Started
with InnerSource + text: "A book to learn the basics of InnerSource." + url: "https://innersourcecommons.org/learn/books/getting-started-with-innersource/" + image: "https://innersourcecommons.org/images/learn/books/getting-started-with-innersource-cover-thumb.jpg" + + - title: InnerSource
Learning Path + text: "A learning path to systematically acquire knowledge about InnerSource." + url: "https://innersourcecommons.org/learn/" + image: "images/learning-path.jpg" + + - title: InnerSource
Patterns + text: "A book to learn proven InnerSource practices." + url: "https://patterns.innersourcecommons.org" + image: "https://github.com/InnerSourceCommons/InnerSourcePatterns/raw/main/book/en/innersource-patterns-book-cover.jpg" + + - title: Understanding
the InnerSource
Checklist + text: "A checklist to take your InnerSource practice one step further." + url: "https://innersourcecommons.org/learn/books/understanding-the-innersource-checklist/" + image: "https://innersourcecommons.org/images/learn/books/innersource-checklist-cover-thumb.jpg" + +slack: + enable: true + title: Join the Slack Community + body: "Join the Slack community to exchange information and ask questions about InnerSource." + button: + enable: true + label: "Join Slack!!" + link: "https://innersourcecommons.org/slack/" \ No newline at end of file diff --git a/dublin-2024/data/en/faq.yml b/dublin-2024/data/en/faq.yml new file mode 100644 index 0000000..ceb3ccc --- /dev/null +++ b/dublin-2024/data/en/faq.yml @@ -0,0 +1,45 @@ +################################# travel #################################### +faq: + title_outline: "FAQ" + title: "Frequently Asked Questions about InnerSource Gathering" + content: "If you have any questions, please feel free to ask the organizers at the bottom right of this page." + faq_item: + - title: "I would like to cover the event" + content: "If you wish to cover the event, you need to register in advance. Please understand that we cannot accept same-day coverage without prior registration." + + - title: "What is the event hashtag?" + content: "The official event hashtag is `#ISGD24`. Please share your impressions and insights on Twitter." + + - title: "Is there wireless LAN Internet access at the venue?" + content: "We provide wireless LAN access points for participants to use." + + - title: "Are there power outlets at the venue?" + content: "We provide power outlets for participants to use." + + - title: "Is there a fee to participate?" + content: "Participation is free of charge." + + - title: "Will the lecture videos be archived and made public?" + content: "After the conference, videos approved by the speakers will be made public." + + - title: "Will the lecture slides be made public?" + content: "The release of slides varies by session. If they are made public, the slide links will be shared on Twitter." + + - title: "Is this an online event? Please tell me about infection control measures." + content: "InnerSource Gathering is only for in-person participation. To ensure the safety of participants, we will thoroughly implement infection prevention measures at the venue based on national and local guidelines. We ask for your cooperation. The latest information about the event will be updated on Twitter from time to time." + + - title: "Regarding confidentiality" + content: | + The basic rule for handling information at this conference is the Chatham House Rule. + However, the handling of information varies depending on the content of the session or conversation, so please follow the instructions of the session speaker and the speaker in the end. + Please check with the information provider if the information can be made public as necessary. + + ##### What is the Chatham House Rule? + + The Chatham House Rule is a principle to promote open discussion at meetings and seminars. + Participants are free to share information obtained at the meeting externally, but may not reveal the identity of the information provider or the specific meeting at which the information was shared. + The main purpose of this rule is to provide a safe environment where participants can freely exchange opinions. + By applying the rule, sensitive information and opinions that are not normally discussed publicly can be more easily shared as anonymity is guaranteed. + + - title: "Regarding infection control measures" + content: "InnerSource Gathering will be held in person, taking into account COVID-19 countermeasures. Following government and local guidelines, we will prioritize the safety of participants while promoting interaction among InnerSource practitioners. Depending on the situation, there is a possibility of switching to a fully online event." \ No newline at end of file diff --git a/dublin-2024/data/en/homepage.yml b/dublin-2024/data/en/homepage.yml new file mode 100644 index 0000000..3a30fd4 --- /dev/null +++ b/dublin-2024/data/en/homepage.yml @@ -0,0 +1,122 @@ +############################# banner ################################ +banner: + enable : true + title : "InnerSource Gathering Dublin 2024" + bg_image: "images/dublin-dark.jpg" + date_time : "Sep 12, 2024" + button: + enable : false + label : "Discover more" + link : "#" + +########################## timer ################################# +timer: + enable : true + title : "**InnerSource Gathering**" + # set timer + year: "2024" + month: "9" + day: "12" + hour: "12" + +############################## Event ############################## +event: + enable: true + title: "Let's get together!!" + content: | + InnerSource Gatherings is an event that explores the secrets to achieving collaboration across organizational boundaries in software development.
+ InnerSource means fostering an open source-like culture within a company and realizing highly transparent collaboration. + As companies grow, walls can form between departments and products, making collaboration difficult. + By adopting InnerSource to break down barriers between departments and achieve co-creation, organizations can generate synergy and prevent reinventing the wheel. + InnerSource Gatherings introduces the latest trends and practical examples of InnerSource and provides a place for participants to deepen their interactions. + The key to unlocking the future of your organization is here. Please join us! + button: + enable: true + label: "Register to participate on Eventbrite" + link: "#" + +######################### Call to action ######################### +cta: + enable : true + subtitle : "10% Sale offer for early birds" + title : "Meet top **digital masters**
& influencers in a unique **3-days** experience." + image : "images/banner/rev-slider-09.png" + button: + enable : true + label : "get ticket" + link : "pricing" + +############################# Feature ########################### +feature: + enable: true + feature_item: + # feature item loop + - name : "Connect" + icon : "tf-ion-ios-people-outline" + content : "A community rooted in the region. Connect with InnerSource practitioners and people interested in InnerSource in Japan." + + # feature item loop + - name: "Practitioner Insights" + icon : "tf-ion-ios-lightbulb-outline" + content : "Hear case studies from companies that have actually built an open and transparent development culture within their organizations." + + # feature item loop + - name : "Globally Expanding
Community" + icon : "tf-ion-earth" + content : "The Gathering is connected not only to the local community but also to InnerSource communities around the world. It's an opportunity to open the door to exchanges with practitioners worldwide." + +####################### Schedule ############################# +schedule: + enable : true + # schedule data comes from "schedule.yml" file + +####################### pricing ############################# +pricing: + enable : false + # pricing data comes from "pricing.yml" file + +########################## speaker ########################## +speaker: + enable : false + title_outline : "Sessions" + title: "" + # speaker content comes from "content/speaker" folder + +######################### sponsor ############################ +sponsor: + enable : true + title_outline : "Sponsors" + title : "" + sponsor_group: + ############################ sponsor group loop + - title : "スポンサー" + sponsor: + - logo : "images/clients/linux-foundation.png" + link : "https://www.linuxfoundation.jp/" + size: large + - logo : "images/clients/nifty.png" + link : "https://www.nifty.co.jp/" + size: large + - logo : "images/clients/kddi.png" + link : "https://www.kddi.com/" + size: large + + # call to action in sponsor + sponsorship: + enable : false + title : "" + #button + label : "スポンサー申込みはこちら" + link : "mailto:gatherings@innersourcecommons.org" + +################################ venue ######################## +venue: + enable : true + title : "KDDI DIGITAL GATE" + image : "images/kddi-dd-logo.jpg" + date : "Aug 8, 2024" + location : "〒105-0001 Tokyo, Minato City, Toranomon, 2 Chome−10−1 3F 虎ノ門ツインビルディング 西棟" + button: + enable : true + label : "View Map location" + link : "https://maps.app.goo.gl/WYDEpeN1HFwnqfZf8" diff --git a/dublin-2024/data/en/pricing.yml b/dublin-2024/data/en/pricing.yml new file mode 100644 index 0000000..4ec70cc --- /dev/null +++ b/dublin-2024/data/en/pricing.yml @@ -0,0 +1,72 @@ +################################# timer ############################ +timer: + enable : true + title : "**Count the day**
until conference start" + content : "Our intensive 2-day business conferences will teach you the specific steps and proven systems you need to implement and grow your business. We hope you’ll join us!" + # timer value comes from "homepage.yml" file + +################################# Pricing ########################## +pricing: + enable: false + title_outline : "Price" + title : "Get your Ticket" + content : "Accusantium provident suscipit dicta magni dolor deserunt nam obcaecati non veritatis optio." + pricing_table: + # pricing table loop + - title : "Early" + style : "1" + price : "70$" + icon : "tf-ion-android-bulb" + bg_image : "images/bg/page-header.jpg" + services: + - "Two Days Ticket" + - "Coffee & Launch" + - "Networking" + - "Certificate" + - "Gift Box" + - "Email listing" + button: + label : "Get now" + link : "#" + + # pricing table loop + - title : "Team" + style : "2" + price : "250$" + icon : "tf-ion-android-hangout" + bg_image : "images/bg/page-header.jpg" + services: + - "Two Days Ticket" + - "Coffee & Launch" + - "Networking" + - "Certificate" + - "Gift Box" + - "Public ad listing" + - "Email listing" + button: + label : "Get now" + link : "#" + + # pricing table loop + - title : "Economic" + style : "3" + price : "300$" + icon : "tf-ion-android-person" + bg_image : "images/bg/page-header.jpg" + services: + - "Two Days Ticket" + - "Coffee & Launch" + - "Networking" + - "Certificate" + - "Gift Box" + - "Public ad listing" + - "Dinner Serve" + - "Email listing" + button: + label : "Get now" + link : "#" + +############################## Event ############################## +event: + enable : true + # event content comes from "homepage.yml" file \ No newline at end of file diff --git a/dublin-2024/data/en/schedule.yml b/dublin-2024/data/en/schedule.yml new file mode 100644 index 0000000..c4bc7f9 --- /dev/null +++ b/dublin-2024/data/en/schedule.yml @@ -0,0 +1,109 @@ +schedule: + enable: true + title_outline: Schedule + schedule_tab: + ################# tab item loop ################ + - title: "Day 1: Kick-off and Collaboration" + date_time: "Thursday, Aug 8th" + schedule_items: + - time: "12:30" + # image: "images/user.jpg" + content: | + ### 開場 + - time: "13:00" + image: "images/speakers/danese.png" + content: | + ### Welcome to the InnerSource Gathering + **Danese Cooper, The Founder of InnerSource Commons Foundation** (Online) + - time: "13:10" + image: "images/speakers/yuhattor.png" + image2: "images/speakers/TsuyoshiUshio.png" + content: | + ### 基調講演: 世界一流エンジニアの思考法から学ぶ、フィードバックを活かす組織づくり + **Tsuyoshi Ushio - Sr. Software Engineer at Microsoft** (Online)
+ **Yuki Hattori - Vice President of InnerSource Commons Foundation / Sr. Architect at GitHub** + + 牛尾さんの著書「世界一流エンジニアの思考法」で紹介された「フィードバックを歓迎する」というテーマを深掘りします。 + 組織においてどのようにフィードバックを促進し、建設的な対話を生み出すかについて、牛尾さんの経験から、メンタルモデルやチームビルディングに対するヒントを得ていきます。 + InnerSource Commons VPの服部氏とともに、フィードバックを通じた組織文化の醸成について掘り下げます。 + - time: "13:50" + image: "images/speakers/JunyaMiyake.png" + image2: "images/speakers/RyutaroYoshiba.png" + content: | + ###### スペシャルセッション + ### チームトポロジーとインナーソースの深堀り + **Ryutaro YOSHIBA - 株式会社アトラクタ Founder兼CTO**
+ **Junya Miyake - KDDIアジャイル開発センター株式会社** + + [Coming Soon] + + 書籍「チームトポロジー 価値あるソフトウェアをすばやく届ける適応型組織設計」を翻訳された吉羽さんと、チームトポロジーとインナーソースの関係について掘り下げます。 + + - time: "14:25" + image: "images/speakers/HK3330.png" + content: | + ### ゼロからボトムアップで始めるインナーソース + ##### ニフティのリアル事例 + **小松 初 - ニフティ株式会社 システム統括部 基幹システムグループ** + + ニフティはゼロからボトムアップでインナーソース導入を進めてきました。 + まだ道半ばではありますが、「インナーソース」というワードが社内でも徐々に浸透し、少しずつコラボレーションが生まれています。 + 本セッションでは、導入のために実際に行った具体的なステップや直面したハードル、現在抱える悩みなどリアルな事例として共有します。 + これからインナーソースを試してみたいと考えている方々にとって、ヒントになれば幸いです。 + - time: "14:55" + # image: "images/user.jpg" + content: | + #### 休憩 + - time: "15:10" + image: "images/speakers/KazumiSato.png" + content: | + ### Sony Group Open Source Activities and Group Collaboration + **佐藤 和美 - Distinguished Engineer at ソニーグループ株式会社** + + ソニーでは2002年より製品でLinuxをはじめとするオープンソースを活用している。この講演ではソニーにおける社内技術コラボレーション体制、オープンソース推進体制、そしてオープンソース開発とその背景について紹介する。 + + - time: "15:40" + image: "images/speakers/NoriakiFukuyasu.png" + content: | + ###### スポンサーセッション + ### コラボラティブ・プロジェクト管理 + **福安 徳晃 - The Linux Foundation 日本代表** + + オープンソースとインナーソースには大きな共通点があります。 + それは厳密にはゴールを異にする組織を隔てた関係者間で、共通の意義を見出し、その点において共同作業 (collaborative project = コラボラティブ・プロジェクト)をする点です。 + このコラボラティブ・プロジェクトを成功裡に立ち上げ、継続して組織に価値を提供していくには何が必要か? + コラボラティブ・プロジェクトには投資が伴います。異なる組織感で共通の意義を見出し、企業として投資判断するためには、数値や仕組みが必要となります。 + + 本セッションでは、筆者がこれまでLinux Foundationでのオープンソースプロジェクト管理に携わった経験から、組織が異なるステークホルダーが意義を見出し、組織間コラボレーションを通して価値を創出する上でのキーポイントを具体的実例や手法などを提示しつつ紹介します。 + + - time: "16:10" + image: "images/speakers/question.png" + content: | + #### リフレッシュ! お楽しみ企画 / 休憩 + **InnerSource Gathering Tokyo 運営チーム** + + - time: "16:30" + # image: "images/user.jpg" + content: | + ### Coming Soon! + + - time: "17:00" + image: "images/speakers/arabian9ts.png" + image2: "images/speakers/KentaKozuka.png" + content: | + ### サイバーエージェントにおけるインナーソーシングの取り組み + **小塚健太 - Developer Productivity室 室長**
+ **前田 拓 - ABEMA Live/CyberFight/FANBASE ARENA 技術責任者(各兼務)** + + サイバーエージェントでは社内の技術資産活用のために業務で開発したプロダクトの全社利用の促進とコラボレーションでの開発を支援してます。本セッションでは全社プロジェクトではある「Dグレード」の取り組みの紹介と、インナーソーシングの一例であるPipeCDとterraform-provider-pipecdというプロジェクトが開発に至った経緯と実際の運用方法について説明します。 + + - time: "17:30" + content: | + ### InnerSource OST (Open Space Technology) + [オープンスペーステクノロジー(OST)](https://ja.wikipedia.org/wiki/%E3%82%AA%E3%83%BC%E3%83%97%E3%83%B3%E3%83%BB%E3%82%B9%E3%83%9A%E3%83%BC%E3%82%B9%E3%83%BB%E3%83%86%E3%82%AF%E3%83%8E%E3%83%AD%E3%82%B8%E3%83%BC)とは + 参加者にとって重要なテーマについて深い洞察を得るためのディスカッション形式のセッションです。 + + - time: "18:30" + # image: "images/user.jpg" + content: | + ### 懇親会 diff --git a/dublin-2024/i18n/en.yaml b/dublin-2024/i18n/en.yaml new file mode 100644 index 0000000..7276349 --- /dev/null +++ b/dublin-2024/i18n/en.yaml @@ -0,0 +1,35 @@ +- id: read_more + translation: Read More + +- id: posted_by + translation: Posted by this author + +- id: message_us + translation: Message Us + +- id: send + translation: Send + +- id: search + translation: Search + +- id: categories + translation: Categories + +- id: tags + translation: Tags + +- id: follow_us + translation: Follow us + +- id: subscribe + translation: Subscribe now + +- id: not_spam + translation: "" + +- id: email + translation: Email + +- id: professional_skills + translation: Professional Skills \ No newline at end of file diff --git a/dublin-2024/package-lock.json b/dublin-2024/package-lock.json new file mode 100644 index 0000000..792f69c --- /dev/null +++ b/dublin-2024/package-lock.json @@ -0,0 +1,2380 @@ +{ + "name": "tokyo-2024", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tokyo-2024", + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "autoprefixer": "^10.3.4", + "hugo-extended": "^0.88.1", + "postcss": "^8.3.6", + "postcss-cli": "^8.3.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dev": true, + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dev": true, + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "dev": true + }, + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", + "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dev": true, + "dependencies": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "dev": true + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true, + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", + "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001610", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001610.tgz", + "integrity": "sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "dev": true, + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dev": true, + "dependencies": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "dev": true, + "dependencies": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "dev": true, + "dependencies": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2/node_modules/file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "dev": true, + "dependencies": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "dev": true, + "dependencies": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip/node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "dev": true, + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dependency-graph": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.9.0.tgz", + "integrity": "sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.736", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.736.tgz", + "integrity": "sha512-Rer6wc3ynLelKNM4lOCg7/zPQj8tPOCB2hzD32PX9wd3hgRRi9MxEbmkFCokzcEhRVMiOVLjnL9ig9cefJ+6+Q==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/execa/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-stdin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "dev": true, + "dependencies": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dev": true, + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/hugo-extended": { + "version": "0.88.1", + "resolved": "https://registry.npmjs.org/hugo-extended/-/hugo-extended-0.88.1.tgz", + "integrity": "sha512-19mi0jxhzklIagNajmYjWfn24I4UuhIreu+2v/cnkrozNhVCkqLk2RK5feJtm7hK/FIj3rbTnhidUVkE5tuDSg==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "chalk": "^4.1.2", + "decompress": "^4.2.1", + "execa": "^5.1.1", + "fs-extra": "^10.0.0", + "got": "^11.8.2", + "sumchecker": "^3.0.1", + "tempy": "^2.0.0" + }, + "bin": { + "hugo": "cli.js", + "hugo-extended": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", + "dev": true + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-cli": { + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-8.3.1.tgz", + "integrity": "sha512-leHXsQRq89S3JC9zw/tKyiVV2jAhnfQe0J8VI4eQQbUjwIe0XxVqLrR+7UsahF1s9wi4GlqP6SJ8ydf44cgF2Q==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "chokidar": "^3.3.0", + "dependency-graph": "^0.9.0", + "fs-extra": "^9.0.0", + "get-stdin": "^8.0.0", + "globby": "^11.0.0", + "postcss-load-config": "^3.0.0", + "postcss-reporter": "^7.0.0", + "pretty-hrtime": "^1.0.3", + "read-cache": "^1.0.0", + "slash": "^3.0.0", + "yargs": "^16.0.0" + }, + "bin": { + "postcss": "bin/postcss" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-cli/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-reporter": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.1.0.tgz", + "integrity": "sha512-/eoEylGWyy6/DOiMP5lmFRdmDKThqgn7D6hP2dXKJI/0rJSO1ADFNngZfDzxL0YAxFvws+Rtpuji1YIHj4mySA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "picocolors": "^1.0.0", + "thenby": "^1.3.4" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", + "dev": true + }, + "node_modules/responselike": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", + "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "dev": true, + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dev": true, + "dependencies": { + "commander": "^2.8.1" + }, + "bin": { + "seek-bunzip": "bin/seek-bunzip", + "seek-table": "bin/seek-bzip-table" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dev": true, + "dependencies": { + "is-natural-number": "^4.0.1" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dev": true, + "dependencies": { + "debug": "^4.1.0" + }, + "engines": { + "node": ">= 8.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dev": true, + "dependencies": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-2.0.0.tgz", + "integrity": "sha512-m+QReZVhpa0Y56fmfoLFRZN4aDFdd3qVd8a9k3RfyTw/1utVYNg+Ar4BY6l4/TlkhYCCJFfhYWt9uy0127buJg==", + "dev": true, + "dependencies": { + "del": "^6.0.0", + "is-stream": "^3.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^2.0.0", + "unique-string": "^3.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/thenby": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz", + "integrity": "sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "node_modules/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "dev": true, + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + } + } +} diff --git a/dublin-2024/package.json b/dublin-2024/package.json new file mode 100644 index 0000000..2a230ec --- /dev/null +++ b/dublin-2024/package.json @@ -0,0 +1,19 @@ +{ + "name": "tokyo-2024", + "version": "1.0.0", + "main": "index.js", + "author": "", + "license": "ISC", + "description": "", + "scripts": { + "build": "hugo", + "build:preview": "hugo --baseURL \"${DEPLOY_PRIME_URL:-/}\" --buildDrafts --buildFuture", + "start": "hugo server" + }, + "devDependencies": { + "autoprefixer": "^10.3.4", + "hugo-extended": "^0.88.1", + "postcss": "^8.3.6", + "postcss-cli": "^8.3.1" + } +} \ No newline at end of file diff --git a/dublin-2024/static/images/banner/main-dark.png b/dublin-2024/static/images/banner/main-dark.png new file mode 100644 index 0000000..e6d4f2e Binary files /dev/null and b/dublin-2024/static/images/banner/main-dark.png differ diff --git a/dublin-2024/static/images/banner/speakers-bg-black.jpg b/dublin-2024/static/images/banner/speakers-bg-black.jpg new file mode 100644 index 0000000..96711b8 Binary files /dev/null and b/dublin-2024/static/images/banner/speakers-bg-black.jpg differ diff --git a/tokyo-2024/images/bg/footer-bg.jpg b/dublin-2024/static/images/bg/footer-bg.jpg similarity index 100% rename from tokyo-2024/images/bg/footer-bg.jpg rename to dublin-2024/static/images/bg/footer-bg.jpg diff --git a/tokyo-2024/images/bg/page-header.jpg b/dublin-2024/static/images/bg/page-header.jpg similarity index 100% rename from tokyo-2024/images/bg/page-header.jpg rename to dublin-2024/static/images/bg/page-header.jpg diff --git a/dublin-2024/static/images/clients/kddi.png b/dublin-2024/static/images/clients/kddi.png new file mode 100644 index 0000000..bf0a969 Binary files /dev/null and b/dublin-2024/static/images/clients/kddi.png differ diff --git a/dublin-2024/static/images/clients/linux-foundation.png b/dublin-2024/static/images/clients/linux-foundation.png new file mode 100755 index 0000000..ffc0a15 Binary files /dev/null and b/dublin-2024/static/images/clients/linux-foundation.png differ diff --git a/dublin-2024/static/images/clients/nifty.png b/dublin-2024/static/images/clients/nifty.png new file mode 100644 index 0000000..be5110c Binary files /dev/null and b/dublin-2024/static/images/clients/nifty.png differ diff --git a/dublin-2024/static/images/dublin-dark.jpg b/dublin-2024/static/images/dublin-dark.jpg new file mode 100644 index 0000000..cb83855 Binary files /dev/null and b/dublin-2024/static/images/dublin-dark.jpg differ diff --git a/dublin-2024/static/images/eyecatch/fall2017.jpg b/dublin-2024/static/images/eyecatch/fall2017.jpg new file mode 100644 index 0000000..6c172e3 Binary files /dev/null and b/dublin-2024/static/images/eyecatch/fall2017.jpg differ diff --git a/dublin-2024/static/images/gathering-dublin-2024.png b/dublin-2024/static/images/gathering-dublin-2024.png new file mode 100644 index 0000000..f55e844 Binary files /dev/null and b/dublin-2024/static/images/gathering-dublin-2024.png differ diff --git a/dublin-2024/static/images/gathering-images/gathering-1-dark.jpg b/dublin-2024/static/images/gathering-images/gathering-1-dark.jpg new file mode 100644 index 0000000..8a7e1f8 Binary files /dev/null and b/dublin-2024/static/images/gathering-images/gathering-1-dark.jpg differ diff --git a/dublin-2024/static/images/gathering-images/gathering-2-dark.jpg b/dublin-2024/static/images/gathering-images/gathering-2-dark.jpg new file mode 100644 index 0000000..a0bd1b9 Binary files /dev/null and b/dublin-2024/static/images/gathering-images/gathering-2-dark.jpg differ diff --git a/dublin-2024/static/images/gathering-images/gathering-2.jpg b/dublin-2024/static/images/gathering-images/gathering-2.jpg new file mode 100644 index 0000000..2b8b320 Binary files /dev/null and b/dublin-2024/static/images/gathering-images/gathering-2.jpg differ diff --git a/dublin-2024/static/images/gathering-images/gathering-3-dark.jpg b/dublin-2024/static/images/gathering-images/gathering-3-dark.jpg new file mode 100644 index 0000000..f24b336 Binary files /dev/null and b/dublin-2024/static/images/gathering-images/gathering-3-dark.jpg differ diff --git a/dublin-2024/static/images/gathering-images/gathering-3.jpg b/dublin-2024/static/images/gathering-images/gathering-3.jpg new file mode 100644 index 0000000..513e397 Binary files /dev/null and b/dublin-2024/static/images/gathering-images/gathering-3.jpg differ diff --git a/dublin-2024/static/images/gathering-images/gathering-4-dark.jpg b/dublin-2024/static/images/gathering-images/gathering-4-dark.jpg new file mode 100644 index 0000000..3284b1f Binary files /dev/null and b/dublin-2024/static/images/gathering-images/gathering-4-dark.jpg differ diff --git a/dublin-2024/static/images/kddi-dd-logo.jpg b/dublin-2024/static/images/kddi-dd-logo.jpg new file mode 100644 index 0000000..848660b Binary files /dev/null and b/dublin-2024/static/images/kddi-dd-logo.jpg differ diff --git a/dublin-2024/static/images/learning-path.jpg b/dublin-2024/static/images/learning-path.jpg new file mode 100644 index 0000000..29a95f5 Binary files /dev/null and b/dublin-2024/static/images/learning-path.jpg differ diff --git a/dublin-2024/static/images/marker.png b/dublin-2024/static/images/marker.png new file mode 100644 index 0000000..7fec0e6 Binary files /dev/null and b/dublin-2024/static/images/marker.png differ diff --git a/dublin-2024/static/images/ogp/ogp.png b/dublin-2024/static/images/ogp/ogp.png new file mode 100644 index 0000000..bf5451d Binary files /dev/null and b/dublin-2024/static/images/ogp/ogp.png differ diff --git a/dublin-2024/static/images/organizers/HK3330.png b/dublin-2024/static/images/organizers/HK3330.png new file mode 100644 index 0000000..14a83a9 Binary files /dev/null and b/dublin-2024/static/images/organizers/HK3330.png differ diff --git a/dublin-2024/static/images/organizers/bory_kb.png b/dublin-2024/static/images/organizers/bory_kb.png new file mode 100644 index 0000000..8eb3b9a Binary files /dev/null and b/dublin-2024/static/images/organizers/bory_kb.png differ diff --git a/dublin-2024/static/images/organizers/daichi-tazawa.png b/dublin-2024/static/images/organizers/daichi-tazawa.png new file mode 100644 index 0000000..ecb7b13 Binary files /dev/null and b/dublin-2024/static/images/organizers/daichi-tazawa.png differ diff --git a/dublin-2024/static/images/organizers/jimmysharp.png b/dublin-2024/static/images/organizers/jimmysharp.png new file mode 100644 index 0000000..8699341 Binary files /dev/null and b/dublin-2024/static/images/organizers/jimmysharp.png differ diff --git a/dublin-2024/static/images/organizers/jnymyk.png b/dublin-2024/static/images/organizers/jnymyk.png new file mode 100644 index 0000000..3e0e239 Binary files /dev/null and b/dublin-2024/static/images/organizers/jnymyk.png differ diff --git a/dublin-2024/static/images/organizers/koji-komatsu.png b/dublin-2024/static/images/organizers/koji-komatsu.png new file mode 100644 index 0000000..14a83a9 Binary files /dev/null and b/dublin-2024/static/images/organizers/koji-komatsu.png differ diff --git a/dublin-2024/static/images/organizers/kyuukix.png b/dublin-2024/static/images/organizers/kyuukix.png new file mode 100644 index 0000000..4460081 Binary files /dev/null and b/dublin-2024/static/images/organizers/kyuukix.png differ diff --git a/dublin-2024/static/images/organizers/piyonakajima.png b/dublin-2024/static/images/organizers/piyonakajima.png new file mode 100644 index 0000000..6fac780 Binary files /dev/null and b/dublin-2024/static/images/organizers/piyonakajima.png differ diff --git a/dublin-2024/static/images/organizers/rashikawat.png b/dublin-2024/static/images/organizers/rashikawat.png new file mode 100644 index 0000000..d588414 Binary files /dev/null and b/dublin-2024/static/images/organizers/rashikawat.png differ diff --git a/dublin-2024/static/images/organizers/yuhattor.png b/dublin-2024/static/images/organizers/yuhattor.png new file mode 100644 index 0000000..9f49789 Binary files /dev/null and b/dublin-2024/static/images/organizers/yuhattor.png differ diff --git a/dublin-2024/static/images/speakers/HK3330.png b/dublin-2024/static/images/speakers/HK3330.png new file mode 100644 index 0000000..14a83a9 Binary files /dev/null and b/dublin-2024/static/images/speakers/HK3330.png differ diff --git a/dublin-2024/static/images/speakers/JunyaMiyake.png b/dublin-2024/static/images/speakers/JunyaMiyake.png new file mode 100644 index 0000000..1fe7bbd Binary files /dev/null and b/dublin-2024/static/images/speakers/JunyaMiyake.png differ diff --git a/dublin-2024/static/images/speakers/KazumiSato.png b/dublin-2024/static/images/speakers/KazumiSato.png new file mode 100644 index 0000000..f2bcb63 Binary files /dev/null and b/dublin-2024/static/images/speakers/KazumiSato.png differ diff --git a/dublin-2024/static/images/speakers/KentaKozuka.png b/dublin-2024/static/images/speakers/KentaKozuka.png new file mode 100644 index 0000000..ebf929c Binary files /dev/null and b/dublin-2024/static/images/speakers/KentaKozuka.png differ diff --git a/dublin-2024/static/images/speakers/NoriakiFukuyasu.png b/dublin-2024/static/images/speakers/NoriakiFukuyasu.png new file mode 100644 index 0000000..133d410 Binary files /dev/null and b/dublin-2024/static/images/speakers/NoriakiFukuyasu.png differ diff --git a/dublin-2024/static/images/speakers/RyutaroYoshiba.png b/dublin-2024/static/images/speakers/RyutaroYoshiba.png new file mode 100644 index 0000000..221af91 Binary files /dev/null and b/dublin-2024/static/images/speakers/RyutaroYoshiba.png differ diff --git a/dublin-2024/static/images/speakers/TsuyoshiUshio.png b/dublin-2024/static/images/speakers/TsuyoshiUshio.png new file mode 100644 index 0000000..9a24f31 Binary files /dev/null and b/dublin-2024/static/images/speakers/TsuyoshiUshio.png differ diff --git a/dublin-2024/static/images/speakers/arabian9ts.png b/dublin-2024/static/images/speakers/arabian9ts.png new file mode 100644 index 0000000..f91fcf1 Binary files /dev/null and b/dublin-2024/static/images/speakers/arabian9ts.png differ diff --git a/dublin-2024/static/images/speakers/danese.png b/dublin-2024/static/images/speakers/danese.png new file mode 100644 index 0000000..850b227 Binary files /dev/null and b/dublin-2024/static/images/speakers/danese.png differ diff --git a/dublin-2024/static/images/speakers/question.png b/dublin-2024/static/images/speakers/question.png new file mode 100644 index 0000000..c5b20f0 Binary files /dev/null and b/dublin-2024/static/images/speakers/question.png differ diff --git a/dublin-2024/static/images/speakers/user.jpg b/dublin-2024/static/images/speakers/user.jpg new file mode 100644 index 0000000..2bdeca0 Binary files /dev/null and b/dublin-2024/static/images/speakers/user.jpg differ diff --git a/dublin-2024/static/images/speakers/yuhattor.png b/dublin-2024/static/images/speakers/yuhattor.png new file mode 100644 index 0000000..9f49789 Binary files /dev/null and b/dublin-2024/static/images/speakers/yuhattor.png differ diff --git a/dublin-2024/static/images/user.jpg b/dublin-2024/static/images/user.jpg new file mode 100644 index 0000000..2bdeca0 Binary files /dev/null and b/dublin-2024/static/images/user.jpg differ diff --git a/landing-page/data/en/homepage.yml b/landing-page/data/en/homepage.yml index 063bdcb..d41536f 100644 --- a/landing-page/data/en/homepage.yml +++ b/landing-page/data/en/homepage.yml @@ -40,11 +40,21 @@ feature: events: enable: true items: + - name: "InnerSource Gathering Vienna 2024" + # url: "./vienna-2024" + url: "#" + location: "Shenzhen" + date: "12 September 2024" - name: "InnerSource Gathering Shenzen 2024" # url: "./shenzhen-2024" url: "#" location: "Shenzhen" date: "Coming soon" + - name: "InnerSource Gathering Dublin 2024" + # url: "./dublin-2024" + url: "#" + location: "Shenzhen" + date: "12 September 2024" - name: "InnerSource Gathering Tokyo 2024" url: "./tokyo-2024" location: "Tokyo" diff --git a/tokyo-2024/content/author/john-doe.md b/tokyo-2024/content/author/john-doe.md deleted file mode 100644 index ad85877..0000000 --- a/tokyo-2024/content/author/john-doe.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "John Doe" -bg_image : "images/bg/cta-bg.jpg" -# portrait -image: "" -# email -email: "johndoe@example.org" -# meta description -description : "this is meta description" -# social -social: - - icon : "tf-ion-social-facebook" - link : "#" - - - icon : "tf-ion-social-twitter" - link : "#" - - - icon : "tf-ion-social-instagram" - link : "#" - - - icon : "tf-ion-social-dribbble" - link : "#" ---- - -Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sit amet vulputate augue. Duis auctor lacus id vehicula gravida. Nam suscipit vitae purus et laoreet. -Donec nisi dolor, consequat vel pretium id, auctor in dui. Nam iaculis, neque ac ullamcorper. - -Donec nisi dolor, consequat vel pretium id, auctor in dui. Nam iaculis, neque ac ullamcorper. Luis desita fonsi liufa vunui. \ No newline at end of file diff --git a/tokyo-2024/content/author/tom-hunk.md b/tokyo-2024/content/author/tom-hunk.md deleted file mode 100644 index e6c6cff..0000000 --- a/tokyo-2024/content/author/tom-hunk.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Tom Hunk" -bg_image : "images/bg/cta-bg.jpg" -# portrait -image: "" -# email -email: "email2@example.org" -# meta description -description : "this is meta description" -# social -social: - - icon : "tf-ion-social-facebook" - link : "#" - - - icon : "tf-ion-social-twitter" - link : "#" - - - icon : "tf-ion-social-instagram" - link : "#" - - - icon : "tf-ion-social-dribbble" - link : "#" ---- - -Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sit amet vulputate augue. Duis auctor lacus id vehicula gravida. Nam suscipit vitae purus et laoreet. -Donec nisi dolor, consequat vel pretium id, auctor in dui. Nam iaculis, neque ac ullamcorper. \ No newline at end of file diff --git a/tokyo-2024/content/blog/post.2.md b/tokyo-2024/content/blog/post.2.md deleted file mode 100644 index 95a774d..0000000 --- a/tokyo-2024/content/blog/post.2.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: "5 Creative Ideas for Conference Sessions" -date: 2019-09-10T13:51:25+06:00 -draft: false -description: "this is meta description" -# page title backgrount image -bg_image : "images/bg/cta-bg.jpg" -# post thumb -image : "images/blog/blog-1.jpg" -# author -author: "Tom Hunk" -# Taxonomies -categories: ["Innovation"] -tags: ["Web","Agency"] -# type -type: "post" ---- - -At first glance, the 31-year-old, with her Instagram following of 300 000, may give the -impression of being just another modest influencer, posing in brands like Dulce by Safiya, Culture -Hijab, and Hayah Collection. - -“I converted to Islam in 2007, but I never felt like I was fully ready to commit to hijab – my hair -was a crutch for me,” says burgeoning rap artist Neelam Hakeem. “From a fashion perspective, I didn’t -realize that you could be modest and fierce at the same time; that you could walk into a room and -command it. Not that I was ever a skin-shower,” she laughs. “I don’t have a Kardashian body.” The -diminutive Hakeem, whose face has the full and regal features of an African queen, is speaking from -her home in Los Angeles, where she lives with her husband, Marquis Henri, their two young children, -and her mother. At first glance, the 31-year-old, with her Instagram following of 300 000, may give -the impression of being just another modest influencer, posing in brands like Dulce by Safiya, Culture -Hijab, and Hayah Collection. Then you play one of her videos, and she starts rapping about everything -from political and social injustices to women’s rights. - - -> A shoe is not only a design, but it's a part of your body language, the way you walk. The way you're going to move is quite dictated by your shoes. - -With exposure comes the responsibility and added pressure of being a role model, which is something -Hart doesn’t take lightly. “By virtue of being a female in the job that I am in, you automatically -become a role model in some way, whether you choose that or not. I’m careful of the things I advocate -and the message I put out there,” she explains. “In a world of Instagram and selfies, I hope I can -offer young women something beyond the aesthetic and demonstrate that power comes from a realm outside -of the patriarchal gaze. I’d rather offer something relatable than something unattainable. - -##### On the inspiration behind the exhibition - -Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam architecto -cupiditate eius fuga fugit illum ipsa itaque maxime, molestias odio praesentium -quaerat, quam soluta tempora tempore veniam veritatis! Sequi, similique? \ No newline at end of file diff --git a/tokyo-2024/content/blog/post.4.md b/tokyo-2024/content/blog/post.4.md deleted file mode 100644 index 56a819f..0000000 --- a/tokyo-2024/content/blog/post.4.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: "5 Creative Ideas for Conference Sessions" -date: 2019-09-10T13:51:25+06:00 -draft: false -description: "this is meta description" -# page title backgrount image -bg_image : "images/bg/cta-bg.jpg" -# post thumb -image : "images/blog/blog-2.jpg" -# about author -author: "Tom Hunk" -# Taxonomies -categories: ["Creative"] -tags: ["New","Help","Agency"] -# type -type: "post" ---- - -At first glance, the 31-year-old, with her Instagram following of 300 000, may give the -impression of being just another modest influencer, posing in brands like Dulce by Safiya, Culture -Hijab, and Hayah Collection. - -“I converted to Islam in 2007, but I never felt like I was fully ready to commit to hijab – my hair -was a crutch for me,” says burgeoning rap artist Neelam Hakeem. “From a fashion perspective, I didn’t -realize that you could be modest and fierce at the same time; that you could walk into a room and -command it. Not that I was ever a skin-shower,” she laughs. “I don’t have a Kardashian body.” The -diminutive Hakeem, whose face has the full and regal features of an African queen, is speaking from -her home in Los Angeles, where she lives with her husband, Marquis Henri, their two young children, -and her mother. At first glance, the 31-year-old, with her Instagram following of 300 000, may give -the impression of being just another modest influencer, posing in brands like Dulce by Safiya, Culture -Hijab, and Hayah Collection. Then you play one of her videos, and she starts rapping about everything -from political and social injustices to women’s rights. - - -> A shoe is not only a design, but it's a part of your body language, the way you walk. The way you're going to move is quite dictated by your shoes. - -With exposure comes the responsibility and added pressure of being a role model, which is something -Hart doesn’t take lightly. “By virtue of being a female in the job that I am in, you automatically -become a role model in some way, whether you choose that or not. I’m careful of the things I advocate -and the message I put out there,” she explains. “In a world of Instagram and selfies, I hope I can -offer young women something beyond the aesthetic and demonstrate that power comes from a realm outside -of the patriarchal gaze. I’d rather offer something relatable than something unattainable. - -##### On the inspiration behind the exhibition - -Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam architecto -cupiditate eius fuga fugit illum ipsa itaque maxime, molestias odio praesentium -quaerat, quam soluta tempora tempore veniam veritatis! Sequi, similique? \ No newline at end of file diff --git a/tokyo-2024/images/about/404-Error-Concept.png b/tokyo-2024/images/about/404-Error-Concept.png deleted file mode 100644 index 0dfc7bd..0000000 Binary files a/tokyo-2024/images/about/404-Error-Concept.png and /dev/null differ diff --git a/tokyo-2024/images/bg/sprout.png b/tokyo-2024/images/bg/sprout.png deleted file mode 100644 index 1de1bba..0000000 Binary files a/tokyo-2024/images/bg/sprout.png and /dev/null differ diff --git a/tokyo-2024/images/sponsors/sponsor-white.png b/tokyo-2024/images/sponsors/sponsor-white.png deleted file mode 100644 index 046eac3..0000000 Binary files a/tokyo-2024/images/sponsors/sponsor-white.png and /dev/null differ diff --git a/tokyo-2024/images/sponsors/sponsor.png b/tokyo-2024/images/sponsors/sponsor.png deleted file mode 100644 index 8b7b4f3..0000000 Binary files a/tokyo-2024/images/sponsors/sponsor.png and /dev/null differ diff --git a/tokyo-2024/static/images/4.png b/tokyo-2024/static/images/4.png deleted file mode 100644 index 49d76eb..0000000 Binary files a/tokyo-2024/static/images/4.png and /dev/null differ diff --git a/tokyo-2024/static/images/about/404-Error-Concept.png b/tokyo-2024/static/images/about/404-Error-Concept.png deleted file mode 100644 index 0dfc7bd..0000000 Binary files a/tokyo-2024/static/images/about/404-Error-Concept.png and /dev/null differ diff --git a/tokyo-2024/static/images/about/big-data.png b/tokyo-2024/static/images/about/big-data.png deleted file mode 100644 index 6b91f2e..0000000 Binary files a/tokyo-2024/static/images/about/big-data.png and /dev/null differ diff --git a/tokyo-2024/static/images/about/creativity.jpg b/tokyo-2024/static/images/about/creativity.jpg deleted file mode 100644 index eed0160..0000000 Binary files a/tokyo-2024/static/images/about/creativity.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/about/h1-gallery-img-7.jpg b/tokyo-2024/static/images/about/h1-gallery-img-7.jpg deleted file mode 100644 index 9376f50..0000000 Binary files a/tokyo-2024/static/images/about/h1-gallery-img-7.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/about/login.jpg b/tokyo-2024/static/images/about/login.jpg deleted file mode 100644 index bcf655e..0000000 Binary files a/tokyo-2024/static/images/about/login.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/about/lunch.jpg b/tokyo-2024/static/images/about/lunch.jpg deleted file mode 100644 index d731a2a..0000000 Binary files a/tokyo-2024/static/images/about/lunch.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/about/main-home-img-1.jpg b/tokyo-2024/static/images/about/main-home-img-1.jpg deleted file mode 100644 index c59f165..0000000 Binary files a/tokyo-2024/static/images/about/main-home-img-1.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/about/pricing-2.jpg b/tokyo-2024/static/images/about/pricing-2.jpg deleted file mode 100644 index b223ee8..0000000 Binary files a/tokyo-2024/static/images/about/pricing-2.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/about/signup.png b/tokyo-2024/static/images/about/signup.png deleted file mode 100644 index db45ca3..0000000 Binary files a/tokyo-2024/static/images/about/signup.png and /dev/null differ diff --git a/tokyo-2024/static/images/about/wordpress.png b/tokyo-2024/static/images/about/wordpress.png deleted file mode 100644 index f6b4c47..0000000 Binary files a/tokyo-2024/static/images/about/wordpress.png and /dev/null differ diff --git a/tokyo-2024/static/images/banner/banner-2.jpg b/tokyo-2024/static/images/banner/banner-2.jpg deleted file mode 100644 index b92f8d1..0000000 Binary files a/tokyo-2024/static/images/banner/banner-2.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/banner/rev-slider-09.png b/tokyo-2024/static/images/banner/rev-slider-09.png deleted file mode 100644 index 98d41c8..0000000 Binary files a/tokyo-2024/static/images/banner/rev-slider-09.png and /dev/null differ diff --git a/tokyo-2024/static/images/bg/cta-bg.jpg b/tokyo-2024/static/images/bg/cta-bg.jpg deleted file mode 100644 index 8cb70a4..0000000 Binary files a/tokyo-2024/static/images/bg/cta-bg.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/bg/cta-bg2.jpg b/tokyo-2024/static/images/bg/cta-bg2.jpg deleted file mode 100644 index a303836..0000000 Binary files a/tokyo-2024/static/images/bg/cta-bg2.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/bg/ctg.jpg b/tokyo-2024/static/images/bg/ctg.jpg deleted file mode 100644 index 897926f..0000000 Binary files a/tokyo-2024/static/images/bg/ctg.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/blog/blog-1.jpg b/tokyo-2024/static/images/blog/blog-1.jpg deleted file mode 100644 index 7461816..0000000 Binary files a/tokyo-2024/static/images/blog/blog-1.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/blog/blog-2.jpg b/tokyo-2024/static/images/blog/blog-2.jpg deleted file mode 100644 index 1a386c4..0000000 Binary files a/tokyo-2024/static/images/blog/blog-2.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/blog/blog-3.jpg b/tokyo-2024/static/images/blog/blog-3.jpg deleted file mode 100644 index 91e3617..0000000 Binary files a/tokyo-2024/static/images/blog/blog-3.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-1.png b/tokyo-2024/static/images/clients/client-img-1.png deleted file mode 100644 index af12464..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-1.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-2.png b/tokyo-2024/static/images/clients/client-img-2.png deleted file mode 100644 index 5983a70..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-2.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-3.png b/tokyo-2024/static/images/clients/client-img-3.png deleted file mode 100644 index e60f855..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-3.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-4.png b/tokyo-2024/static/images/clients/client-img-4.png deleted file mode 100644 index 4171efc..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-4.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-5.png b/tokyo-2024/static/images/clients/client-img-5.png deleted file mode 100644 index 8bfad62..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-5.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-6.png b/tokyo-2024/static/images/clients/client-img-6.png deleted file mode 100644 index ab43d3b..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-6.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-7.png b/tokyo-2024/static/images/clients/client-img-7.png deleted file mode 100644 index 492a10b..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-7.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-8.png b/tokyo-2024/static/images/clients/client-img-8.png deleted file mode 100644 index 7f3071a..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-8.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/client-img-9.png b/tokyo-2024/static/images/clients/client-img-9.png deleted file mode 100644 index c6f85a3..0000000 Binary files a/tokyo-2024/static/images/clients/client-img-9.png and /dev/null differ diff --git a/tokyo-2024/static/images/clients/s-1.jpg b/tokyo-2024/static/images/clients/s-1.jpg deleted file mode 100644 index 6b295e8..0000000 Binary files a/tokyo-2024/static/images/clients/s-1.jpg and /dev/null differ diff --git a/tokyo-2024/static/images/clients/s-2.jpg b/tokyo-2024/static/images/clients/s-2.jpg deleted file mode 100644 index ffe1395..0000000 Binary files a/tokyo-2024/static/images/clients/s-2.jpg and /dev/null differ