├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── db.js ├── main.js ├── menu.js ├── package.json └── yarn.lock ├── index.html ├── package.json ├── postcss.config.js ├── tsconfig.json ├── vite.config.js ├── web ├── App.svelte ├── Page.svelte ├── ReferenceBlock.svelte ├── blocks │ ├── Link.svelte │ └── Tag.svelte ├── bridge.ts ├── components │ ├── PageSearchInput.svelte │ └── RouteLink.svelte ├── db.ts ├── editor │ ├── Block.svelte │ ├── Richtext.svelte │ ├── blocks │ │ └── builtin │ │ │ ├── Bold.svelte │ │ │ ├── Code.svelte │ │ │ ├── ExternalLink.svelte │ │ │ ├── Link.svelte │ │ │ └── Todo.svelte │ ├── directives.ts │ ├── parser │ │ └── index.ts │ ├── store.ts │ └── utils.ts ├── index.html ├── main.ts ├── pages │ ├── DailyNotes.svelte │ └── OpenFile.svelte ├── plastic.ts ├── router.ts ├── rules.ts └── style.css └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build/release 2 | 3 | on: push 4 | 5 | jobs: 6 | release: 7 | runs-on: ${{ matrix.os }} 8 | 9 | strategy: 10 | matrix: 11 | os: [macos-latest, windows-latest] 12 | 13 | steps: 14 | - name: Check out Git repository 15 | uses: actions/checkout@v1 16 | 17 | - name: Install Node.js, NPM and Yarn 18 | uses: actions/setup-node@v1 19 | with: 20 | node-version: 12 21 | 22 | - name: Build/release Electron app 23 | uses: samuelmeuli/action-electron-builder@v1 24 | with: 25 | # GitHub token, automatically provided to the action 26 | # (No need to define this secret in the repo settings) 27 | github_token: ${{ secrets.github_token }} 28 | mac_certs: ${{ secrets.mac_certs }} 29 | mac_certs_password: ${{ secrets.mac_certs_password }} 30 | 31 | # If the commit is tagged with a version (e.g. "v1.0.0"), 32 | # release the app after building 33 | release: ${{ startsWith(github.ref, 'refs/tags/v') }} 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig 2 | 3 | # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,node 4 | # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,macos,node 5 | 6 | ### macOS ### 7 | # General 8 | .DS_Store 9 | .AppleDouble 10 | .LSOverride 11 | 12 | # Icon must end with two \r 13 | Icon 14 | 15 | 16 | # Thumbnails 17 | ._* 18 | 19 | # Files that might appear in the root of a volume 20 | .DocumentRevisions-V100 21 | .fseventsd 22 | .Spotlight-V100 23 | .TemporaryItems 24 | .Trashes 25 | .VolumeIcon.icns 26 | .com.apple.timemachine.donotpresent 27 | 28 | # Directories potentially created on remote AFP share 29 | .AppleDB 30 | .AppleDesktop 31 | Network Trash Folder 32 | Temporary Items 33 | .apdisk 34 | 35 | ### Node ### 36 | # Logs 37 | logs 38 | *.log 39 | npm-debug.log* 40 | yarn-debug.log* 41 | yarn-error.log* 42 | lerna-debug.log* 43 | 44 | # Diagnostic reports (https://nodejs.org/api/report.html) 45 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 46 | 47 | # Runtime data 48 | pids 49 | *.pid 50 | *.seed 51 | *.pid.lock 52 | 53 | # Directory for instrumented libs generated by jscoverage/JSCover 54 | lib-cov 55 | 56 | # Coverage directory used by tools like istanbul 57 | coverage 58 | *.lcov 59 | 60 | # nyc test coverage 61 | .nyc_output 62 | 63 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 64 | .grunt 65 | 66 | # Bower dependency directory (https://bower.io/) 67 | bower_components 68 | 69 | # node-waf configuration 70 | .lock-wscript 71 | 72 | # Compiled binary addons (https://nodejs.org/api/addons.html) 73 | build/Release 74 | 75 | # Dependency directories 76 | node_modules/ 77 | jspm_packages/ 78 | 79 | # TypeScript v1 declaration files 80 | typings/ 81 | 82 | # TypeScript cache 83 | *.tsbuildinfo 84 | 85 | # Optional npm cache directory 86 | .npm 87 | 88 | # Optional eslint cache 89 | .eslintcache 90 | 91 | # Optional stylelint cache 92 | .stylelintcache 93 | 94 | # Microbundle cache 95 | .rpt2_cache/ 96 | .rts2_cache_cjs/ 97 | .rts2_cache_es/ 98 | .rts2_cache_umd/ 99 | 100 | # Optional REPL history 101 | .node_repl_history 102 | 103 | # Output of 'npm pack' 104 | *.tgz 105 | 106 | # Yarn Integrity file 107 | .yarn-integrity 108 | 109 | # dotenv environment variables file 110 | .env 111 | .env.test 112 | .env*.local 113 | 114 | # parcel-bundler cache (https://parceljs.org/) 115 | .cache 116 | .parcel-cache 117 | 118 | # Next.js build output 119 | .next 120 | 121 | # Nuxt.js build / generate output 122 | .nuxt 123 | dist 124 | 125 | # Gatsby files 126 | .cache/ 127 | # Comment in the public line in if your project uses Gatsby and not Next.js 128 | # https://nextjs.org/blog/next-9-1#public-directory-support 129 | # public 130 | 131 | # vuepress build output 132 | .vuepress/dist 133 | 134 | # Serverless directories 135 | .serverless/ 136 | 137 | # FuseBox cache 138 | .fusebox/ 139 | 140 | # DynamoDB Local files 141 | .dynamodb/ 142 | 143 | # TernJS port file 144 | .tern-port 145 | 146 | # Stores VSCode versions used for testing VSCode extensions 147 | .vscode-test 148 | 149 | ### VisualStudioCode ### 150 | .vscode/* 151 | !.vscode/tasks.json 152 | !.vscode/launch.json 153 | *.code-workspace 154 | 155 | ### VisualStudioCode Patch ### 156 | # Ignore all local history of files 157 | .history 158 | .ionide 159 | 160 | # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,node 161 | 162 | # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option) 163 | 164 | db.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Plastic 2 | 3 | A block-based bi-directional note app 4 | 5 | ![](https://assets.djyde.com/uPic/nA94Ev.png?x-oss-process=style/high-optimize) 6 | 7 | # Build 8 | 9 | 10 | ## Development 11 | 12 | ```bash 13 | yarn 14 | 15 | yarn web # first, run the frontend build 16 | 17 | yarn app # second, run electron app 18 | ``` 19 | 20 | ## Distribute 21 | 22 | ```bash 23 | cd app && yarn 24 | cd .. 25 | yarn dist 26 | ``` 27 | 28 | # License 29 | 30 | GPL v3 -------------------------------------------------------------------------------- /app/db.js: -------------------------------------------------------------------------------- 1 | const low = require("lowdb"); 2 | const FileSync = require("lowdb/adapters/FileSync"); 3 | const { nanoid } = require("nanoid"); 4 | const { dialog, BrowserWindow, app } = require("electron"); 5 | const dayjs = require("dayjs"); 6 | const fs = require("fs"); 7 | const path = require("path"); 8 | 9 | function checkIsValidPlasticDirectory(directoryPath) { 10 | try { 11 | fs.accessSync( 12 | path.resolve(directoryPath, "./plastic.json"), 13 | fs.constants.F_OK 14 | ); 15 | return true; 16 | } catch (e) { 17 | return false; 18 | } 19 | } 20 | class DB { 21 | db; 22 | 23 | directory 24 | 25 | static instances = {}; 26 | 27 | static get(windowId = BrowserWindow.getFocusedWindow().id) { 28 | return DB.instances[windowId] 29 | } 30 | 31 | static openDirectoryOnWindow(directoryPath, windowId = BrowserWindow.getFocusedWindow().id) { 32 | const isValid = checkIsValidPlasticDirectory(directoryPath); 33 | 34 | if (!isValid) { 35 | throw new Error("Not a valid plastic notebook"); 36 | } 37 | 38 | if (!DB.instances[windowId]) { 39 | DB.instances[windowId] = new DB(directoryPath); 40 | } 41 | 42 | return DB.instances[windowId]; 43 | } 44 | 45 | static async open(createIfNotExists = false) { 46 | const result = await dialog.showOpenDialog({ 47 | title: "Open Plastic", 48 | properties: ["openDirectory", "createDirectory"], 49 | }); 50 | 51 | if (result.filePaths.length) { 52 | const directory = result.filePaths[0]; 53 | const isValid = checkIsValidPlasticDirectory(directory); 54 | 55 | if (!isValid && !createIfNotExists) { 56 | throw new Error("Not a valid plastic notebook"); 57 | } 58 | 59 | const windowId = BrowserWindow.getFocusedWindow().id 60 | 61 | if (!DB.instances[windowId]) { 62 | console.log('new db instance for window', windowId) 63 | DB.instances[windowId] = new DB(directory); 64 | } 65 | 66 | return DB.instances[windowId]; 67 | } 68 | } 69 | 70 | hasInit() { 71 | return !!this.db; 72 | } 73 | 74 | constructor(directory) { 75 | const adapter = new FileSync(path.resolve(directory, "./plastic.json")); 76 | this.db = low(adapter); 77 | 78 | this.db 79 | .defaults({ 80 | pages: [], 81 | blocks: {}, 82 | stars: [], 83 | main: null 84 | }) 85 | .write(); 86 | 87 | this.directory = directory; 88 | 89 | app.addRecentDocument(directory); 90 | } 91 | 92 | createPage(pageTitle, meta = {}) { 93 | const pageId = nanoid(8); 94 | 95 | const page = { 96 | title: pageTitle, 97 | id: pageId, 98 | ...meta, 99 | children: [ 100 | { 101 | id: this.createBlock('', pageId), 102 | children: [], 103 | }, 104 | ], 105 | }; 106 | 107 | this.db.get("pages").push(page).write(); 108 | 109 | return page; 110 | } 111 | 112 | getPageById(pageId) { 113 | return this.db.get("pages").find({ id: pageId }).value(); 114 | } 115 | 116 | createBlock(content, pageId) { 117 | const id = nanoid(8) 118 | this.db 119 | .set(`blocks.${id}`, { 120 | id, 121 | content, 122 | pageId, 123 | }) 124 | .write(); 125 | 126 | return id; 127 | } 128 | 129 | getBlockById(blockId) { 130 | // console.log(blockId, this.db.get(`blocks.${blockId}`).value()); 131 | return this.db.get(`blocks.${blockId}`).value(); 132 | } 133 | 134 | updateBlock(blockId, body) { 135 | return this.db.get(`blocks.${blockId}`).assign(body).write(); 136 | } 137 | 138 | updatePage(pageId, children) { 139 | return this.db 140 | .get("pages") 141 | .find({ id: pageId }) 142 | .assign({ 143 | children, 144 | }) 145 | .write(); 146 | } 147 | 148 | createDailyNote() { 149 | const today = dayjs().startOf("day").toString(); 150 | const existed = this.db.get("pages").find({ title: today }).value(); 151 | if (!existed) { 152 | return this.createPage(today, { 153 | type: "daily", 154 | }); 155 | } else { 156 | return existed; 157 | } 158 | } 159 | 160 | touchPageByTitle(title) { 161 | const existed = this.db.get("pages").find({ title }).value(); 162 | if (!existed) { 163 | return this.createPage(title, { 164 | type: "default", 165 | }); 166 | } else { 167 | return existed; 168 | } 169 | } 170 | 171 | deleteBlock(blockId) { 172 | this.db.unset(`blocks.${blockId}`).write(); 173 | } 174 | 175 | setBlockPageReferences(blockId, pageIds) { 176 | this.db.set(`blocks.${blockId}.references`, pageIds).write(); 177 | } 178 | 179 | findPageReferenceBlocks(pageId) { 180 | return this.db 181 | .get("blocks") 182 | .pickBy((_) => _.references && _.references.includes(pageId)) 183 | .values() 184 | .value(); 185 | } 186 | 187 | traversalPage(pageId, cb) { 188 | const page = this.db.get("pages").find({ id: pageId }).value(); 189 | 190 | function traversal(node, index = 0, pos = []) { 191 | const currentPos = pos.concat(index); 192 | cb(node, currentPos, page); 193 | if (node.children) { 194 | node.children.forEach((n, index) => { 195 | traversal(n, index, currentPos); 196 | }); 197 | } 198 | } 199 | 200 | page.children.forEach((block, index) => { 201 | traversal(block, index, [0]); 202 | }); 203 | } 204 | 205 | getFlatBlocksFromPage(pageId) { 206 | let map = {}; 207 | this.traversalPage(pageId, (block, position, page) => { 208 | map[block.id] = { 209 | position, 210 | block, 211 | page, 212 | }; 213 | }); 214 | 215 | return map; 216 | } 217 | 218 | 219 | searchPageByKeyword(keyword) { 220 | const reg = new RegExp(`${keyword}`, 'i') 221 | return this.db.get('pages').filter(page => page.title.match(reg)).take(10).value() 222 | } 223 | 224 | getStaredPages() { 225 | return this.db.get('stars').map(id => this.getPageById(id)).value() 226 | } 227 | 228 | starPage(pageId) { 229 | this.db.get('stars').push(pageId).write() 230 | } 231 | 232 | unstarPage(pageId) { 233 | this.db.set( 234 | "stars", 235 | this.db 236 | .get("stars") 237 | .filter((_) => _ !== pageId) 238 | .value() 239 | ).write(); 240 | } 241 | 242 | isStared(pageId) { 243 | return this.db.get('stars').indexOf(pageId).value() !== -1 244 | } 245 | } 246 | 247 | module.exports = DB; 248 | -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- 1 | const { app, BrowserWindow } = require("electron"); 2 | // require('./menu') 3 | const DB = require('./db') 4 | const isDev = require("electron-is-dev"); 5 | const path = require("path") 6 | 7 | function createWindow() { 8 | const win = new BrowserWindow({ 9 | width: 1280, 10 | height: 1280 * 0.6, 11 | minWidth: 1280, 12 | minHeight: 1280 * 0.6, 13 | webPreferences: { 14 | nodeIntegration: true, 15 | enableRemoteModule: true, 16 | }, 17 | }); 18 | 19 | if (isDev) { 20 | win.loadURL("http://localhost:3000"); 21 | } else { 22 | win.loadFile(path.resolve(__dirname, './dist/index.html')) 23 | } 24 | 25 | return win; 26 | } 27 | 28 | app.whenReady().then(createWindow); 29 | 30 | app.on("window-all-closed", () => { 31 | if (process.platform !== "darwin") { 32 | app.quit(); 33 | } 34 | }); 35 | 36 | app.on("activate", () => { 37 | if (BrowserWindow.getAllWindows().length === 0) { 38 | createWindow(); 39 | } 40 | }); 41 | 42 | app.on("open-file", (e, path) => { 43 | e.preventDefault(); 44 | const win = createWindow(); 45 | win.setRepresentedFilename(path); 46 | DB.openDirectoryOnWindow(path, win.id) 47 | }); 48 | 49 | exports.createWindow; 50 | -------------------------------------------------------------------------------- /app/menu.js: -------------------------------------------------------------------------------- 1 | const { app, Menu } = require("electron"); 2 | 3 | const isMac = process.platform === "darwin"; 4 | 5 | const template = [ 6 | { 7 | label: "Plastic", 8 | submenu: [ 9 | { role: "about" }, 10 | { type: "separator" }, 11 | { role: "services" }, 12 | { type: "separator" }, 13 | { role: "hide" }, 14 | { role: "hideothers" }, 15 | { role: "unhide" }, 16 | { type: "separator" }, 17 | { role: "quit" }, 18 | ], 19 | }, 20 | { 21 | label: "File", 22 | submenu: [ 23 | { label: "Open..." }, 24 | { label: "New Notebook" }, 25 | { 26 | label: "Open Recent", 27 | role: "recentdocuments", 28 | submenu: [ 29 | { 30 | label: "Clear Recent", 31 | role: "clearrecentdocuments", 32 | }, 33 | ], 34 | }, 35 | ], 36 | }, 37 | { 38 | label: "Edit", 39 | submenu: [ 40 | { role: "undo" }, 41 | { role: "redo" }, 42 | { type: "separator" }, 43 | { role: "cut" }, 44 | { role: "copy" }, 45 | { role: "paste" }, 46 | ...(isMac 47 | ? [ 48 | { role: "pasteAndMatchStyle" }, 49 | { role: "delete" }, 50 | { role: "selectAll" }, 51 | { type: "separator" }, 52 | { 53 | label: "Speech", 54 | submenu: [{ role: "startSpeaking" }, { role: "stopSpeaking" }], 55 | }, 56 | ] 57 | : [{ role: "delete" }, { type: "separator" }, { role: "selectAll" }]), 58 | ], 59 | }, 60 | ]; 61 | 62 | const menu = Menu.buildFromTemplate(template); 63 | Menu.setApplicationMenu(menu); 64 | -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "plastic", 3 | "homepage": "https://github.com/djyde/plastic", 4 | "repository": "https://github.com/djyde/plastic", 5 | "author": { 6 | "name": "Randy", 7 | "email": "hi@taonan.lu" 8 | }, 9 | "license": "GPL-3.0-or-later", 10 | "description": "A note app", 11 | "version": "0.1.2", 12 | "main": "main.js", 13 | "dependencies": { 14 | "dayjs": "^1.10.4", 15 | "electron-is-dev": "^2.0.0", 16 | "lowdb": "^1.0.0", 17 | "nanoid": "^3.1.20" 18 | }, 19 | "devDependencies": {} 20 | } 21 | -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | dayjs@^1.10.4: 6 | version "1.10.4" 7 | resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.4.tgz#8e544a9b8683f61783f570980a8a80eaf54ab1e2" 8 | integrity sha512-RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw== 9 | 10 | electron-is-dev@^2.0.0: 11 | version "2.0.0" 12 | resolved "https://registry.yarnpkg.com/electron-is-dev/-/electron-is-dev-2.0.0.tgz#833487a069b8dad21425c67a19847d9064ab19bd" 13 | integrity sha512-3X99K852Yoqu9AcW50qz3ibYBWY79/pBhlMCab8ToEWS48R0T9tyxRiQhwylE7zQdXrMnx2JKqUJyMPmt5FBqA== 14 | 15 | graceful-fs@^4.1.3: 16 | version "4.2.6" 17 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 18 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 19 | 20 | is-promise@^2.1.0: 21 | version "2.2.2" 22 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" 23 | integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== 24 | 25 | lodash@4: 26 | version "4.17.21" 27 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 28 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 29 | 30 | lowdb@^1.0.0: 31 | version "1.0.0" 32 | resolved "https://registry.yarnpkg.com/lowdb/-/lowdb-1.0.0.tgz#5243be6b22786ccce30e50c9a33eac36b20c8064" 33 | integrity sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ== 34 | dependencies: 35 | graceful-fs "^4.1.3" 36 | is-promise "^2.1.0" 37 | lodash "4" 38 | pify "^3.0.0" 39 | steno "^0.4.1" 40 | 41 | nanoid@^3.1.20: 42 | version "3.1.20" 43 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" 44 | integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== 45 | 46 | pify@^3.0.0: 47 | version "3.0.0" 48 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 49 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 50 | 51 | steno@^0.4.1: 52 | version "0.4.4" 53 | resolved "https://registry.yarnpkg.com/steno/-/steno-0.4.4.tgz#071105bdfc286e6615c0403c27e9d7b5dcb855cb" 54 | integrity sha1-BxEFvfwobmYVwEA8J+nXtdy4Vcs= 55 | dependencies: 56 | graceful-fs "^4.1.3" 57 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Hello World! 7 | 8 | 9 | 10 | 11 |

Hello World!

12 |

13 | We are using node , 16 | Chrome , 19 | and Electron . 22 |

23 | 24 | 25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "app/main.js", 3 | "scripts": { 4 | "start": "electron app", 5 | "web": "vite", 6 | "build:web": "vite build", 7 | "build": "npm run build:web && electron-builder" 8 | }, 9 | "build": { 10 | "appId": "lu.taonan.plastic", 11 | "files": [ 12 | "**/*", 13 | "./dist/**/*" 14 | ] 15 | }, 16 | "dependencies": { 17 | "dayjs": "^1.10.4", 18 | "electron": "^11.3.0", 19 | "navigo": "^8.9.0", 20 | "svelte-routing": "^1.5.0", 21 | "textarea-caret": "^3.1.0" 22 | }, 23 | "devDependencies": { 24 | "@tsconfig/svelte": "^1.0.10", 25 | "autoprefixer": "^10.2.4", 26 | "electron-builder": "^22.9.1", 27 | "postcss": "^8.2.6", 28 | "rollup-plugin-svelte": "^7.1.0", 29 | "svelte": "^3.34.0", 30 | "svelte-preprocess": "^4.6.9", 31 | "tailwindcss": "^2.0.3", 32 | "ts-essentials": "^7.0.1", 33 | "typescript": "^4.2.2", 34 | "vite": "^2.0.4" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: { 4 | purge: ["web/**/*.svelte"], 5 | }, 6 | autoprefixer: {}, 7 | }, 8 | }; 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/svelte/tsconfig.json", 3 | "strcitNullCheck": true, 4 | "include": ["web/**/*", "web/node_modules"], 5 | "exclude": ["node_modules/*", "__sapper__/*", "public/*"], 6 | } -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import svelte from "rollup-plugin-svelte"; 2 | import autoPreprocess from "svelte-preprocess"; 3 | 4 | export default { 5 | root: "web", 6 | base: "./", 7 | plugins: [ 8 | svelte({ 9 | preprocess: autoPreprocess(), 10 | }), 11 | ], 12 | build: { 13 | outDir: "../app/dist", 14 | rollupOptions: {}, 15 | }, 16 | }; 17 | -------------------------------------------------------------------------------- /web/App.svelte: -------------------------------------------------------------------------------- 1 | 59 | 60 |
61 |
62 | 63 |
64 |
65 | -------------------------------------------------------------------------------- /web/Page.svelte: -------------------------------------------------------------------------------- 1 | 43 | 44 |
45 | 60 | 61 |
62 | 71 | 72 |
73 |
74 |
75 | 82 | 83 |
84 | {#if isStared} 85 | Unstar 86 | {:else} 87 | Star this page 89 | 90 | {/if} 91 |
92 |
93 |
94 | 101 |
102 | 103 |
104 |

References

105 | 106 |
107 | {#each references as blockBody (blockBody.id)} 108 |
109 | 110 |
111 | {/each} 112 |
113 |
114 |
115 |
116 |
117 |
118 | -------------------------------------------------------------------------------- /web/ReferenceBlock.svelte: -------------------------------------------------------------------------------- 1 | 28 | 29 | 53 | -------------------------------------------------------------------------------- /web/blocks/Link.svelte: -------------------------------------------------------------------------------- 1 | 12 | 13 | [{item.meta.page.title}] 20 | -------------------------------------------------------------------------------- /web/blocks/Tag.svelte: -------------------------------------------------------------------------------- 1 | 13 | 14 | #{page.title} 21 | -------------------------------------------------------------------------------- /web/bridge.ts: -------------------------------------------------------------------------------- 1 | import DB from './db' 2 | import type { Block, Page } from './plastic'; 3 | 4 | const adapter = { 5 | addBlock(content: string, pageId: string) { 6 | return DB.get().createBlock(content, pageId) 7 | }, 8 | getBlock(blockId: string) { 9 | return DB.get().getBlockById(blockId); 10 | }, 11 | // TODO: type body 12 | updateBlock(blockId: string, body) { 13 | DB.get().updateBlock(blockId, body) 14 | }, 15 | deleteBlock(blockId: string) { 16 | DB.get().deleteBlock(blockId) 17 | }, 18 | onPageChanged(page: Page) { 19 | DB.get().updatePage(page.id, page.children) 20 | }, 21 | }; 22 | 23 | export default adapter -------------------------------------------------------------------------------- /web/components/PageSearchInput.svelte: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 | (showResult = true)} 24 | on:blur={(e) => { 25 | setTimeout(() => { 26 | showResult = false; 27 | }, 100); 28 | }} 29 | placeholder="Search or create page" 30 | /> 31 | 32 | {#if showResult && results.length} 33 |
34 | {#each results as result (result.id)} 35 | { 39 | e.preventDefault(); 40 | router.navigate(`/page/${result.id}`); 41 | }}>{result.title} 43 | {/each} 44 |
45 | {/if} 46 |
47 | -------------------------------------------------------------------------------- /web/components/RouteLink.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 | { 8 | e.preventDefault() 9 | router.navigate(to) 10 | }} href={to}> 11 | 12 | -------------------------------------------------------------------------------- /web/db.ts: -------------------------------------------------------------------------------- 1 | import type { PlasticAdapter } from "./plastic"; 2 | 3 | // @ts-expect-error 4 | const remote = global.require("electron").remote; 5 | 6 | const DB = remote.require('./db') 7 | 8 | export default { 9 | get() { 10 | return DB.get(remote.getCurrentWindow().id) as PlasticAdapter 11 | }, 12 | open: DB.open 13 | } -------------------------------------------------------------------------------- /web/editor/Block.svelte: -------------------------------------------------------------------------------- 1 | 265 | 266 | {#if !isRoot} 267 |
268 |
269 |
270 |
271 |
272 | {#if debugMode} 273 | {JSON.stringify({ 274 | id: block.id, 275 | path, 276 | isRoot 277 | })} 278 | {/if} 279 | {#if blockBody} 280 | {#if focused} 281 |
282 | {#if textareaCaret} 283 |
284 | {#each searchResults as result (result.id)} 285 | {result.title} 286 | {/each} 287 |
288 | {/if} 289 | 290 |
291 | {:else} 292 |
293 | 294 |
295 | {/if} 296 | {/if} 297 |
298 | 299 |
300 | {/if} 301 | 302 | {#if block.children.length > 0} 303 |
304 | {#if !isRoot} 305 |
306 | {/if} 307 |
308 | {#each block.children as child, index (child.id)} 309 | 317 | {/each} 318 |
319 |
320 | {/if} 321 | -------------------------------------------------------------------------------- /web/editor/Richtext.svelte: -------------------------------------------------------------------------------- 1 | 32 | 33 |
34 | {#each tokens as item} 35 | {#if item.type === 'TEXT'} 36 | {item.value} 37 | {:else} 38 | 39 | {/if} 40 | {/each} 41 | 42 |
43 | -------------------------------------------------------------------------------- /web/editor/blocks/builtin/Bold.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | {item.value} 9 | -------------------------------------------------------------------------------- /web/editor/blocks/builtin/Code.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | {item.value} 11 | -------------------------------------------------------------------------------- /web/editor/blocks/builtin/ExternalLink.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 | {title} -------------------------------------------------------------------------------- /web/editor/blocks/builtin/Link.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 | [{item.value}] 11 | -------------------------------------------------------------------------------- /web/editor/blocks/builtin/Todo.svelte: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /web/editor/directives.ts: -------------------------------------------------------------------------------- 1 | import getCaretCoordinates from 'textarea-caret' 2 | 3 | export function caret(el: HTMLTextAreaElement, cb) { 4 | const handler = function () { 5 | var caret = getCaretCoordinates(this, this.selectionEnd); 6 | cb(caret) 7 | }; 8 | 9 | el.addEventListener('input', handler) 10 | 11 | return { 12 | destroy() { 13 | el.removeEventListener('input', handler) 14 | } 15 | } 16 | } 17 | 18 | export function clickOutside(el, cb) { 19 | function handler(e) { 20 | if (e.target !== el) { 21 | cb(); 22 | } 23 | } 24 | 25 | document.addEventListener("click", handler); 26 | 27 | return { 28 | destroy() { 29 | document.removeEventListener("click", handler); 30 | }, 31 | }; 32 | } 33 | 34 | function resize({ target }) { 35 | target.style.height = "1px"; 36 | target.style.height = +target.scrollHeight + "px"; 37 | } 38 | 39 | export function autoResize(el) { 40 | resize({ target: el }); 41 | el.style.overflow = "hidden"; 42 | el.addEventListener("input", resize); 43 | 44 | return { 45 | destroy: () => el.removeEventListener("input", resize), 46 | }; 47 | } 48 | -------------------------------------------------------------------------------- /web/editor/parser/index.ts: -------------------------------------------------------------------------------- 1 | import Todo from "../blocks/builtin/Todo.svelte"; 2 | import Code from "../blocks/builtin/Code.svelte"; 3 | import Bold from "../blocks/builtin/Bold.svelte"; 4 | import ExternalLink from "../blocks/builtin/ExternalLink.svelte"; 5 | 6 | const builtinRules = [ 7 | { 8 | match: /\`([^\`]*)\`/, 9 | processor(matched, position) { 10 | return { 11 | type: "CODE", 12 | meta: { 13 | component: Code, 14 | }, 15 | position, 16 | value: matched[1], 17 | matched, 18 | }; 19 | }, 20 | }, 21 | { 22 | match: /\*\*([^\*]*)\*\*/, 23 | processor(matched, position) { 24 | return { 25 | type: "BOLD", 26 | meta: { 27 | component: Bold, 28 | }, 29 | value: matched[1], 30 | position, 31 | matched, 32 | }; 33 | }, 34 | }, 35 | { 36 | match: /\{\{\{TODO\}\}\}/, 37 | processor(matched, position) { 38 | return { 39 | type: "TODO", 40 | meta: { 41 | component: Todo, 42 | props: { 43 | checked: false, 44 | }, 45 | }, 46 | position, 47 | matched, 48 | }; 49 | }, 50 | }, 51 | { 52 | match: /\{\{\{DONE\}\}\}/, 53 | processor(matched, position) { 54 | return { 55 | type: "DONE", 56 | meta: { 57 | component: Todo, 58 | props: { 59 | checked: true, 60 | }, 61 | }, 62 | position, 63 | matched, 64 | }; 65 | }, 66 | }, 67 | { 68 | match: /\[([^\]]+)\]\(([^\)]+)\)/, 69 | processor(matched, position) { 70 | return { 71 | type: "ExternalLink", 72 | meta: { 73 | component: ExternalLink, 74 | props: { 75 | title: matched[1], 76 | url: matched[2], 77 | }, 78 | }, 79 | position, 80 | matched, 81 | }; 82 | } 83 | }, 84 | ] as Rule[]; 85 | 86 | export type Token = { 87 | type: string; 88 | position: number; 89 | matched: RegExpMatchArray; 90 | meta?: any; 91 | value: string 92 | }; 93 | 94 | export type Rule = { 95 | match: RegExp; 96 | processor(matched: RegExpMatchArray, position: number): Token; 97 | }; 98 | 99 | 100 | export function tokenizer(str: string, rules: Rule[]) { 101 | let matches = builtinRules.concat(rules); 102 | 103 | let position = 0; 104 | let toMatch = str; 105 | let tokens = [] as Token[]; 106 | 107 | let text: string | null = null; 108 | 109 | whileLoop: while (toMatch.length > 0) { 110 | let matched: RegExpMatchArray; 111 | for (const rule of matches) { 112 | if ((matched = toMatch.match(new RegExp(`^${rule.match.source}`)))) { 113 | toMatch = toMatch.slice(matched[0].length); 114 | // clear plain 115 | if (text !== null) { 116 | // @ts-expect-error 117 | tokens.push({ 118 | type: "TEXT", 119 | value: text, 120 | position, 121 | }); 122 | position += text.length; 123 | text = null; 124 | } 125 | 126 | tokens.push(rule.processor(matched, position)); 127 | 128 | position += matched[0].length; 129 | 130 | continue whileLoop; 131 | } 132 | } 133 | 134 | text !== null ? (text += toMatch[0]) : (text = toMatch[0]); 135 | toMatch = toMatch.slice(1); 136 | } 137 | 138 | if (text !== null) { 139 | // @ts-expect-error 140 | tokens.push({ 141 | type: "TEXT", 142 | value: text, 143 | position, 144 | }); 145 | position += text.length; 146 | } 147 | 148 | return tokens; 149 | } 150 | -------------------------------------------------------------------------------- /web/editor/store.ts: -------------------------------------------------------------------------------- 1 | import { writable } from "svelte/store"; 2 | 3 | export const editingBlockId = writable(null); 4 | export const anchorOffset = writable(null); 5 | 6 | 7 | export function onChangeBlock(block, root) { 8 | // NOTE: DON'T mutate the `block` and `root` unless you know what you're doing 9 | console.log(block, root) 10 | } 11 | -------------------------------------------------------------------------------- /web/editor/utils.ts: -------------------------------------------------------------------------------- 1 | export function isInBracket(str: string, position: number) { 2 | const reg = /\[\[([^\]]+)\]\]/g; 3 | // +-2 is the offset of `[[` and `]]` 4 | // @ts-expect-error 5 | const ranges = Array.from(str.matchAll(reg)).map((_: any) => [ 6 | _.index + 2, 7 | _.index + _[0].length - 2, 8 | ] as number[]); 9 | return ranges.find(([start, end]) => { 10 | return position >= start && position <= end; 11 | }); 12 | } 13 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Plastic 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /web/main.ts: -------------------------------------------------------------------------------- 1 | import "./style.css"; 2 | 3 | import App from './App.svelte' 4 | 5 | 6 | new App({ 7 | target: document.querySelector('#app') 8 | }) 9 | 10 | -------------------------------------------------------------------------------- /web/pages/DailyNotes.svelte: -------------------------------------------------------------------------------- 1 | 13 | 14 | {#if page} 15 | 16 | {:else} 17 | 18 | {/if} 19 | -------------------------------------------------------------------------------- /web/pages/OpenFile.svelte: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 |
20 |
24 | Open... 25 |
26 |
30 | Create new 31 |
32 |
33 |
34 | -------------------------------------------------------------------------------- /web/plastic.ts: -------------------------------------------------------------------------------- 1 | import type { MarkOptional } from 'ts-essentials' 2 | 3 | // Plastic file protocol 4 | 5 | export type Page = { 6 | id: string, 7 | title: string, 8 | type?: 'daily' | 'default', 9 | children: ShallowBlock[] 10 | } 11 | 12 | export type ShallowBlock = { 13 | /** block id */ 14 | id: string, 15 | children: ShallowBlock[] 16 | } 17 | 18 | export type Block = { 19 | id: string, 20 | content: string, 21 | pageId: string, 22 | references: Array 23 | } 24 | 25 | export type Database = { 26 | usedBy: number, 27 | pages: Page, 28 | blocks: Block, 29 | stars: string[] 30 | } 31 | 32 | export interface PlasticAdapter { 33 | directory: string; 34 | 35 | // static get: (id: string | number) => PlasticAdapter 36 | 37 | hasInit(): boolean; 38 | 39 | init(directory: string): void; 40 | 41 | /** create a page by title */ 42 | createPage(pageTitle: string, meta?: any): Page; 43 | 44 | getPageById(pageId: string): Page; 45 | 46 | /** return the block id */ 47 | createBlock(content: string, pageId: string): string; 48 | 49 | getBlockById(blockId: string): Block; 50 | 51 | updateBlock( 52 | blockId: string, 53 | body: { 54 | content?: Block["content"]; 55 | } 56 | ): Block; 57 | 58 | updatePage(pageId: string, children: Page["children"]): Page; 59 | 60 | createDailyNote(): Page; 61 | 62 | touchPageByTitle(title: string): Page; 63 | 64 | deleteBlock(blockId: string): void; 65 | 66 | setBlockPageReferences(blockId: string, pageIds: string[]): void; 67 | 68 | findPageReferenceBlocks(pageId: string): Block[]; 69 | 70 | traversalPage( 71 | pageId: string, 72 | cb: (node: ShallowBlock, currentPosition: number[], page: Page) => void 73 | ): void; 74 | 75 | getFlatBlocksFromPage( 76 | pageId: string 77 | ): { [key: string]: { position: number[]; block: ShallowBlock; page: Page } }; 78 | 79 | searchPageByKeyword(keyword: string): Page[]; 80 | getStaredPages(): Page[]; 81 | starPage(pageId: string): void; 82 | unstarPage(pageId: string): void; 83 | isStared(pageId: string): boolean 84 | } -------------------------------------------------------------------------------- /web/router.ts: -------------------------------------------------------------------------------- 1 | import Navigo from "navigo"; 2 | 3 | export default new Navigo('/', { hash: true }); 4 | -------------------------------------------------------------------------------- /web/rules.ts: -------------------------------------------------------------------------------- 1 | import Link from './blocks/Link.svelte' 2 | import Tag from "./blocks/Tag.svelte"; 3 | 4 | import DB from "./db"; 5 | import type { Rule } from './editor/parser'; 6 | 7 | export default [ 8 | { 9 | match: /\[\[([^\]]+)\]\]/, 10 | processor(matched, position) { 11 | return { 12 | type: "LINK", 13 | meta: { 14 | component: Link, 15 | page: DB.get().touchPageByTitle(matched[1]), 16 | }, 17 | value: matched[1], 18 | matched, 19 | position, 20 | }; 21 | }, 22 | }, 23 | { 24 | match: /#\[\[([^\]]+)\]\]/, 25 | processor(matched, position) { 26 | const page = DB.get().touchPageByTitle(matched[1]); 27 | return { 28 | type: "TAG", 29 | meta: { 30 | page, 31 | component: Tag, 32 | props: { 33 | page, 34 | }, 35 | }, 36 | value: matched[1], 37 | matched, 38 | position, 39 | }; 40 | }, 41 | }, 42 | { 43 | match: /#([^ ]+)/, 44 | processor(matched, position) { 45 | const page = DB.get().touchPageByTitle(matched[1]); 46 | return { 47 | type: "TAG", 48 | meta: { 49 | page, 50 | component: Tag, 51 | props: { 52 | page, 53 | }, 54 | }, 55 | value: matched[1], 56 | matched, 57 | position, 58 | }; 59 | }, 60 | }, 61 | ] as Rule[]; 62 | -------------------------------------------------------------------------------- /web/style.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | .main { 6 | position: relative; 7 | } 8 | 9 | .editor { 10 | outline: none; 11 | border: none; 12 | resize: none; 13 | margin: 0; 14 | padding: 0; 15 | width: 100%; 16 | display: block; 17 | } 18 | 19 | .preview { 20 | cursor: text; 21 | width: 100%; 22 | min-height: 24px; 23 | white-space: pre-wrap; 24 | } 25 | 26 | .children {} 27 | 28 | .debug { 29 | position: absolute; 30 | top: 0; 31 | right: .5rem; 32 | font-size: .5rem; 33 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "7zip-bin@~5.0.3": 6 | version "5.0.3" 7 | resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.0.3.tgz#bc5b5532ecafd923a61f2fb097e3b108c0106a3f" 8 | integrity sha512-GLyWIFBbGvpKPGo55JyRZAo4lVbnBiD52cKlw/0Vt+wnmKvWJkpZvsjVoaIolyBXDeAQKSicRtqFNPem9w0WYA== 9 | 10 | "@develar/schema-utils@~2.6.5": 11 | version "2.6.5" 12 | resolved "https://registry.yarnpkg.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz#3ece22c5838402419a6e0425f85742b961d9b6c6" 13 | integrity sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig== 14 | dependencies: 15 | ajv "^6.12.0" 16 | ajv-keywords "^3.4.1" 17 | 18 | "@electron/get@^1.0.1": 19 | version "1.12.4" 20 | resolved "https://registry.yarnpkg.com/@electron/get/-/get-1.12.4.tgz#a5971113fc1bf8fa12a8789dc20152a7359f06ab" 21 | integrity sha512-6nr9DbJPUR9Xujw6zD3y+rS95TyItEVM0NVjt1EehY2vUWfIgPiIPVHxCvaTS0xr2B+DRxovYVKbuOWqC35kjg== 22 | dependencies: 23 | debug "^4.1.1" 24 | env-paths "^2.2.0" 25 | fs-extra "^8.1.0" 26 | got "^9.6.0" 27 | progress "^2.0.3" 28 | semver "^6.2.0" 29 | sumchecker "^3.0.1" 30 | optionalDependencies: 31 | global-agent "^2.0.2" 32 | global-tunnel-ng "^2.7.1" 33 | 34 | "@fullhuman/postcss-purgecss@^3.1.3": 35 | version "3.1.3" 36 | resolved "https://registry.yarnpkg.com/@fullhuman/postcss-purgecss/-/postcss-purgecss-3.1.3.tgz#47af7b87c9bfb3de4bc94a38f875b928fffdf339" 37 | integrity sha512-kwOXw8fZ0Lt1QmeOOrd+o4Ibvp4UTEBFQbzvWldjlKv5n+G9sXfIPn1hh63IQIL8K8vbvv1oYMJiIUbuy9bGaA== 38 | dependencies: 39 | purgecss "^3.1.3" 40 | 41 | "@sindresorhus/is@^0.14.0": 42 | version "0.14.0" 43 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 44 | integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 45 | 46 | "@szmarczak/http-timer@^1.1.2": 47 | version "1.1.2" 48 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 49 | integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 50 | dependencies: 51 | defer-to-connect "^1.0.1" 52 | 53 | "@tsconfig/svelte@^1.0.10": 54 | version "1.0.10" 55 | resolved "https://registry.yarnpkg.com/@tsconfig/svelte/-/svelte-1.0.10.tgz#30ec7feeee0bdf38b12a50f0686f8a2e7b6b9dc0" 56 | integrity sha512-EBrpH2iXXfaf/9z81koiDYkp2mlwW2XzFcAqn6qh7VKyP8zBvHHAQzNhY+W9vH5arAjmGAm5g8ElWq6YmXm3ig== 57 | 58 | "@types/debug@^4.1.5": 59 | version "4.1.5" 60 | resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd" 61 | integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== 62 | 63 | "@types/fs-extra@^9.0.1": 64 | version "9.0.7" 65 | resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.7.tgz#a9ef2ffdab043def080c5bec94c03402f793577f" 66 | integrity sha512-YGq2A6Yc3bldrLUlm17VNWOnUbnEzJ9CMgOeLFtQF3HOCN5lQBO8VyjG00a5acA5NNSM30kHVGp1trZgnVgi1Q== 67 | dependencies: 68 | "@types/node" "*" 69 | 70 | "@types/node@*": 71 | version "14.14.31" 72 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.31.tgz#72286bd33d137aa0d152d47ec7c1762563d34055" 73 | integrity sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g== 74 | 75 | "@types/node@^12.0.12": 76 | version "12.20.4" 77 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.4.tgz#73687043dd00fcb6962c60fbf499553a24d6bdf2" 78 | integrity sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ== 79 | 80 | "@types/pug@^2.0.4": 81 | version "2.0.4" 82 | resolved "https://registry.yarnpkg.com/@types/pug/-/pug-2.0.4.tgz#8772fcd0418e3cd2cc171555d73007415051f4b2" 83 | integrity sha1-h3L80EGOPNLMFxVV1zAHQVBR9LI= 84 | 85 | "@types/sass@^1.16.0": 86 | version "1.16.0" 87 | resolved "https://registry.yarnpkg.com/@types/sass/-/sass-1.16.0.tgz#b41ac1c17fa68ffb57d43e2360486ef526b3d57d" 88 | integrity sha512-2XZovu4NwcqmtZtsBR5XYLw18T8cBCnU2USFHTnYLLHz9fkhnoEMoDsqShJIOFsFhn5aJHjweiUUdTrDGujegA== 89 | dependencies: 90 | "@types/node" "*" 91 | 92 | "@types/yargs-parser@*": 93 | version "20.2.0" 94 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.0.tgz#dd3e6699ba3237f0348cd085e4698780204842f9" 95 | integrity sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA== 96 | 97 | "@types/yargs@^15.0.5": 98 | version "15.0.13" 99 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.13.tgz#34f7fec8b389d7f3c1fd08026a5763e072d3c6dc" 100 | integrity sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ== 101 | dependencies: 102 | "@types/yargs-parser" "*" 103 | 104 | acorn-node@^1.6.1: 105 | version "1.8.2" 106 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 107 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 108 | dependencies: 109 | acorn "^7.0.0" 110 | acorn-walk "^7.0.0" 111 | xtend "^4.0.2" 112 | 113 | acorn-walk@^7.0.0: 114 | version "7.2.0" 115 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 116 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 117 | 118 | acorn@^7.0.0: 119 | version "7.4.1" 120 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 121 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 122 | 123 | ajv-keywords@^3.4.1: 124 | version "3.5.2" 125 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" 126 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== 127 | 128 | ajv@^6.12.0: 129 | version "6.12.6" 130 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 131 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 132 | dependencies: 133 | fast-deep-equal "^3.1.1" 134 | fast-json-stable-stringify "^2.0.0" 135 | json-schema-traverse "^0.4.1" 136 | uri-js "^4.2.2" 137 | 138 | ansi-align@^3.0.0: 139 | version "3.0.0" 140 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" 141 | integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== 142 | dependencies: 143 | string-width "^3.0.0" 144 | 145 | ansi-regex@^4.1.0: 146 | version "4.1.0" 147 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 148 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 149 | 150 | ansi-regex@^5.0.0: 151 | version "5.0.0" 152 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 153 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 154 | 155 | ansi-styles@^3.2.1: 156 | version "3.2.1" 157 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 158 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 159 | dependencies: 160 | color-convert "^1.9.0" 161 | 162 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 163 | version "4.3.0" 164 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 165 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 166 | dependencies: 167 | color-convert "^2.0.1" 168 | 169 | app-builder-bin@3.5.10: 170 | version "3.5.10" 171 | resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-3.5.10.tgz#4a7f9999fccc0c435b6284ae1366bc76a17c4a7d" 172 | integrity sha512-Jd+GW68lR0NeetgZDo47PdWBEPdnD+p0jEa7XaxjRC8u6Oo/wgJsfKUkORRgr2NpkD19IFKN50P6JYy04XHFLQ== 173 | 174 | app-builder-lib@22.9.1: 175 | version "22.9.1" 176 | resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.9.1.tgz#ccb8f1a02b628514a5dfab9401fa2a976689415c" 177 | integrity sha512-KfXim/fiNwFW2SKffsjEMdAU7RbbEXn62x5YyXle1b4j9X/wEHW9iwox8De6y0hJdR+/kCC/49lI+VgNwLhV7A== 178 | dependencies: 179 | "7zip-bin" "~5.0.3" 180 | "@develar/schema-utils" "~2.6.5" 181 | async-exit-hook "^2.0.1" 182 | bluebird-lst "^1.0.9" 183 | builder-util "22.9.1" 184 | builder-util-runtime "8.7.2" 185 | chromium-pickle-js "^0.2.0" 186 | debug "^4.3.0" 187 | ejs "^3.1.5" 188 | electron-publish "22.9.1" 189 | fs-extra "^9.0.1" 190 | hosted-git-info "^3.0.5" 191 | is-ci "^2.0.0" 192 | isbinaryfile "^4.0.6" 193 | js-yaml "^3.14.0" 194 | lazy-val "^1.0.4" 195 | minimatch "^3.0.4" 196 | normalize-package-data "^2.5.0" 197 | read-config-file "6.0.0" 198 | sanitize-filename "^1.6.3" 199 | semver "^7.3.2" 200 | temp-file "^3.3.7" 201 | 202 | argparse@^1.0.7: 203 | version "1.0.10" 204 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 205 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 206 | dependencies: 207 | sprintf-js "~1.0.2" 208 | 209 | async-exit-hook@^2.0.1: 210 | version "2.0.1" 211 | resolved "https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz#8bd8b024b0ec9b1c01cccb9af9db29bd717dfaf3" 212 | integrity sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw== 213 | 214 | async@0.9.x: 215 | version "0.9.2" 216 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 217 | integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= 218 | 219 | at-least-node@^1.0.0: 220 | version "1.0.0" 221 | resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 222 | integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 223 | 224 | autoprefixer@^10.2.4: 225 | version "10.2.4" 226 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.4.tgz#c0e7cf24fcc6a1ae5d6250c623f0cb8beef2f7e1" 227 | integrity sha512-DCCdUQiMD+P/as8m3XkeTUkUKuuRqLGcwD0nll7wevhqoJfMRpJlkFd1+MQh1pvupjiQuip42lc/VFvfUTMSKw== 228 | dependencies: 229 | browserslist "^4.16.1" 230 | caniuse-lite "^1.0.30001181" 231 | colorette "^1.2.1" 232 | fraction.js "^4.0.13" 233 | normalize-range "^0.1.2" 234 | postcss-value-parser "^4.1.0" 235 | 236 | balanced-match@^1.0.0: 237 | version "1.0.0" 238 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 239 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 240 | 241 | bluebird-lst@^1.0.9: 242 | version "1.0.9" 243 | resolved "https://registry.yarnpkg.com/bluebird-lst/-/bluebird-lst-1.0.9.tgz#a64a0e4365658b9ab5fe875eb9dfb694189bb41c" 244 | integrity sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw== 245 | dependencies: 246 | bluebird "^3.5.5" 247 | 248 | bluebird@^3.5.5: 249 | version "3.7.2" 250 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 251 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 252 | 253 | boolean@^3.0.1: 254 | version "3.0.2" 255 | resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.0.2.tgz#df1baa18b6a2b0e70840475e1d93ec8fe75b2570" 256 | integrity sha512-RwywHlpCRc3/Wh81MiCKun4ydaIFyW5Ea6JbL6sRCVx5q5irDw7pMXBUFYF/jArQ6YrG36q0kpovc9P/Kd3I4g== 257 | 258 | boxen@^4.2.0: 259 | version "4.2.0" 260 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" 261 | integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ== 262 | dependencies: 263 | ansi-align "^3.0.0" 264 | camelcase "^5.3.1" 265 | chalk "^3.0.0" 266 | cli-boxes "^2.2.0" 267 | string-width "^4.1.0" 268 | term-size "^2.1.0" 269 | type-fest "^0.8.1" 270 | widest-line "^3.1.0" 271 | 272 | brace-expansion@^1.1.7: 273 | version "1.1.11" 274 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 275 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 276 | dependencies: 277 | balanced-match "^1.0.0" 278 | concat-map "0.0.1" 279 | 280 | browserslist@^4.16.1: 281 | version "4.16.3" 282 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717" 283 | integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw== 284 | dependencies: 285 | caniuse-lite "^1.0.30001181" 286 | colorette "^1.2.1" 287 | electron-to-chromium "^1.3.649" 288 | escalade "^3.1.1" 289 | node-releases "^1.1.70" 290 | 291 | buffer-crc32@~0.2.3: 292 | version "0.2.13" 293 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 294 | integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= 295 | 296 | buffer-from@^1.0.0: 297 | version "1.1.1" 298 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 299 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 300 | 301 | builder-util-runtime@8.7.2: 302 | version "8.7.2" 303 | resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-8.7.2.tgz#d93afc71428a12789b437e13850e1fa7da956d72" 304 | integrity sha512-xBqv+8bg6cfnzAQK1k3OGpfaHg+QkPgIgpEkXNhouZ0WiUkyZCftuRc2LYzQrLucFywpa14Xbc6+hTbpq83yRA== 305 | dependencies: 306 | debug "^4.1.1" 307 | sax "^1.2.4" 308 | 309 | builder-util@22.9.1: 310 | version "22.9.1" 311 | resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-22.9.1.tgz#b7087a5cde477f90d718ca5d7fafb6ae261b16af" 312 | integrity sha512-5hN/XOaYu4ZQUS6F+5CXE6jTo+NAnVqAxDuKGSaHWb9bejfv/rluChTLoY3/nJh7RFjkoyVjvFJv7zQDB1QmHw== 313 | dependencies: 314 | "7zip-bin" "~5.0.3" 315 | "@types/debug" "^4.1.5" 316 | "@types/fs-extra" "^9.0.1" 317 | app-builder-bin "3.5.10" 318 | bluebird-lst "^1.0.9" 319 | builder-util-runtime "8.7.2" 320 | chalk "^4.1.0" 321 | debug "^4.3.0" 322 | fs-extra "^9.0.1" 323 | is-ci "^2.0.0" 324 | js-yaml "^3.14.0" 325 | source-map-support "^0.5.19" 326 | stat-mode "^1.0.0" 327 | temp-file "^3.3.7" 328 | 329 | bytes@^3.0.0: 330 | version "3.1.0" 331 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 332 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 333 | 334 | cacheable-request@^6.0.0: 335 | version "6.1.0" 336 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 337 | integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 338 | dependencies: 339 | clone-response "^1.0.2" 340 | get-stream "^5.1.0" 341 | http-cache-semantics "^4.0.0" 342 | keyv "^3.0.0" 343 | lowercase-keys "^2.0.0" 344 | normalize-url "^4.1.0" 345 | responselike "^1.0.2" 346 | 347 | camelcase-css@^2.0.1: 348 | version "2.0.1" 349 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 350 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 351 | 352 | camelcase@^5.3.1: 353 | version "5.3.1" 354 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 355 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 356 | 357 | caniuse-lite@^1.0.30001181: 358 | version "1.0.30001192" 359 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001192.tgz#b848ebc0ab230cf313d194a4775a30155d50ae40" 360 | integrity sha512-63OrUnwJj5T1rUmoyqYTdRWBqFFxZFlyZnRRjDR8NSUQFB6A+j/uBORU/SyJ5WzDLg4SPiZH40hQCBNdZ/jmAw== 361 | 362 | chalk@^2.4.1, chalk@^2.4.2: 363 | version "2.4.2" 364 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 365 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 366 | dependencies: 367 | ansi-styles "^3.2.1" 368 | escape-string-regexp "^1.0.5" 369 | supports-color "^5.3.0" 370 | 371 | chalk@^3.0.0: 372 | version "3.0.0" 373 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 374 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 375 | dependencies: 376 | ansi-styles "^4.1.0" 377 | supports-color "^7.1.0" 378 | 379 | chalk@^4.1.0: 380 | version "4.1.0" 381 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 382 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 383 | dependencies: 384 | ansi-styles "^4.1.0" 385 | supports-color "^7.1.0" 386 | 387 | chromium-pickle-js@^0.2.0: 388 | version "0.2.0" 389 | resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" 390 | integrity sha1-BKEGZywYsIWrd02YPfo+oTjyIgU= 391 | 392 | ci-info@^2.0.0: 393 | version "2.0.0" 394 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 395 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 396 | 397 | cli-boxes@^2.2.0: 398 | version "2.2.1" 399 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" 400 | integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== 401 | 402 | cliui@^7.0.2: 403 | version "7.0.4" 404 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 405 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 406 | dependencies: 407 | string-width "^4.2.0" 408 | strip-ansi "^6.0.0" 409 | wrap-ansi "^7.0.0" 410 | 411 | clone-response@^1.0.2: 412 | version "1.0.2" 413 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 414 | integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= 415 | dependencies: 416 | mimic-response "^1.0.0" 417 | 418 | color-convert@^1.9.0, color-convert@^1.9.1: 419 | version "1.9.3" 420 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 421 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 422 | dependencies: 423 | color-name "1.1.3" 424 | 425 | color-convert@^2.0.1: 426 | version "2.0.1" 427 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 428 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 429 | dependencies: 430 | color-name "~1.1.4" 431 | 432 | color-name@1.1.3: 433 | version "1.1.3" 434 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 435 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 436 | 437 | color-name@^1.0.0, color-name@~1.1.4: 438 | version "1.1.4" 439 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 440 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 441 | 442 | color-string@^1.5.4: 443 | version "1.5.4" 444 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" 445 | integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== 446 | dependencies: 447 | color-name "^1.0.0" 448 | simple-swizzle "^0.2.2" 449 | 450 | color@^3.1.3: 451 | version "3.1.3" 452 | resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" 453 | integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== 454 | dependencies: 455 | color-convert "^1.9.1" 456 | color-string "^1.5.4" 457 | 458 | colorette@^1.2.1: 459 | version "1.2.2" 460 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" 461 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== 462 | 463 | commander@^6.0.0: 464 | version "6.2.1" 465 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" 466 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 467 | 468 | concat-map@0.0.1: 469 | version "0.0.1" 470 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 471 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 472 | 473 | concat-stream@^1.6.2: 474 | version "1.6.2" 475 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 476 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 477 | dependencies: 478 | buffer-from "^1.0.0" 479 | inherits "^2.0.3" 480 | readable-stream "^2.2.2" 481 | typedarray "^0.0.6" 482 | 483 | config-chain@^1.1.11: 484 | version "1.1.12" 485 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa" 486 | integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA== 487 | dependencies: 488 | ini "^1.3.4" 489 | proto-list "~1.2.1" 490 | 491 | configstore@^5.0.1: 492 | version "5.0.1" 493 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" 494 | integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== 495 | dependencies: 496 | dot-prop "^5.2.0" 497 | graceful-fs "^4.1.2" 498 | make-dir "^3.0.0" 499 | unique-string "^2.0.0" 500 | write-file-atomic "^3.0.0" 501 | xdg-basedir "^4.0.0" 502 | 503 | core-js@^3.6.5: 504 | version "3.9.0" 505 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.9.0.tgz#790b1bb11553a2272b36e2625c7179db345492f8" 506 | integrity sha512-PyFBJaLq93FlyYdsndE5VaueA9K5cNB7CGzeCj191YYLhkQM0gdZR2SKihM70oF0wdqKSKClv/tEBOpoRmdOVQ== 507 | 508 | core-util-is@~1.0.0: 509 | version "1.0.2" 510 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 511 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 512 | 513 | crypto-random-string@^2.0.0: 514 | version "2.0.0" 515 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" 516 | integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== 517 | 518 | css-unit-converter@^1.1.1: 519 | version "1.1.2" 520 | resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21" 521 | integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA== 522 | 523 | cssesc@^3.0.0: 524 | version "3.0.0" 525 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 526 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 527 | 528 | dayjs@^1.10.4: 529 | version "1.10.4" 530 | resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.4.tgz#8e544a9b8683f61783f570980a8a80eaf54ab1e2" 531 | integrity sha512-RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw== 532 | 533 | debug@^2.6.9: 534 | version "2.6.9" 535 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 536 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 537 | dependencies: 538 | ms "2.0.0" 539 | 540 | debug@^4.1.0, debug@^4.1.1, debug@^4.3.0: 541 | version "4.3.1" 542 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 543 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 544 | dependencies: 545 | ms "2.1.2" 546 | 547 | decompress-response@^3.3.0: 548 | version "3.3.0" 549 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 550 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 551 | dependencies: 552 | mimic-response "^1.0.0" 553 | 554 | deep-extend@^0.6.0: 555 | version "0.6.0" 556 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 557 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 558 | 559 | defer-to-connect@^1.0.1: 560 | version "1.1.3" 561 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 562 | integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 563 | 564 | define-properties@^1.1.3: 565 | version "1.1.3" 566 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 567 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 568 | dependencies: 569 | object-keys "^1.0.12" 570 | 571 | defined@^1.0.0: 572 | version "1.0.0" 573 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 574 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 575 | 576 | detect-indent@^6.0.0: 577 | version "6.0.0" 578 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.0.0.tgz#0abd0f549f69fc6659a254fe96786186b6f528fd" 579 | integrity sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA== 580 | 581 | detect-node@^2.0.4: 582 | version "2.0.4" 583 | resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" 584 | integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== 585 | 586 | detective@^5.2.0: 587 | version "5.2.0" 588 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" 589 | integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== 590 | dependencies: 591 | acorn-node "^1.6.1" 592 | defined "^1.0.0" 593 | minimist "^1.1.1" 594 | 595 | didyoumean@^1.2.1: 596 | version "1.2.1" 597 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.1.tgz#e92edfdada6537d484d73c0172fd1eba0c4976ff" 598 | integrity sha1-6S7f2tplN9SE1zwBcv0eugxJdv8= 599 | 600 | dmg-builder@22.9.1: 601 | version "22.9.1" 602 | resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.9.1.tgz#64647224f37ee47fc9bd01947c21cc010a30511f" 603 | integrity sha512-jc+DAirqmQrNT6KbDHdfEp8D1kD0DBTnsLhwUR3MX+hMBun5bT134LQzpdK0GKvd22GqF8L1Cz/NOgaVjscAXQ== 604 | dependencies: 605 | app-builder-lib "22.9.1" 606 | builder-util "22.9.1" 607 | fs-extra "^9.0.1" 608 | iconv-lite "^0.6.2" 609 | js-yaml "^3.14.0" 610 | sanitize-filename "^1.6.3" 611 | 612 | dot-prop@^5.2.0: 613 | version "5.3.0" 614 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 615 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 616 | dependencies: 617 | is-obj "^2.0.0" 618 | 619 | dotenv-expand@^5.1.0: 620 | version "5.1.0" 621 | resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" 622 | integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== 623 | 624 | dotenv@^8.2.0: 625 | version "8.2.0" 626 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" 627 | integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== 628 | 629 | duplexer3@^0.1.4: 630 | version "0.1.4" 631 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 632 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 633 | 634 | ejs@^3.1.5: 635 | version "3.1.6" 636 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.6.tgz#5bfd0a0689743bb5268b3550cceeebbc1702822a" 637 | integrity sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw== 638 | dependencies: 639 | jake "^10.6.1" 640 | 641 | electron-builder@^22.9.1: 642 | version "22.9.1" 643 | resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.9.1.tgz#a2962db6f2757bc01d02489f38fafe0809f68f60" 644 | integrity sha512-GXPt8l5Mxwm1QKYopUM6/Tdh9W3695G6Ax+IFyj5pQ51G4SD5L1uq4/RkPSsOgs3rP7jNSV6g6OfDzdtVufPdA== 645 | dependencies: 646 | "@types/yargs" "^15.0.5" 647 | app-builder-lib "22.9.1" 648 | bluebird-lst "^1.0.9" 649 | builder-util "22.9.1" 650 | builder-util-runtime "8.7.2" 651 | chalk "^4.1.0" 652 | dmg-builder "22.9.1" 653 | fs-extra "^9.0.1" 654 | is-ci "^2.0.0" 655 | lazy-val "^1.0.4" 656 | read-config-file "6.0.0" 657 | sanitize-filename "^1.6.3" 658 | update-notifier "^4.1.1" 659 | yargs "^16.0.3" 660 | 661 | electron-publish@22.9.1: 662 | version "22.9.1" 663 | resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.9.1.tgz#7cc76ac4cc53efd29ee31c1e5facb9724329068e" 664 | integrity sha512-ducLjRJLEeU87FaTCWaUyDjCoLXHkawkltP2zqS/n2PyGke54ZIql0tBuUheht4EpR8AhFbVJ11spSn1gy8r6w== 665 | dependencies: 666 | "@types/fs-extra" "^9.0.1" 667 | bluebird-lst "^1.0.9" 668 | builder-util "22.9.1" 669 | builder-util-runtime "8.7.2" 670 | chalk "^4.1.0" 671 | fs-extra "^9.0.1" 672 | lazy-val "^1.0.4" 673 | mime "^2.4.6" 674 | 675 | electron-to-chromium@^1.3.649: 676 | version "1.3.675" 677 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.675.tgz#7ad29f98d7b48da581554eb28bb9a71fd5fd4956" 678 | integrity sha512-GEQw+6dNWjueXGkGfjgm7dAMtXfEqrfDG3uWcZdeaD4cZ3dKYdPRQVruVXQRXtPLtOr5GNVVlNLRMChOZ611pQ== 679 | 680 | electron@^11.3.0: 681 | version "11.3.0" 682 | resolved "https://registry.yarnpkg.com/electron/-/electron-11.3.0.tgz#87e8528fd23ae53b0eeb3a738f1fe0a3ad27c2db" 683 | integrity sha512-MhdS0gok3wZBTscLBbYrOhLaQybCSAfkupazbK1dMP5c+84eVMxJE/QGohiWQkzs0tVFIJsAHyN19YKPbelNrQ== 684 | dependencies: 685 | "@electron/get" "^1.0.1" 686 | "@types/node" "^12.0.12" 687 | extract-zip "^1.0.3" 688 | 689 | emoji-regex@^7.0.1: 690 | version "7.0.3" 691 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 692 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 693 | 694 | emoji-regex@^8.0.0: 695 | version "8.0.0" 696 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 697 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 698 | 699 | encodeurl@^1.0.2: 700 | version "1.0.2" 701 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 702 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 703 | 704 | end-of-stream@^1.1.0: 705 | version "1.4.4" 706 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 707 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 708 | dependencies: 709 | once "^1.4.0" 710 | 711 | env-paths@^2.2.0: 712 | version "2.2.0" 713 | resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43" 714 | integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA== 715 | 716 | es6-error@^4.1.1: 717 | version "4.1.1" 718 | resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 719 | integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== 720 | 721 | esbuild@^0.8.52: 722 | version "0.8.53" 723 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.8.53.tgz#b408bb0ca1b29dab13d8bbf7d59f59afe6776e86" 724 | integrity sha512-GIaYGdMukH58hu+lf07XWAeESBYFAsz8fXnrylHDCbBXKOSNtFmoYA8PhSeSF+3/qzeJ0VjzV9AkLURo5yfu3g== 725 | 726 | escalade@^3.1.1: 727 | version "3.1.1" 728 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 729 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 730 | 731 | escape-goat@^2.0.0: 732 | version "2.1.1" 733 | resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 734 | integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== 735 | 736 | escape-string-regexp@^1.0.5: 737 | version "1.0.5" 738 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 739 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 740 | 741 | escape-string-regexp@^4.0.0: 742 | version "4.0.0" 743 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 744 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 745 | 746 | esprima@^4.0.0: 747 | version "4.0.1" 748 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 749 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 750 | 751 | estree-walker@^0.6.1: 752 | version "0.6.1" 753 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" 754 | integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== 755 | 756 | extract-zip@^1.0.3: 757 | version "1.7.0" 758 | resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" 759 | integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== 760 | dependencies: 761 | concat-stream "^1.6.2" 762 | debug "^2.6.9" 763 | mkdirp "^0.5.4" 764 | yauzl "^2.10.0" 765 | 766 | fast-deep-equal@^3.1.1: 767 | version "3.1.3" 768 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 769 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 770 | 771 | fast-json-stable-stringify@^2.0.0: 772 | version "2.1.0" 773 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 774 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 775 | 776 | fd-slicer@~1.1.0: 777 | version "1.1.0" 778 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" 779 | integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= 780 | dependencies: 781 | pend "~1.2.0" 782 | 783 | filelist@^1.0.1: 784 | version "1.0.2" 785 | resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.2.tgz#80202f21462d4d1c2e214119b1807c1bc0380e5b" 786 | integrity sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ== 787 | dependencies: 788 | minimatch "^3.0.4" 789 | 790 | fraction.js@^4.0.13: 791 | version "4.0.13" 792 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.0.13.tgz#3c1c315fa16b35c85fffa95725a36fa729c69dfe" 793 | integrity sha512-E1fz2Xs9ltlUp+qbiyx9wmt2n9dRzPsS11Jtdb8D2o+cC7wr9xkkKsVKJuBX0ST+LVS+LhLO+SbLJNtfWcJvXA== 794 | 795 | fs-extra@^8.1.0: 796 | version "8.1.0" 797 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 798 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 799 | dependencies: 800 | graceful-fs "^4.2.0" 801 | jsonfile "^4.0.0" 802 | universalify "^0.1.0" 803 | 804 | fs-extra@^9.0.1, fs-extra@^9.1.0: 805 | version "9.1.0" 806 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" 807 | integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== 808 | dependencies: 809 | at-least-node "^1.0.0" 810 | graceful-fs "^4.2.0" 811 | jsonfile "^6.0.1" 812 | universalify "^2.0.0" 813 | 814 | fs.realpath@^1.0.0: 815 | version "1.0.0" 816 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 817 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 818 | 819 | fsevents@~2.3.1: 820 | version "2.3.2" 821 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 822 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 823 | 824 | function-bind@^1.1.1: 825 | version "1.1.1" 826 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 827 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 828 | 829 | get-caller-file@^2.0.5: 830 | version "2.0.5" 831 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 832 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 833 | 834 | get-stream@^4.1.0: 835 | version "4.1.0" 836 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 837 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 838 | dependencies: 839 | pump "^3.0.0" 840 | 841 | get-stream@^5.1.0: 842 | version "5.2.0" 843 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 844 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 845 | dependencies: 846 | pump "^3.0.0" 847 | 848 | glob@^7.0.0, glob@^7.1.2: 849 | version "7.1.6" 850 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 851 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 852 | dependencies: 853 | fs.realpath "^1.0.0" 854 | inflight "^1.0.4" 855 | inherits "2" 856 | minimatch "^3.0.4" 857 | once "^1.3.0" 858 | path-is-absolute "^1.0.0" 859 | 860 | global-agent@^2.0.2: 861 | version "2.1.12" 862 | resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-2.1.12.tgz#e4ae3812b731a9e81cbf825f9377ef450a8e4195" 863 | integrity sha512-caAljRMS/qcDo69X9BfkgrihGUgGx44Fb4QQToNQjsiWh+YlQ66uqYVAdA8Olqit+5Ng0nkz09je3ZzANMZcjg== 864 | dependencies: 865 | boolean "^3.0.1" 866 | core-js "^3.6.5" 867 | es6-error "^4.1.1" 868 | matcher "^3.0.0" 869 | roarr "^2.15.3" 870 | semver "^7.3.2" 871 | serialize-error "^7.0.1" 872 | 873 | global-dirs@^2.0.1: 874 | version "2.1.0" 875 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.1.0.tgz#e9046a49c806ff04d6c1825e196c8f0091e8df4d" 876 | integrity sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ== 877 | dependencies: 878 | ini "1.3.7" 879 | 880 | global-tunnel-ng@^2.7.1: 881 | version "2.7.1" 882 | resolved "https://registry.yarnpkg.com/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz#d03b5102dfde3a69914f5ee7d86761ca35d57d8f" 883 | integrity sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg== 884 | dependencies: 885 | encodeurl "^1.0.2" 886 | lodash "^4.17.10" 887 | npm-conf "^1.1.3" 888 | tunnel "^0.0.6" 889 | 890 | globalthis@^1.0.1: 891 | version "1.0.2" 892 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b" 893 | integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ== 894 | dependencies: 895 | define-properties "^1.1.3" 896 | 897 | got@^9.6.0: 898 | version "9.6.0" 899 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 900 | integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 901 | dependencies: 902 | "@sindresorhus/is" "^0.14.0" 903 | "@szmarczak/http-timer" "^1.1.2" 904 | cacheable-request "^6.0.0" 905 | decompress-response "^3.3.0" 906 | duplexer3 "^0.1.4" 907 | get-stream "^4.1.0" 908 | lowercase-keys "^1.0.1" 909 | mimic-response "^1.0.1" 910 | p-cancelable "^1.0.0" 911 | to-readable-stream "^1.0.0" 912 | url-parse-lax "^3.0.0" 913 | 914 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: 915 | version "4.2.6" 916 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 917 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 918 | 919 | has-flag@^3.0.0: 920 | version "3.0.0" 921 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 922 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 923 | 924 | has-flag@^4.0.0: 925 | version "4.0.0" 926 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 927 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 928 | 929 | has-yarn@^2.1.0: 930 | version "2.1.0" 931 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" 932 | integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== 933 | 934 | has@^1.0.3: 935 | version "1.0.3" 936 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 937 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 938 | dependencies: 939 | function-bind "^1.1.1" 940 | 941 | hosted-git-info@^2.1.4: 942 | version "2.8.8" 943 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 944 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 945 | 946 | hosted-git-info@^3.0.5: 947 | version "3.0.8" 948 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" 949 | integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== 950 | dependencies: 951 | lru-cache "^6.0.0" 952 | 953 | html-tags@^3.1.0: 954 | version "3.1.0" 955 | resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140" 956 | integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== 957 | 958 | http-cache-semantics@^4.0.0: 959 | version "4.1.0" 960 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 961 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 962 | 963 | iconv-lite@^0.6.2: 964 | version "0.6.2" 965 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01" 966 | integrity sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ== 967 | dependencies: 968 | safer-buffer ">= 2.1.2 < 3.0.0" 969 | 970 | import-lazy@^2.1.0: 971 | version "2.1.0" 972 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 973 | integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= 974 | 975 | imurmurhash@^0.1.4: 976 | version "0.1.4" 977 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 978 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 979 | 980 | indexes-of@^1.0.1: 981 | version "1.0.1" 982 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 983 | integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= 984 | 985 | inflight@^1.0.4: 986 | version "1.0.6" 987 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 988 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 989 | dependencies: 990 | once "^1.3.0" 991 | wrappy "1" 992 | 993 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 994 | version "2.0.4" 995 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 996 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 997 | 998 | ini@1.3.7: 999 | version "1.3.7" 1000 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1001 | integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ== 1002 | 1003 | ini@^1.3.4, ini@~1.3.0: 1004 | version "1.3.8" 1005 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1006 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1007 | 1008 | is-arrayish@^0.3.1: 1009 | version "0.3.2" 1010 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 1011 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 1012 | 1013 | is-ci@^2.0.0: 1014 | version "2.0.0" 1015 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1016 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 1017 | dependencies: 1018 | ci-info "^2.0.0" 1019 | 1020 | is-core-module@^2.2.0: 1021 | version "2.2.0" 1022 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 1023 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 1024 | dependencies: 1025 | has "^1.0.3" 1026 | 1027 | is-fullwidth-code-point@^2.0.0: 1028 | version "2.0.0" 1029 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1030 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1031 | 1032 | is-fullwidth-code-point@^3.0.0: 1033 | version "3.0.0" 1034 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1035 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1036 | 1037 | is-installed-globally@^0.3.1: 1038 | version "0.3.2" 1039 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141" 1040 | integrity sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g== 1041 | dependencies: 1042 | global-dirs "^2.0.1" 1043 | is-path-inside "^3.0.1" 1044 | 1045 | is-npm@^4.0.0: 1046 | version "4.0.0" 1047 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d" 1048 | integrity sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig== 1049 | 1050 | is-obj@^2.0.0: 1051 | version "2.0.0" 1052 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 1053 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 1054 | 1055 | is-path-inside@^3.0.1: 1056 | version "3.0.2" 1057 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" 1058 | integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== 1059 | 1060 | is-typedarray@^1.0.0: 1061 | version "1.0.0" 1062 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1063 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1064 | 1065 | is-yarn-global@^0.3.0: 1066 | version "0.3.0" 1067 | resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" 1068 | integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== 1069 | 1070 | isarray@~1.0.0: 1071 | version "1.0.0" 1072 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1073 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1074 | 1075 | isbinaryfile@^4.0.6: 1076 | version "4.0.6" 1077 | resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.6.tgz#edcb62b224e2b4710830b67498c8e4e5a4d2610b" 1078 | integrity sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg== 1079 | 1080 | jake@^10.6.1: 1081 | version "10.8.2" 1082 | resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b" 1083 | integrity sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A== 1084 | dependencies: 1085 | async "0.9.x" 1086 | chalk "^2.4.2" 1087 | filelist "^1.0.1" 1088 | minimatch "^3.0.4" 1089 | 1090 | js-yaml@^3.13.1, js-yaml@^3.14.0: 1091 | version "3.14.1" 1092 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1093 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1094 | dependencies: 1095 | argparse "^1.0.7" 1096 | esprima "^4.0.0" 1097 | 1098 | json-buffer@3.0.0: 1099 | version "3.0.0" 1100 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 1101 | integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= 1102 | 1103 | json-schema-traverse@^0.4.1: 1104 | version "0.4.1" 1105 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1106 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1107 | 1108 | json-stringify-safe@^5.0.1: 1109 | version "5.0.1" 1110 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1111 | integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1112 | 1113 | json5@^2.1.2: 1114 | version "2.2.0" 1115 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 1116 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 1117 | dependencies: 1118 | minimist "^1.2.5" 1119 | 1120 | jsonfile@^4.0.0: 1121 | version "4.0.0" 1122 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1123 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1124 | optionalDependencies: 1125 | graceful-fs "^4.1.6" 1126 | 1127 | jsonfile@^6.0.1: 1128 | version "6.1.0" 1129 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" 1130 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 1131 | dependencies: 1132 | universalify "^2.0.0" 1133 | optionalDependencies: 1134 | graceful-fs "^4.1.6" 1135 | 1136 | keyv@^3.0.0: 1137 | version "3.1.0" 1138 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 1139 | integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 1140 | dependencies: 1141 | json-buffer "3.0.0" 1142 | 1143 | latest-version@^5.0.0: 1144 | version "5.1.0" 1145 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" 1146 | integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== 1147 | dependencies: 1148 | package-json "^6.3.0" 1149 | 1150 | lazy-val@^1.0.4: 1151 | version "1.0.4" 1152 | resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.4.tgz#882636a7245c2cfe6e0a4e3ba6c5d68a137e5c65" 1153 | integrity sha512-u93kb2fPbIrfzBuLjZE+w+fJbUUMhNDXxNmMfaqNgpfQf1CO5ZSe2LfsnBqVAk7i/2NF48OSoRj+Xe2VT+lE8Q== 1154 | 1155 | lodash.toarray@^4.4.0: 1156 | version "4.4.0" 1157 | resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" 1158 | integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= 1159 | 1160 | lodash@^4.17.10, lodash@^4.17.20: 1161 | version "4.17.21" 1162 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1163 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1164 | 1165 | lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 1166 | version "1.0.1" 1167 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1168 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 1169 | 1170 | lowercase-keys@^2.0.0: 1171 | version "2.0.0" 1172 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1173 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 1174 | 1175 | lru-cache@^6.0.0: 1176 | version "6.0.0" 1177 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1178 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1179 | dependencies: 1180 | yallist "^4.0.0" 1181 | 1182 | make-dir@^3.0.0: 1183 | version "3.1.0" 1184 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1185 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1186 | dependencies: 1187 | semver "^6.0.0" 1188 | 1189 | matcher@^3.0.0: 1190 | version "3.0.0" 1191 | resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" 1192 | integrity sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng== 1193 | dependencies: 1194 | escape-string-regexp "^4.0.0" 1195 | 1196 | mime@^2.4.6: 1197 | version "2.5.2" 1198 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" 1199 | integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== 1200 | 1201 | mimic-response@^1.0.0, mimic-response@^1.0.1: 1202 | version "1.0.1" 1203 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1204 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1205 | 1206 | min-indent@^1.0.0: 1207 | version "1.0.1" 1208 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 1209 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1210 | 1211 | minimatch@^3.0.4: 1212 | version "3.0.4" 1213 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1214 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1215 | dependencies: 1216 | brace-expansion "^1.1.7" 1217 | 1218 | minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: 1219 | version "1.2.5" 1220 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1221 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1222 | 1223 | mkdirp@^0.5.4: 1224 | version "0.5.5" 1225 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1226 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1227 | dependencies: 1228 | minimist "^1.2.5" 1229 | 1230 | modern-normalize@^1.0.0: 1231 | version "1.0.0" 1232 | resolved "https://registry.yarnpkg.com/modern-normalize/-/modern-normalize-1.0.0.tgz#539d84a1e141338b01b346f3e27396d0ed17601e" 1233 | integrity sha512-1lM+BMLGuDfsdwf3rsgBSrxJwAZHFIrQ8YR61xIqdHo0uNKI9M52wNpHSrliZATJp51On6JD0AfRxd4YGSU0lw== 1234 | 1235 | ms@2.0.0: 1236 | version "2.0.0" 1237 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1238 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1239 | 1240 | ms@2.1.2: 1241 | version "2.1.2" 1242 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1243 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1244 | 1245 | nanoid@^3.1.20: 1246 | version "3.1.20" 1247 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" 1248 | integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== 1249 | 1250 | navigo@^8.9.0: 1251 | version "8.9.0" 1252 | resolved "https://registry.yarnpkg.com/navigo/-/navigo-8.9.0.tgz#1b40fa30509027379850865dc6ecdcec68a68fa8" 1253 | integrity sha512-bh6IH0D6iA5H3JCYvaAM8JeYO7QsDyhMGb8EIgG/cph70rJ11fveHUbl57QgcankZek/M9jeecQIJSC4J4RBRA== 1254 | 1255 | node-emoji@^1.8.1: 1256 | version "1.10.0" 1257 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da" 1258 | integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== 1259 | dependencies: 1260 | lodash.toarray "^4.4.0" 1261 | 1262 | node-releases@^1.1.70: 1263 | version "1.1.71" 1264 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" 1265 | integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== 1266 | 1267 | normalize-package-data@^2.5.0: 1268 | version "2.5.0" 1269 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1270 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1271 | dependencies: 1272 | hosted-git-info "^2.1.4" 1273 | resolve "^1.10.0" 1274 | semver "2 || 3 || 4 || 5" 1275 | validate-npm-package-license "^3.0.1" 1276 | 1277 | normalize-range@^0.1.2: 1278 | version "0.1.2" 1279 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1280 | integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= 1281 | 1282 | normalize-url@^4.1.0: 1283 | version "4.5.0" 1284 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129" 1285 | integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== 1286 | 1287 | npm-conf@^1.1.3: 1288 | version "1.1.3" 1289 | resolved "https://registry.yarnpkg.com/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9" 1290 | integrity sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw== 1291 | dependencies: 1292 | config-chain "^1.1.11" 1293 | pify "^3.0.0" 1294 | 1295 | object-assign@^4.1.1: 1296 | version "4.1.1" 1297 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1298 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1299 | 1300 | object-hash@^2.1.1: 1301 | version "2.1.1" 1302 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.1.1.tgz#9447d0279b4fcf80cff3259bf66a1dc73afabe09" 1303 | integrity sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ== 1304 | 1305 | object-keys@^1.0.12: 1306 | version "1.1.1" 1307 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1308 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1309 | 1310 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1311 | version "1.4.0" 1312 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1313 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1314 | dependencies: 1315 | wrappy "1" 1316 | 1317 | p-cancelable@^1.0.0: 1318 | version "1.1.0" 1319 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 1320 | integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 1321 | 1322 | package-json@^6.3.0: 1323 | version "6.5.0" 1324 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" 1325 | integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== 1326 | dependencies: 1327 | got "^9.6.0" 1328 | registry-auth-token "^4.0.0" 1329 | registry-url "^5.0.0" 1330 | semver "^6.2.0" 1331 | 1332 | path-is-absolute@^1.0.0: 1333 | version "1.0.1" 1334 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1335 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1336 | 1337 | path-parse@^1.0.6: 1338 | version "1.0.6" 1339 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1340 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1341 | 1342 | pend@~1.2.0: 1343 | version "1.2.0" 1344 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1345 | integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= 1346 | 1347 | pify@^3.0.0: 1348 | version "3.0.0" 1349 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1350 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 1351 | 1352 | postcss-functions@^3: 1353 | version "3.0.0" 1354 | resolved "https://registry.yarnpkg.com/postcss-functions/-/postcss-functions-3.0.0.tgz#0e94d01444700a481de20de4d55fb2640564250e" 1355 | integrity sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4= 1356 | dependencies: 1357 | glob "^7.1.2" 1358 | object-assign "^4.1.1" 1359 | postcss "^6.0.9" 1360 | postcss-value-parser "^3.3.0" 1361 | 1362 | postcss-js@^3.0.3: 1363 | version "3.0.3" 1364 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-3.0.3.tgz#2f0bd370a2e8599d45439f6970403b5873abda33" 1365 | integrity sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw== 1366 | dependencies: 1367 | camelcase-css "^2.0.1" 1368 | postcss "^8.1.6" 1369 | 1370 | postcss-nested@^5.0.1: 1371 | version "5.0.4" 1372 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.4.tgz#da5c42a47b5c5955bee37d6c519135c28a558e68" 1373 | integrity sha512-/dimXVqdUAVS2ZiIX0uvyk9UCI825y6LW4TnjG51JTKF89CcorHPAjTUGPF70k2wlQYts5OzfnhYMgfGfHCClQ== 1374 | dependencies: 1375 | postcss-selector-parser "^6.0.4" 1376 | 1377 | postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: 1378 | version "6.0.4" 1379 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" 1380 | integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== 1381 | dependencies: 1382 | cssesc "^3.0.0" 1383 | indexes-of "^1.0.1" 1384 | uniq "^1.0.1" 1385 | util-deprecate "^1.0.2" 1386 | 1387 | postcss-value-parser@^3.3.0: 1388 | version "3.3.1" 1389 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" 1390 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 1391 | 1392 | postcss-value-parser@^4.1.0: 1393 | version "4.1.0" 1394 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 1395 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 1396 | 1397 | postcss@^6.0.9: 1398 | version "6.0.23" 1399 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" 1400 | integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== 1401 | dependencies: 1402 | chalk "^2.4.1" 1403 | source-map "^0.6.1" 1404 | supports-color "^5.4.0" 1405 | 1406 | postcss@^8.1.6, postcss@^8.2.1, postcss@^8.2.6: 1407 | version "8.2.6" 1408 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.6.tgz#5d69a974543b45f87e464bc4c3e392a97d6be9fe" 1409 | integrity sha512-xpB8qYxgPuly166AGlpRjUdEYtmOWx2iCwGmrv4vqZL9YPVviDVPZPRXxnXr6xPZOdxQ9lp3ZBFCRgWJ7LE3Sg== 1410 | dependencies: 1411 | colorette "^1.2.1" 1412 | nanoid "^3.1.20" 1413 | source-map "^0.6.1" 1414 | 1415 | prepend-http@^2.0.0: 1416 | version "2.0.0" 1417 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 1418 | integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= 1419 | 1420 | pretty-hrtime@^1.0.3: 1421 | version "1.0.3" 1422 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 1423 | integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 1424 | 1425 | process-nextick-args@~2.0.0: 1426 | version "2.0.1" 1427 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1428 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1429 | 1430 | progress@^2.0.3: 1431 | version "2.0.3" 1432 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1433 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1434 | 1435 | proto-list@~1.2.1: 1436 | version "1.2.4" 1437 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 1438 | integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= 1439 | 1440 | pump@^3.0.0: 1441 | version "3.0.0" 1442 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1443 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1444 | dependencies: 1445 | end-of-stream "^1.1.0" 1446 | once "^1.3.1" 1447 | 1448 | punycode@^2.1.0: 1449 | version "2.1.1" 1450 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1451 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1452 | 1453 | pupa@^2.0.1: 1454 | version "2.1.1" 1455 | resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" 1456 | integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== 1457 | dependencies: 1458 | escape-goat "^2.0.0" 1459 | 1460 | purgecss@^3.1.3: 1461 | version "3.1.3" 1462 | resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-3.1.3.tgz#26987ec09d12eeadc318e22f6e5a9eb0be094f41" 1463 | integrity sha512-hRSLN9mguJ2lzlIQtW4qmPS2kh6oMnA9RxdIYK8sz18QYqd6ePp4GNDl18oWHA1f2v2NEQIh51CO8s/E3YGckQ== 1464 | dependencies: 1465 | commander "^6.0.0" 1466 | glob "^7.0.0" 1467 | postcss "^8.2.1" 1468 | postcss-selector-parser "^6.0.2" 1469 | 1470 | rc@^1.2.8: 1471 | version "1.2.8" 1472 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1473 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1474 | dependencies: 1475 | deep-extend "^0.6.0" 1476 | ini "~1.3.0" 1477 | minimist "^1.2.0" 1478 | strip-json-comments "~2.0.1" 1479 | 1480 | read-config-file@6.0.0: 1481 | version "6.0.0" 1482 | resolved "https://registry.yarnpkg.com/read-config-file/-/read-config-file-6.0.0.tgz#224b5dca6a5bdc1fb19e63f89f342680efdb9299" 1483 | integrity sha512-PHjROSdpceKUmqS06wqwP92VrM46PZSTubmNIMJ5DrMwg1OgenSTSEHIkCa6TiOJ+y/J0xnG1fFwG3M+Oi1aNA== 1484 | dependencies: 1485 | dotenv "^8.2.0" 1486 | dotenv-expand "^5.1.0" 1487 | js-yaml "^3.13.1" 1488 | json5 "^2.1.2" 1489 | lazy-val "^1.0.4" 1490 | 1491 | readable-stream@^2.2.2: 1492 | version "2.3.7" 1493 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1494 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1495 | dependencies: 1496 | core-util-is "~1.0.0" 1497 | inherits "~2.0.3" 1498 | isarray "~1.0.0" 1499 | process-nextick-args "~2.0.0" 1500 | safe-buffer "~5.1.1" 1501 | string_decoder "~1.1.1" 1502 | util-deprecate "~1.0.1" 1503 | 1504 | reduce-css-calc@^2.1.8: 1505 | version "2.1.8" 1506 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz#7ef8761a28d614980dc0c982f772c93f7a99de03" 1507 | integrity sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg== 1508 | dependencies: 1509 | css-unit-converter "^1.1.1" 1510 | postcss-value-parser "^3.3.0" 1511 | 1512 | registry-auth-token@^4.0.0: 1513 | version "4.2.1" 1514 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" 1515 | integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== 1516 | dependencies: 1517 | rc "^1.2.8" 1518 | 1519 | registry-url@^5.0.0: 1520 | version "5.1.0" 1521 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" 1522 | integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== 1523 | dependencies: 1524 | rc "^1.2.8" 1525 | 1526 | require-directory@^2.1.1: 1527 | version "2.1.1" 1528 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1529 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1530 | 1531 | require-relative@^0.8.7: 1532 | version "0.8.7" 1533 | resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" 1534 | integrity sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= 1535 | 1536 | resolve@^1.10.0, resolve@^1.19.0: 1537 | version "1.20.0" 1538 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 1539 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 1540 | dependencies: 1541 | is-core-module "^2.2.0" 1542 | path-parse "^1.0.6" 1543 | 1544 | responselike@^1.0.2: 1545 | version "1.0.2" 1546 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 1547 | integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= 1548 | dependencies: 1549 | lowercase-keys "^1.0.0" 1550 | 1551 | roarr@^2.15.3: 1552 | version "2.15.4" 1553 | resolved "https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz#f5fe795b7b838ccfe35dc608e0282b9eba2e7afd" 1554 | integrity sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A== 1555 | dependencies: 1556 | boolean "^3.0.1" 1557 | detect-node "^2.0.4" 1558 | globalthis "^1.0.1" 1559 | json-stringify-safe "^5.0.1" 1560 | semver-compare "^1.0.0" 1561 | sprintf-js "^1.1.2" 1562 | 1563 | rollup-plugin-svelte@^7.1.0: 1564 | version "7.1.0" 1565 | resolved "https://registry.yarnpkg.com/rollup-plugin-svelte/-/rollup-plugin-svelte-7.1.0.tgz#d45f2b92b1014be4eb46b55aa033fb9a9c65f04d" 1566 | integrity sha512-vopCUq3G+25sKjwF5VilIbiY6KCuMNHP1PFvx2Vr3REBNMDllKHFZN2B9jwwC+MqNc3UPKkjXnceLPEjTjXGXg== 1567 | dependencies: 1568 | require-relative "^0.8.7" 1569 | rollup-pluginutils "^2.8.2" 1570 | 1571 | rollup-pluginutils@^2.8.2: 1572 | version "2.8.2" 1573 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" 1574 | integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== 1575 | dependencies: 1576 | estree-walker "^0.6.1" 1577 | 1578 | rollup@^2.38.5: 1579 | version "2.40.0" 1580 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.40.0.tgz#efc218eaede7ab590954df50f96195188999c304" 1581 | integrity sha512-WiOGAPbXoHu+TOz6hyYUxIksOwsY/21TRWoO593jgYt8mvYafYqQl+axaA8y1z2HFazNUUrsMSjahV2A6/2R9A== 1582 | optionalDependencies: 1583 | fsevents "~2.3.1" 1584 | 1585 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1586 | version "5.1.2" 1587 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1588 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1589 | 1590 | "safer-buffer@>= 2.1.2 < 3.0.0": 1591 | version "2.1.2" 1592 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1593 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1594 | 1595 | sanitize-filename@^1.6.3: 1596 | version "1.6.3" 1597 | resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz#755ebd752045931977e30b2025d340d7c9090378" 1598 | integrity sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg== 1599 | dependencies: 1600 | truncate-utf8-bytes "^1.0.0" 1601 | 1602 | sax@^1.2.4: 1603 | version "1.2.4" 1604 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1605 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 1606 | 1607 | semver-compare@^1.0.0: 1608 | version "1.0.0" 1609 | resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 1610 | integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 1611 | 1612 | semver-diff@^3.1.1: 1613 | version "3.1.1" 1614 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" 1615 | integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== 1616 | dependencies: 1617 | semver "^6.3.0" 1618 | 1619 | "semver@2 || 3 || 4 || 5": 1620 | version "5.7.1" 1621 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1622 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1623 | 1624 | semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: 1625 | version "6.3.0" 1626 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1627 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1628 | 1629 | semver@^7.3.2: 1630 | version "7.3.4" 1631 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 1632 | integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== 1633 | dependencies: 1634 | lru-cache "^6.0.0" 1635 | 1636 | serialize-error@^7.0.1: 1637 | version "7.0.1" 1638 | resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" 1639 | integrity sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw== 1640 | dependencies: 1641 | type-fest "^0.13.1" 1642 | 1643 | signal-exit@^3.0.2: 1644 | version "3.0.3" 1645 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1646 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1647 | 1648 | simple-swizzle@^0.2.2: 1649 | version "0.2.2" 1650 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 1651 | integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 1652 | dependencies: 1653 | is-arrayish "^0.3.1" 1654 | 1655 | source-map-support@^0.5.19: 1656 | version "0.5.19" 1657 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 1658 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 1659 | dependencies: 1660 | buffer-from "^1.0.0" 1661 | source-map "^0.6.0" 1662 | 1663 | source-map@^0.6.0, source-map@^0.6.1: 1664 | version "0.6.1" 1665 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1666 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1667 | 1668 | spdx-correct@^3.0.0: 1669 | version "3.1.1" 1670 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1671 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1672 | dependencies: 1673 | spdx-expression-parse "^3.0.0" 1674 | spdx-license-ids "^3.0.0" 1675 | 1676 | spdx-exceptions@^2.1.0: 1677 | version "2.3.0" 1678 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1679 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1680 | 1681 | spdx-expression-parse@^3.0.0: 1682 | version "3.0.1" 1683 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1684 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1685 | dependencies: 1686 | spdx-exceptions "^2.1.0" 1687 | spdx-license-ids "^3.0.0" 1688 | 1689 | spdx-license-ids@^3.0.0: 1690 | version "3.0.7" 1691 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" 1692 | integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== 1693 | 1694 | sprintf-js@^1.1.2: 1695 | version "1.1.2" 1696 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" 1697 | integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== 1698 | 1699 | sprintf-js@~1.0.2: 1700 | version "1.0.3" 1701 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1702 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1703 | 1704 | stat-mode@^1.0.0: 1705 | version "1.0.0" 1706 | resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" 1707 | integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== 1708 | 1709 | string-width@^3.0.0: 1710 | version "3.1.0" 1711 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1712 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1713 | dependencies: 1714 | emoji-regex "^7.0.1" 1715 | is-fullwidth-code-point "^2.0.0" 1716 | strip-ansi "^5.1.0" 1717 | 1718 | string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: 1719 | version "4.2.2" 1720 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 1721 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 1722 | dependencies: 1723 | emoji-regex "^8.0.0" 1724 | is-fullwidth-code-point "^3.0.0" 1725 | strip-ansi "^6.0.0" 1726 | 1727 | string_decoder@~1.1.1: 1728 | version "1.1.1" 1729 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1730 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1731 | dependencies: 1732 | safe-buffer "~5.1.0" 1733 | 1734 | strip-ansi@^5.1.0: 1735 | version "5.2.0" 1736 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1737 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1738 | dependencies: 1739 | ansi-regex "^4.1.0" 1740 | 1741 | strip-ansi@^6.0.0: 1742 | version "6.0.0" 1743 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1744 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1745 | dependencies: 1746 | ansi-regex "^5.0.0" 1747 | 1748 | strip-indent@^3.0.0: 1749 | version "3.0.0" 1750 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 1751 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 1752 | dependencies: 1753 | min-indent "^1.0.0" 1754 | 1755 | strip-json-comments@~2.0.1: 1756 | version "2.0.1" 1757 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1758 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1759 | 1760 | sumchecker@^3.0.1: 1761 | version "3.0.1" 1762 | resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-3.0.1.tgz#6377e996795abb0b6d348e9b3e1dfb24345a8e42" 1763 | integrity sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg== 1764 | dependencies: 1765 | debug "^4.1.0" 1766 | 1767 | supports-color@^5.3.0, supports-color@^5.4.0: 1768 | version "5.5.0" 1769 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1770 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1771 | dependencies: 1772 | has-flag "^3.0.0" 1773 | 1774 | supports-color@^7.1.0: 1775 | version "7.2.0" 1776 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1777 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1778 | dependencies: 1779 | has-flag "^4.0.0" 1780 | 1781 | svelte-preprocess@^4.6.9: 1782 | version "4.6.9" 1783 | resolved "https://registry.yarnpkg.com/svelte-preprocess/-/svelte-preprocess-4.6.9.tgz#073d923eb351b98b6c6a454ba5feee981cd9dbf5" 1784 | integrity sha512-SROWH0rB0DJ+0Ii264cprmNu/NJyZacs5wFD71ya93Cg/oA2lKHgQm4F6j0EWA4ktFMzeuJJm/eX6fka39hEHA== 1785 | dependencies: 1786 | "@types/pug" "^2.0.4" 1787 | "@types/sass" "^1.16.0" 1788 | detect-indent "^6.0.0" 1789 | strip-indent "^3.0.0" 1790 | 1791 | svelte-routing@^1.5.0: 1792 | version "1.5.0" 1793 | resolved "https://registry.yarnpkg.com/svelte-routing/-/svelte-routing-1.5.0.tgz#a518cf67d8c09dd30a04cf6f9473ce5612fd4c8b" 1794 | integrity sha512-4ftcSO2x5kzCUWQKm9Td6/C+t7lRjMEo72utRO0liS/aWZuRwAXOBl3y+hWZw8tV+DTGElqaAAyi44AuWXcVBg== 1795 | 1796 | svelte@^3.34.0: 1797 | version "3.34.0" 1798 | resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.34.0.tgz#a0195a0db0305d78df87520711317b99e6fb8a26" 1799 | integrity sha512-xWcaQ/J4Yd5k0UWz+ef6i5RW5WP3hNpluEI2qtTTKlMOXERHpVL509O9lIw7sgEn1JjJgTOS+lnnDj99vQ3YqQ== 1800 | 1801 | tailwindcss@^2.0.3: 1802 | version "2.0.3" 1803 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-2.0.3.tgz#f8d07797d1f89dc4b171673c26237b58783c2c86" 1804 | integrity sha512-s8NEqdLBiVbbdL0a5XwTb8jKmIonOuI4RMENEcKLR61jw6SdKvBss7NWZzwCaD+ZIjlgmesv8tmrjXEp7C0eAQ== 1805 | dependencies: 1806 | "@fullhuman/postcss-purgecss" "^3.1.3" 1807 | bytes "^3.0.0" 1808 | chalk "^4.1.0" 1809 | color "^3.1.3" 1810 | detective "^5.2.0" 1811 | didyoumean "^1.2.1" 1812 | fs-extra "^9.1.0" 1813 | html-tags "^3.1.0" 1814 | lodash "^4.17.20" 1815 | modern-normalize "^1.0.0" 1816 | node-emoji "^1.8.1" 1817 | object-hash "^2.1.1" 1818 | postcss-functions "^3" 1819 | postcss-js "^3.0.3" 1820 | postcss-nested "^5.0.1" 1821 | postcss-selector-parser "^6.0.4" 1822 | postcss-value-parser "^4.1.0" 1823 | pretty-hrtime "^1.0.3" 1824 | reduce-css-calc "^2.1.8" 1825 | resolve "^1.19.0" 1826 | 1827 | temp-file@^3.3.7: 1828 | version "3.3.7" 1829 | resolved "https://registry.yarnpkg.com/temp-file/-/temp-file-3.3.7.tgz#686885d635f872748e384e871855958470aeb18a" 1830 | integrity sha512-9tBJKt7GZAQt/Rg0QzVWA8Am8c1EFl+CAv04/aBVqlx5oyfQ508sFIABshQ0xbZu6mBrFLWIUXO/bbLYghW70g== 1831 | dependencies: 1832 | async-exit-hook "^2.0.1" 1833 | fs-extra "^8.1.0" 1834 | 1835 | term-size@^2.1.0: 1836 | version "2.2.1" 1837 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" 1838 | integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== 1839 | 1840 | textarea-caret@^3.1.0: 1841 | version "3.1.0" 1842 | resolved "https://registry.yarnpkg.com/textarea-caret/-/textarea-caret-3.1.0.tgz#5d5a35bb035fd06b2ff0e25d5359e97f2655087f" 1843 | integrity sha512-cXAvzO9pP5CGa6NKx0WYHl+8CHKZs8byMkt3PCJBCmq2a34YA9pO1NrQET5pzeqnBjBdToF5No4rrmkDUgQC2Q== 1844 | 1845 | to-readable-stream@^1.0.0: 1846 | version "1.0.0" 1847 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 1848 | integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 1849 | 1850 | truncate-utf8-bytes@^1.0.0: 1851 | version "1.0.2" 1852 | resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" 1853 | integrity sha1-QFkjkJWS1W94pYGENLC3hInKXys= 1854 | dependencies: 1855 | utf8-byte-length "^1.0.1" 1856 | 1857 | ts-essentials@^7.0.1: 1858 | version "7.0.1" 1859 | resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-7.0.1.tgz#d205508cae0cdadfb73c89503140cf2228389e2d" 1860 | integrity sha512-8lwh3QJtIc1UWhkQtr9XuksXu3O0YQdEE5g79guDfhCaU1FWTDIEDZ1ZSx4HTHUmlJZ8L812j3BZQ4a0aOUkSA== 1861 | 1862 | tunnel@^0.0.6: 1863 | version "0.0.6" 1864 | resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" 1865 | integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== 1866 | 1867 | type-fest@^0.13.1: 1868 | version "0.13.1" 1869 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" 1870 | integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== 1871 | 1872 | type-fest@^0.8.1: 1873 | version "0.8.1" 1874 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1875 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1876 | 1877 | typedarray-to-buffer@^3.1.5: 1878 | version "3.1.5" 1879 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 1880 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 1881 | dependencies: 1882 | is-typedarray "^1.0.0" 1883 | 1884 | typedarray@^0.0.6: 1885 | version "0.0.6" 1886 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1887 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 1888 | 1889 | typescript@^4.2.2: 1890 | version "4.2.2" 1891 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.2.tgz#1450f020618f872db0ea17317d16d8da8ddb8c4c" 1892 | integrity sha512-tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ== 1893 | 1894 | uniq@^1.0.1: 1895 | version "1.0.1" 1896 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 1897 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 1898 | 1899 | unique-string@^2.0.0: 1900 | version "2.0.0" 1901 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" 1902 | integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== 1903 | dependencies: 1904 | crypto-random-string "^2.0.0" 1905 | 1906 | universalify@^0.1.0: 1907 | version "0.1.2" 1908 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 1909 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 1910 | 1911 | universalify@^2.0.0: 1912 | version "2.0.0" 1913 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" 1914 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 1915 | 1916 | update-notifier@^4.1.1: 1917 | version "4.1.3" 1918 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.3.tgz#be86ee13e8ce48fb50043ff72057b5bd598e1ea3" 1919 | integrity sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A== 1920 | dependencies: 1921 | boxen "^4.2.0" 1922 | chalk "^3.0.0" 1923 | configstore "^5.0.1" 1924 | has-yarn "^2.1.0" 1925 | import-lazy "^2.1.0" 1926 | is-ci "^2.0.0" 1927 | is-installed-globally "^0.3.1" 1928 | is-npm "^4.0.0" 1929 | is-yarn-global "^0.3.0" 1930 | latest-version "^5.0.0" 1931 | pupa "^2.0.1" 1932 | semver-diff "^3.1.1" 1933 | xdg-basedir "^4.0.0" 1934 | 1935 | uri-js@^4.2.2: 1936 | version "4.4.1" 1937 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1938 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1939 | dependencies: 1940 | punycode "^2.1.0" 1941 | 1942 | url-parse-lax@^3.0.0: 1943 | version "3.0.0" 1944 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 1945 | integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= 1946 | dependencies: 1947 | prepend-http "^2.0.0" 1948 | 1949 | utf8-byte-length@^1.0.1: 1950 | version "1.0.4" 1951 | resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" 1952 | integrity sha1-9F8VDExm7uloGGUFq5P8u4rWv2E= 1953 | 1954 | util-deprecate@^1.0.2, util-deprecate@~1.0.1: 1955 | version "1.0.2" 1956 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1957 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1958 | 1959 | validate-npm-package-license@^3.0.1: 1960 | version "3.0.4" 1961 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1962 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1963 | dependencies: 1964 | spdx-correct "^3.0.0" 1965 | spdx-expression-parse "^3.0.0" 1966 | 1967 | vite@^2.0.4: 1968 | version "2.0.4" 1969 | resolved "https://registry.yarnpkg.com/vite/-/vite-2.0.4.tgz#063532a4139b59a067297d8ebb5960d450907a09" 1970 | integrity sha512-+PP89D7AKXFE4gps8c5+4eP5yXTh5qCogjdYX7iSsIxbLZAa26JoGSq6OLk0qdb/fqDh7gtJqGiLbG2V6NvkKQ== 1971 | dependencies: 1972 | esbuild "^0.8.52" 1973 | postcss "^8.2.1" 1974 | resolve "^1.19.0" 1975 | rollup "^2.38.5" 1976 | optionalDependencies: 1977 | fsevents "~2.3.1" 1978 | 1979 | widest-line@^3.1.0: 1980 | version "3.1.0" 1981 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 1982 | integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== 1983 | dependencies: 1984 | string-width "^4.0.0" 1985 | 1986 | wrap-ansi@^7.0.0: 1987 | version "7.0.0" 1988 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1989 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1990 | dependencies: 1991 | ansi-styles "^4.0.0" 1992 | string-width "^4.1.0" 1993 | strip-ansi "^6.0.0" 1994 | 1995 | wrappy@1: 1996 | version "1.0.2" 1997 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1998 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1999 | 2000 | write-file-atomic@^3.0.0: 2001 | version "3.0.3" 2002 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 2003 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 2004 | dependencies: 2005 | imurmurhash "^0.1.4" 2006 | is-typedarray "^1.0.0" 2007 | signal-exit "^3.0.2" 2008 | typedarray-to-buffer "^3.1.5" 2009 | 2010 | xdg-basedir@^4.0.0: 2011 | version "4.0.0" 2012 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" 2013 | integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== 2014 | 2015 | xtend@^4.0.2: 2016 | version "4.0.2" 2017 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2018 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2019 | 2020 | y18n@^5.0.5: 2021 | version "5.0.5" 2022 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" 2023 | integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== 2024 | 2025 | yallist@^4.0.0: 2026 | version "4.0.0" 2027 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2028 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2029 | 2030 | yargs-parser@^20.2.2: 2031 | version "20.2.6" 2032 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.6.tgz#69f920addf61aafc0b8b89002f5d66e28f2d8b20" 2033 | integrity sha512-AP1+fQIWSM/sMiET8fyayjx/J+JmTPt2Mr0FkrgqB4todtfa53sOsrSAcIrJRD5XS20bKUwaDIuMkWKCEiQLKA== 2034 | 2035 | yargs@^16.0.3: 2036 | version "16.2.0" 2037 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2038 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2039 | dependencies: 2040 | cliui "^7.0.2" 2041 | escalade "^3.1.1" 2042 | get-caller-file "^2.0.5" 2043 | require-directory "^2.1.1" 2044 | string-width "^4.2.0" 2045 | y18n "^5.0.5" 2046 | yargs-parser "^20.2.2" 2047 | 2048 | yauzl@^2.10.0: 2049 | version "2.10.0" 2050 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" 2051 | integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= 2052 | dependencies: 2053 | buffer-crc32 "~0.2.3" 2054 | fd-slicer "~1.1.0" 2055 | --------------------------------------------------------------------------------