├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── netlify.toml ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── _headers ├── _redirects ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-180x180-solid.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── rubik-v14-latin-700.woff │ ├── rubik-v14-latin-700.woff2 │ ├── rubik-v14-latin-regular.woff │ └── rubik-v14-latin-regular.woff2 ├── img │ ├── aitrack-dark.jpg │ ├── aitrack-light.jpg │ ├── contribute_on_codeberg.png │ ├── demo.png │ ├── icon.svg │ ├── logo-dark.svg │ └── logo-light.svg ├── mstile-150x150.png ├── robots.txt ├── safari-pinned-tab.svg ├── service-worker.js ├── site.webmanifest └── timer-worker.js ├── src ├── App.vue ├── components │ ├── Settings.vue │ ├── Task.vue │ ├── TaskList.vue │ ├── button │ │ ├── BtnDefault.vue │ │ ├── BtnDelete.vue │ │ ├── BtnExport.vue │ │ ├── BtnFAQ.vue │ │ ├── BtnPause.vue │ │ ├── BtnSave.vue │ │ ├── BtnSettings.vue │ │ ├── BtnStart.vue │ │ ├── BtnSwitchTheme.vue │ │ ├── BtnTaskEdit.vue │ │ └── BtnTaskEditSave.vue │ └── input │ │ ├── InputText.vue │ │ └── InputToggle.vue ├── index.css ├── main.js ├── store.js └── utils.js ├── tailwind.config.js └── vite.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [ttntm] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: ['https://www.buymeacoffee.com/ttntm'] 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | -------------------------------------------------------------------------------- /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 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Screenshot](/public/img/demo.png)](https://aitrack.work) 2 | 3 |

aitrack.work

4 | 5 |

6 | A minimal task-based time tracker. 7 |

8 | Built using Vue3 and Vite.js, deployed via Netlify. 9 |

10 | 11 | Mentioned in Awesome Vite.js 12 | 13 |

14 | 15 | ## Run @ `localhost` 16 | 17 | 1. `npm install` 18 | 2. `npm run dev` 19 | 3. Open `localhost:3000` 20 | 21 | ## Contribute 22 | 23 | All future development of this project has moved to Codeberg: 24 | 25 | [![Contribute on Codeberg](/public/img/contribute_on_codeberg.png)](https://codeberg.org/ttntm/itrack) 26 | 27 | Commits are mirrored to GitHub, this project still utilizes GH > Netlify CI/CD for the time being. 28 | 29 | ## Credits 30 | 31 | - Design: [Sahar](https://sahar.design) 32 | - Idea: [abisxir](https://github.com/abisxir) 33 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | aitrack.work 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 23 | 26 | 27 | 28 | 31 |
32 |
33 |
34 | About this project 35 |

A simple task-based time tracker for everyday use.

36 |

Made by ttntm, designed by Sahar, inspired by abisxir.

37 |

© aitrack.work, Code@Codeberg (GPL-3.0)

38 |
39 |
40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [[headers]] 2 | for = "/*" 3 | [headers.values] 4 | Content-Security-Policy = "default-src 'self'; font-src 'self'; img-src *; script-src 'self' 'unsafe-eval' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; object-src 'none'; frame-ancestors 'none'" 5 | Referrer-Policy = "same-origin" 6 | Strict-Transport-Security = "max-age=31536000; includeSubDomains" 7 | X-Content-Type-Options = "nosniff" 8 | X-Frame-Options = "DENY" 9 | X-XSS-Protection = "1; mode=block" -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aitrack", 3 | "version": "2.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "aitrack", 9 | "version": "2.0.0", 10 | "dependencies": { 11 | "file-saver": "^2.0.5", 12 | "papaparse": "^5.5.2", 13 | "vue": "^3.0.4", 14 | "vuedraggable": "^4.1.0" 15 | }, 16 | "devDependencies": { 17 | "@vitejs/plugin-vue": "^1.2.1", 18 | "@vue/compiler-sfc": "^3.0.4", 19 | "tailwindcss": "^1.8.10", 20 | "vite": "^2.1.0" 21 | } 22 | }, 23 | "node_modules/@babel/helper-validator-identifier": { 24 | "version": "7.14.5", 25 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz", 26 | "integrity": "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==", 27 | "engines": { 28 | "node": ">=6.9.0" 29 | } 30 | }, 31 | "node_modules/@babel/parser": { 32 | "version": "7.14.7", 33 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz", 34 | "integrity": "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==", 35 | "bin": { 36 | "parser": "bin/babel-parser.js" 37 | }, 38 | "engines": { 39 | "node": ">=6.0.0" 40 | } 41 | }, 42 | "node_modules/@babel/types": { 43 | "version": "7.14.5", 44 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz", 45 | "integrity": "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==", 46 | "dependencies": { 47 | "@babel/helper-validator-identifier": "^7.14.5", 48 | "to-fast-properties": "^2.0.0" 49 | }, 50 | "engines": { 51 | "node": ">=6.9.0" 52 | } 53 | }, 54 | "node_modules/@fullhuman/postcss-purgecss": { 55 | "version": "2.3.0", 56 | "resolved": "https://registry.npmjs.org/@fullhuman/postcss-purgecss/-/postcss-purgecss-2.3.0.tgz", 57 | "integrity": "sha512-qnKm5dIOyPGJ70kPZ5jiz0I9foVOic0j+cOzNDoo8KoCf6HjicIZ99UfO2OmE7vCYSKAAepEwJtNzpiiZAh9xw==", 58 | "dev": true, 59 | "dependencies": { 60 | "postcss": "7.0.32", 61 | "purgecss": "^2.3.0" 62 | } 63 | }, 64 | "node_modules/@fullhuman/postcss-purgecss/node_modules/ansi-styles": { 65 | "version": "3.2.1", 66 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 67 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 68 | "dev": true, 69 | "dependencies": { 70 | "color-convert": "^1.9.0" 71 | }, 72 | "engines": { 73 | "node": ">=4" 74 | } 75 | }, 76 | "node_modules/@fullhuman/postcss-purgecss/node_modules/chalk": { 77 | "version": "2.4.2", 78 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 79 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 80 | "dev": true, 81 | "dependencies": { 82 | "ansi-styles": "^3.2.1", 83 | "escape-string-regexp": "^1.0.5", 84 | "supports-color": "^5.3.0" 85 | }, 86 | "engines": { 87 | "node": ">=4" 88 | } 89 | }, 90 | "node_modules/@fullhuman/postcss-purgecss/node_modules/chalk/node_modules/supports-color": { 91 | "version": "5.5.0", 92 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 93 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 94 | "dev": true, 95 | "dependencies": { 96 | "has-flag": "^3.0.0" 97 | }, 98 | "engines": { 99 | "node": ">=4" 100 | } 101 | }, 102 | "node_modules/@fullhuman/postcss-purgecss/node_modules/color-convert": { 103 | "version": "1.9.3", 104 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 105 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 106 | "dev": true, 107 | "dependencies": { 108 | "color-name": "1.1.3" 109 | } 110 | }, 111 | "node_modules/@fullhuman/postcss-purgecss/node_modules/color-name": { 112 | "version": "1.1.3", 113 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 114 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 115 | "dev": true 116 | }, 117 | "node_modules/@fullhuman/postcss-purgecss/node_modules/has-flag": { 118 | "version": "3.0.0", 119 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 120 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 121 | "dev": true, 122 | "engines": { 123 | "node": ">=4" 124 | } 125 | }, 126 | "node_modules/@fullhuman/postcss-purgecss/node_modules/postcss": { 127 | "version": "7.0.32", 128 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", 129 | "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", 130 | "dev": true, 131 | "dependencies": { 132 | "chalk": "^2.4.2", 133 | "source-map": "^0.6.1", 134 | "supports-color": "^6.1.0" 135 | }, 136 | "engines": { 137 | "node": ">=6.0.0" 138 | }, 139 | "funding": { 140 | "type": "tidelift", 141 | "url": "https://tidelift.com/funding/github/npm/postcss" 142 | } 143 | }, 144 | "node_modules/@fullhuman/postcss-purgecss/node_modules/supports-color": { 145 | "version": "6.1.0", 146 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", 147 | "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", 148 | "dev": true, 149 | "dependencies": { 150 | "has-flag": "^3.0.0" 151 | }, 152 | "engines": { 153 | "node": ">=6" 154 | } 155 | }, 156 | "node_modules/@types/estree": { 157 | "version": "0.0.48", 158 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz", 159 | "integrity": "sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew==", 160 | "dev": true 161 | }, 162 | "node_modules/@vitejs/plugin-vue": { 163 | "version": "1.2.5", 164 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.2.5.tgz", 165 | "integrity": "sha512-GIR31mdXTEfvElmBUaRhDc5v7lfdkEdawWQqJRiaRL/5qKsH+xusukglkvJz5y7+c6dEpxgmvcATv2BbB7+fzQ==", 166 | "dev": true, 167 | "engines": { 168 | "node": ">=12.0.0" 169 | }, 170 | "peerDependencies": { 171 | "@vue/compiler-sfc": "^3.0.8" 172 | } 173 | }, 174 | "node_modules/@vue/compiler-core": { 175 | "version": "3.1.4", 176 | "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.1.4.tgz", 177 | "integrity": "sha512-TnUz+1z0y74O/A4YKAbzsdUfamyHV73MihrEfvettWpm9bQKVoZd1nEmR1cGN9LsXWlwAvVQBetBlWdOjmQO5Q==", 178 | "dependencies": { 179 | "@babel/parser": "^7.12.0", 180 | "@babel/types": "^7.12.0", 181 | "@vue/shared": "3.1.4", 182 | "estree-walker": "^2.0.1", 183 | "source-map": "^0.6.1" 184 | } 185 | }, 186 | "node_modules/@vue/compiler-dom": { 187 | "version": "3.1.4", 188 | "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.1.4.tgz", 189 | "integrity": "sha512-3tG2ScHkghhUBuFwl9KgyZhrS8CPFZsO7hUDekJgIp5b1OMkROr4AvxHu6rRMl4WkyvYkvidFNBS2VfOnwa6Kw==", 190 | "dependencies": { 191 | "@vue/compiler-core": "3.1.4", 192 | "@vue/shared": "3.1.4" 193 | } 194 | }, 195 | "node_modules/@vue/compiler-sfc": { 196 | "version": "3.1.4", 197 | "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.1.4.tgz", 198 | "integrity": "sha512-4KDQg60Khy3SgnF+V/TB2NZqzmM4TyGRmzsxqG1SebGdMSecCweFDSlI/F1vDYk6dKiCHgmpoT9A1sLxswkJ0A==", 199 | "dev": true, 200 | "dependencies": { 201 | "@babel/parser": "^7.13.9", 202 | "@babel/types": "^7.13.0", 203 | "@types/estree": "^0.0.48", 204 | "@vue/compiler-core": "3.1.4", 205 | "@vue/compiler-dom": "3.1.4", 206 | "@vue/compiler-ssr": "3.1.4", 207 | "@vue/shared": "3.1.4", 208 | "consolidate": "^0.16.0", 209 | "estree-walker": "^2.0.1", 210 | "hash-sum": "^2.0.0", 211 | "lru-cache": "^5.1.1", 212 | "magic-string": "^0.25.7", 213 | "merge-source-map": "^1.1.0", 214 | "postcss": "^8.1.10", 215 | "postcss-modules": "^4.0.0", 216 | "postcss-selector-parser": "^6.0.4", 217 | "source-map": "^0.6.1" 218 | }, 219 | "peerDependencies": { 220 | "vue": "3.1.4" 221 | } 222 | }, 223 | "node_modules/@vue/compiler-ssr": { 224 | "version": "3.1.4", 225 | "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.1.4.tgz", 226 | "integrity": "sha512-Box8fCuCFPp0FuimIswjDkjwiSDCBkHvt/xVALyFkYCiIMWv2eR53fIjmlsnEHhcBuZ+VgRC+UanCTcKvSA1gA==", 227 | "dev": true, 228 | "dependencies": { 229 | "@vue/compiler-dom": "3.1.4", 230 | "@vue/shared": "3.1.4" 231 | } 232 | }, 233 | "node_modules/@vue/reactivity": { 234 | "version": "3.1.4", 235 | "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.4.tgz", 236 | "integrity": "sha512-YDlgii2Cr9yAoKVZFzgY4j0mYlVT73986X3e5SPp6ifqckSEoFSUWXZK2Tb53TB/9qO29BEEbspnKD3m3wAwkA==", 237 | "dependencies": { 238 | "@vue/shared": "3.1.4" 239 | } 240 | }, 241 | "node_modules/@vue/runtime-core": { 242 | "version": "3.1.4", 243 | "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.1.4.tgz", 244 | "integrity": "sha512-qmVJgJuFxfT7M4qHQ4M6KqhKC66fjuswK+aBivE8dWiZ2rtIGl9gtJGpwqwjQEcKEBTOfvvrtrwBncYArJUO8Q==", 245 | "dependencies": { 246 | "@vue/reactivity": "3.1.4", 247 | "@vue/shared": "3.1.4" 248 | } 249 | }, 250 | "node_modules/@vue/runtime-dom": { 251 | "version": "3.1.4", 252 | "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.1.4.tgz", 253 | "integrity": "sha512-vbmwgTxku1BU87Kw7r29adv0OIrDXCW0PslOPQT0O/9R5SqcXgS94Yj6zsztDjvghegenwIAPNLlDR1Auh5s+w==", 254 | "dependencies": { 255 | "@vue/runtime-core": "3.1.4", 256 | "@vue/shared": "3.1.4", 257 | "csstype": "^2.6.8" 258 | } 259 | }, 260 | "node_modules/@vue/shared": { 261 | "version": "3.1.4", 262 | "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.4.tgz", 263 | "integrity": "sha512-6O45kZAmkLvzGLToBxEz4lR2W6kXohCtebV2UxjH9GXjd8X9AhEn68FN9eNanFtWNzvgw1hqd6HkPRVQalqf7Q==" 264 | }, 265 | "node_modules/acorn": { 266 | "version": "7.4.1", 267 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", 268 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", 269 | "dev": true, 270 | "bin": { 271 | "acorn": "bin/acorn" 272 | }, 273 | "engines": { 274 | "node": ">=0.4.0" 275 | } 276 | }, 277 | "node_modules/acorn-node": { 278 | "version": "1.8.2", 279 | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", 280 | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", 281 | "dev": true, 282 | "dependencies": { 283 | "acorn": "^7.0.0", 284 | "acorn-walk": "^7.0.0", 285 | "xtend": "^4.0.2" 286 | } 287 | }, 288 | "node_modules/acorn-walk": { 289 | "version": "7.2.0", 290 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", 291 | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", 292 | "dev": true, 293 | "engines": { 294 | "node": ">=0.4.0" 295 | } 296 | }, 297 | "node_modules/ansi-styles": { 298 | "version": "4.3.0", 299 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 300 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 301 | "dev": true, 302 | "dependencies": { 303 | "color-convert": "^2.0.1" 304 | }, 305 | "engines": { 306 | "node": ">=8" 307 | }, 308 | "funding": { 309 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 310 | } 311 | }, 312 | "node_modules/autoprefixer": { 313 | "version": "9.8.8", 314 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", 315 | "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", 316 | "dev": true, 317 | "license": "MIT", 318 | "dependencies": { 319 | "browserslist": "^4.12.0", 320 | "caniuse-lite": "^1.0.30001109", 321 | "normalize-range": "^0.1.2", 322 | "num2fraction": "^1.2.2", 323 | "picocolors": "^0.2.1", 324 | "postcss": "^7.0.32", 325 | "postcss-value-parser": "^4.1.0" 326 | }, 327 | "bin": { 328 | "autoprefixer": "bin/autoprefixer" 329 | }, 330 | "funding": { 331 | "type": "tidelift", 332 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 333 | } 334 | }, 335 | "node_modules/autoprefixer/node_modules/picocolors": { 336 | "version": "0.2.1", 337 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", 338 | "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", 339 | "dev": true, 340 | "license": "ISC" 341 | }, 342 | "node_modules/autoprefixer/node_modules/postcss": { 343 | "version": "7.0.39", 344 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", 345 | "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", 346 | "dev": true, 347 | "license": "MIT", 348 | "dependencies": { 349 | "picocolors": "^0.2.1", 350 | "source-map": "^0.6.1" 351 | }, 352 | "engines": { 353 | "node": ">=6.0.0" 354 | }, 355 | "funding": { 356 | "type": "opencollective", 357 | "url": "https://opencollective.com/postcss/" 358 | } 359 | }, 360 | "node_modules/balanced-match": { 361 | "version": "1.0.2", 362 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 363 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 364 | "dev": true 365 | }, 366 | "node_modules/big.js": { 367 | "version": "5.2.2", 368 | "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", 369 | "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", 370 | "dev": true, 371 | "engines": { 372 | "node": "*" 373 | } 374 | }, 375 | "node_modules/bluebird": { 376 | "version": "3.7.2", 377 | "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", 378 | "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", 379 | "dev": true 380 | }, 381 | "node_modules/brace-expansion": { 382 | "version": "1.1.11", 383 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 384 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 385 | "dev": true, 386 | "dependencies": { 387 | "balanced-match": "^1.0.0", 388 | "concat-map": "0.0.1" 389 | } 390 | }, 391 | "node_modules/browserslist": { 392 | "version": "4.16.6", 393 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", 394 | "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", 395 | "dev": true, 396 | "dependencies": { 397 | "caniuse-lite": "^1.0.30001219", 398 | "colorette": "^1.2.2", 399 | "electron-to-chromium": "^1.3.723", 400 | "escalade": "^3.1.1", 401 | "node-releases": "^1.1.71" 402 | }, 403 | "bin": { 404 | "browserslist": "cli.js" 405 | }, 406 | "engines": { 407 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 408 | }, 409 | "funding": { 410 | "type": "opencollective", 411 | "url": "https://opencollective.com/browserslist" 412 | } 413 | }, 414 | "node_modules/bytes": { 415 | "version": "3.1.0", 416 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 417 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", 418 | "dev": true, 419 | "engines": { 420 | "node": ">= 0.8" 421 | } 422 | }, 423 | "node_modules/camelcase-css": { 424 | "version": "2.0.1", 425 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 426 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 427 | "dev": true, 428 | "engines": { 429 | "node": ">= 6" 430 | } 431 | }, 432 | "node_modules/caniuse-lite": { 433 | "version": "1.0.30001707", 434 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001707.tgz", 435 | "integrity": "sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==", 436 | "dev": true, 437 | "funding": [ 438 | { 439 | "type": "opencollective", 440 | "url": "https://opencollective.com/browserslist" 441 | }, 442 | { 443 | "type": "tidelift", 444 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 445 | }, 446 | { 447 | "type": "github", 448 | "url": "https://github.com/sponsors/ai" 449 | } 450 | ], 451 | "license": "CC-BY-4.0" 452 | }, 453 | "node_modules/chalk": { 454 | "version": "4.1.1", 455 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", 456 | "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", 457 | "dev": true, 458 | "dependencies": { 459 | "ansi-styles": "^4.1.0", 460 | "supports-color": "^7.1.0" 461 | }, 462 | "engines": { 463 | "node": ">=10" 464 | }, 465 | "funding": { 466 | "url": "https://github.com/chalk/chalk?sponsor=1" 467 | } 468 | }, 469 | "node_modules/color": { 470 | "version": "3.1.3", 471 | "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", 472 | "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", 473 | "dev": true, 474 | "dependencies": { 475 | "color-convert": "^1.9.1", 476 | "color-string": "^1.5.4" 477 | } 478 | }, 479 | "node_modules/color-convert": { 480 | "version": "2.0.1", 481 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 482 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 483 | "dev": true, 484 | "dependencies": { 485 | "color-name": "~1.1.4" 486 | }, 487 | "engines": { 488 | "node": ">=7.0.0" 489 | } 490 | }, 491 | "node_modules/color-name": { 492 | "version": "1.1.4", 493 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 494 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 495 | "dev": true 496 | }, 497 | "node_modules/color-string": { 498 | "version": "1.5.5", 499 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", 500 | "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", 501 | "dev": true, 502 | "dependencies": { 503 | "color-name": "^1.0.0", 504 | "simple-swizzle": "^0.2.2" 505 | } 506 | }, 507 | "node_modules/color/node_modules/color-convert": { 508 | "version": "1.9.3", 509 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 510 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 511 | "dev": true, 512 | "dependencies": { 513 | "color-name": "1.1.3" 514 | } 515 | }, 516 | "node_modules/color/node_modules/color-name": { 517 | "version": "1.1.3", 518 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 519 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 520 | "dev": true 521 | }, 522 | "node_modules/colorette": { 523 | "version": "1.2.2", 524 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", 525 | "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", 526 | "dev": true 527 | }, 528 | "node_modules/commander": { 529 | "version": "5.1.0", 530 | "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", 531 | "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", 532 | "dev": true, 533 | "engines": { 534 | "node": ">= 6" 535 | } 536 | }, 537 | "node_modules/concat-map": { 538 | "version": "0.0.1", 539 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 540 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 541 | "dev": true 542 | }, 543 | "node_modules/consolidate": { 544 | "version": "0.16.0", 545 | "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.16.0.tgz", 546 | "integrity": "sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==", 547 | "deprecated": "Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog", 548 | "dev": true, 549 | "dependencies": { 550 | "bluebird": "^3.7.2" 551 | }, 552 | "engines": { 553 | "node": ">= 0.10.0" 554 | } 555 | }, 556 | "node_modules/css-unit-converter": { 557 | "version": "1.1.2", 558 | "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", 559 | "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==", 560 | "dev": true 561 | }, 562 | "node_modules/cssesc": { 563 | "version": "3.0.0", 564 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 565 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 566 | "dev": true, 567 | "bin": { 568 | "cssesc": "bin/cssesc" 569 | }, 570 | "engines": { 571 | "node": ">=4" 572 | } 573 | }, 574 | "node_modules/csstype": { 575 | "version": "2.6.17", 576 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.17.tgz", 577 | "integrity": "sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A==" 578 | }, 579 | "node_modules/defined": { 580 | "version": "1.0.0", 581 | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", 582 | "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", 583 | "dev": true 584 | }, 585 | "node_modules/detective": { 586 | "version": "5.2.0", 587 | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", 588 | "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", 589 | "dev": true, 590 | "dependencies": { 591 | "acorn-node": "^1.6.1", 592 | "defined": "^1.0.0", 593 | "minimist": "^1.1.1" 594 | }, 595 | "bin": { 596 | "detective": "bin/detective.js" 597 | }, 598 | "engines": { 599 | "node": ">=0.8.0" 600 | } 601 | }, 602 | "node_modules/electron-to-chromium": { 603 | "version": "1.3.776", 604 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.776.tgz", 605 | "integrity": "sha512-V0w7eFSBoFPpdw4xexjVPZ770UDZIevSwkkj4W97XbE3IsCsTRFpa7/yXGZ88EOQAUEA09JMMsWK0xsw0kRAYw==", 606 | "dev": true 607 | }, 608 | "node_modules/emojis-list": { 609 | "version": "3.0.0", 610 | "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", 611 | "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", 612 | "dev": true, 613 | "engines": { 614 | "node": ">= 4" 615 | } 616 | }, 617 | "node_modules/esbuild": { 618 | "version": "0.9.7", 619 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz", 620 | "integrity": "sha512-VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg==", 621 | "dev": true, 622 | "hasInstallScript": true, 623 | "license": "MIT", 624 | "bin": { 625 | "esbuild": "bin/esbuild" 626 | } 627 | }, 628 | "node_modules/escalade": { 629 | "version": "3.1.1", 630 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 631 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 632 | "dev": true, 633 | "engines": { 634 | "node": ">=6" 635 | } 636 | }, 637 | "node_modules/escape-string-regexp": { 638 | "version": "1.0.5", 639 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 640 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 641 | "dev": true, 642 | "engines": { 643 | "node": ">=0.8.0" 644 | } 645 | }, 646 | "node_modules/estree-walker": { 647 | "version": "2.0.2", 648 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 649 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" 650 | }, 651 | "node_modules/file-saver": { 652 | "version": "2.0.5", 653 | "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz", 654 | "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==", 655 | "license": "MIT" 656 | }, 657 | "node_modules/fs-extra": { 658 | "version": "8.1.0", 659 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", 660 | "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", 661 | "dev": true, 662 | "dependencies": { 663 | "graceful-fs": "^4.2.0", 664 | "jsonfile": "^4.0.0", 665 | "universalify": "^0.1.0" 666 | }, 667 | "engines": { 668 | "node": ">=6 <7 || >=8" 669 | } 670 | }, 671 | "node_modules/fs.realpath": { 672 | "version": "1.0.0", 673 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 674 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", 675 | "dev": true 676 | }, 677 | "node_modules/fsevents": { 678 | "version": "2.3.3", 679 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 680 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 681 | "dev": true, 682 | "hasInstallScript": true, 683 | "license": "MIT", 684 | "optional": true, 685 | "os": [ 686 | "darwin" 687 | ], 688 | "engines": { 689 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 690 | } 691 | }, 692 | "node_modules/function-bind": { 693 | "version": "1.1.2", 694 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 695 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 696 | "dev": true, 697 | "license": "MIT", 698 | "funding": { 699 | "url": "https://github.com/sponsors/ljharb" 700 | } 701 | }, 702 | "node_modules/generic-names": { 703 | "version": "2.0.1", 704 | "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz", 705 | "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==", 706 | "dev": true, 707 | "dependencies": { 708 | "loader-utils": "^1.1.0" 709 | } 710 | }, 711 | "node_modules/glob": { 712 | "version": "7.1.7", 713 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 714 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 715 | "deprecated": "Glob versions prior to v9 are no longer supported", 716 | "dev": true, 717 | "dependencies": { 718 | "fs.realpath": "^1.0.0", 719 | "inflight": "^1.0.4", 720 | "inherits": "2", 721 | "minimatch": "^3.0.4", 722 | "once": "^1.3.0", 723 | "path-is-absolute": "^1.0.0" 724 | }, 725 | "engines": { 726 | "node": "*" 727 | }, 728 | "funding": { 729 | "url": "https://github.com/sponsors/isaacs" 730 | } 731 | }, 732 | "node_modules/graceful-fs": { 733 | "version": "4.2.6", 734 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", 735 | "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", 736 | "dev": true 737 | }, 738 | "node_modules/has-flag": { 739 | "version": "4.0.0", 740 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 741 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 742 | "dev": true, 743 | "engines": { 744 | "node": ">=8" 745 | } 746 | }, 747 | "node_modules/hash-sum": { 748 | "version": "2.0.0", 749 | "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", 750 | "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", 751 | "dev": true 752 | }, 753 | "node_modules/hasown": { 754 | "version": "2.0.2", 755 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 756 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 757 | "dev": true, 758 | "license": "MIT", 759 | "dependencies": { 760 | "function-bind": "^1.1.2" 761 | }, 762 | "engines": { 763 | "node": ">= 0.4" 764 | } 765 | }, 766 | "node_modules/html-tags": { 767 | "version": "3.1.0", 768 | "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", 769 | "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", 770 | "dev": true, 771 | "engines": { 772 | "node": ">=8" 773 | } 774 | }, 775 | "node_modules/icss-replace-symbols": { 776 | "version": "1.1.0", 777 | "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", 778 | "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=", 779 | "dev": true 780 | }, 781 | "node_modules/icss-utils": { 782 | "version": "5.1.0", 783 | "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", 784 | "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", 785 | "dev": true, 786 | "engines": { 787 | "node": "^10 || ^12 || >= 14" 788 | }, 789 | "peerDependencies": { 790 | "postcss": "^8.1.0" 791 | } 792 | }, 793 | "node_modules/inflight": { 794 | "version": "1.0.6", 795 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 796 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 797 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 798 | "dev": true, 799 | "dependencies": { 800 | "once": "^1.3.0", 801 | "wrappy": "1" 802 | } 803 | }, 804 | "node_modules/inherits": { 805 | "version": "2.0.4", 806 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 807 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 808 | "dev": true 809 | }, 810 | "node_modules/is-arrayish": { 811 | "version": "0.3.2", 812 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 813 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", 814 | "dev": true 815 | }, 816 | "node_modules/is-core-module": { 817 | "version": "2.16.1", 818 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 819 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 820 | "dev": true, 821 | "license": "MIT", 822 | "dependencies": { 823 | "hasown": "^2.0.2" 824 | }, 825 | "engines": { 826 | "node": ">= 0.4" 827 | }, 828 | "funding": { 829 | "url": "https://github.com/sponsors/ljharb" 830 | } 831 | }, 832 | "node_modules/json5": { 833 | "version": "1.0.2", 834 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 835 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 836 | "dev": true, 837 | "license": "MIT", 838 | "dependencies": { 839 | "minimist": "^1.2.0" 840 | }, 841 | "bin": { 842 | "json5": "lib/cli.js" 843 | } 844 | }, 845 | "node_modules/jsonfile": { 846 | "version": "4.0.0", 847 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", 848 | "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", 849 | "dev": true, 850 | "optionalDependencies": { 851 | "graceful-fs": "^4.1.6" 852 | } 853 | }, 854 | "node_modules/loader-utils": { 855 | "version": "1.4.2", 856 | "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", 857 | "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", 858 | "dev": true, 859 | "license": "MIT", 860 | "dependencies": { 861 | "big.js": "^5.2.2", 862 | "emojis-list": "^3.0.0", 863 | "json5": "^1.0.1" 864 | }, 865 | "engines": { 866 | "node": ">=4.0.0" 867 | } 868 | }, 869 | "node_modules/lodash": { 870 | "version": "4.17.21", 871 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 872 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 873 | "dev": true 874 | }, 875 | "node_modules/lodash.camelcase": { 876 | "version": "4.3.0", 877 | "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", 878 | "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", 879 | "dev": true 880 | }, 881 | "node_modules/lodash.toarray": { 882 | "version": "4.4.0", 883 | "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", 884 | "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=", 885 | "dev": true 886 | }, 887 | "node_modules/lru-cache": { 888 | "version": "5.1.1", 889 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 890 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 891 | "dev": true, 892 | "dependencies": { 893 | "yallist": "^3.0.2" 894 | } 895 | }, 896 | "node_modules/magic-string": { 897 | "version": "0.25.7", 898 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", 899 | "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", 900 | "dev": true, 901 | "dependencies": { 902 | "sourcemap-codec": "^1.4.4" 903 | } 904 | }, 905 | "node_modules/merge-source-map": { 906 | "version": "1.1.0", 907 | "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", 908 | "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", 909 | "dev": true, 910 | "dependencies": { 911 | "source-map": "^0.6.1" 912 | } 913 | }, 914 | "node_modules/minimatch": { 915 | "version": "3.1.2", 916 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 917 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 918 | "dev": true, 919 | "license": "ISC", 920 | "dependencies": { 921 | "brace-expansion": "^1.1.7" 922 | }, 923 | "engines": { 924 | "node": "*" 925 | } 926 | }, 927 | "node_modules/minimist": { 928 | "version": "1.2.8", 929 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 930 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 931 | "dev": true, 932 | "license": "MIT", 933 | "funding": { 934 | "url": "https://github.com/sponsors/ljharb" 935 | } 936 | }, 937 | "node_modules/nanoid": { 938 | "version": "3.3.11", 939 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 940 | "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 941 | "dev": true, 942 | "funding": [ 943 | { 944 | "type": "github", 945 | "url": "https://github.com/sponsors/ai" 946 | } 947 | ], 948 | "license": "MIT", 949 | "bin": { 950 | "nanoid": "bin/nanoid.cjs" 951 | }, 952 | "engines": { 953 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 954 | } 955 | }, 956 | "node_modules/node-emoji": { 957 | "version": "1.10.0", 958 | "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz", 959 | "integrity": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==", 960 | "dev": true, 961 | "dependencies": { 962 | "lodash.toarray": "^4.4.0" 963 | } 964 | }, 965 | "node_modules/node-releases": { 966 | "version": "1.1.73", 967 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", 968 | "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==", 969 | "dev": true 970 | }, 971 | "node_modules/normalize-range": { 972 | "version": "0.1.2", 973 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 974 | "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", 975 | "dev": true, 976 | "engines": { 977 | "node": ">=0.10.0" 978 | } 979 | }, 980 | "node_modules/normalize.css": { 981 | "version": "8.0.1", 982 | "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz", 983 | "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==", 984 | "dev": true 985 | }, 986 | "node_modules/num2fraction": { 987 | "version": "1.2.2", 988 | "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", 989 | "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", 990 | "dev": true 991 | }, 992 | "node_modules/object-assign": { 993 | "version": "4.1.1", 994 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 995 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", 996 | "dev": true, 997 | "engines": { 998 | "node": ">=0.10.0" 999 | } 1000 | }, 1001 | "node_modules/object-hash": { 1002 | "version": "2.2.0", 1003 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", 1004 | "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", 1005 | "dev": true, 1006 | "engines": { 1007 | "node": ">= 6" 1008 | } 1009 | }, 1010 | "node_modules/once": { 1011 | "version": "1.4.0", 1012 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1013 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 1014 | "dev": true, 1015 | "dependencies": { 1016 | "wrappy": "1" 1017 | } 1018 | }, 1019 | "node_modules/papaparse": { 1020 | "version": "5.5.2", 1021 | "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.5.2.tgz", 1022 | "integrity": "sha512-PZXg8UuAc4PcVwLosEEDYjPyfWnTEhOrUfdv+3Bx+NuAb+5NhDmXzg5fHWmdCh1mP5p7JAZfFr3IMQfcntNAdA==", 1023 | "license": "MIT" 1024 | }, 1025 | "node_modules/path-is-absolute": { 1026 | "version": "1.0.1", 1027 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1028 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 1029 | "dev": true, 1030 | "engines": { 1031 | "node": ">=0.10.0" 1032 | } 1033 | }, 1034 | "node_modules/path-parse": { 1035 | "version": "1.0.7", 1036 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1037 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1038 | "dev": true 1039 | }, 1040 | "node_modules/picocolors": { 1041 | "version": "1.1.1", 1042 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 1043 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 1044 | "dev": true, 1045 | "license": "ISC" 1046 | }, 1047 | "node_modules/postcss": { 1048 | "version": "8.5.3", 1049 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 1050 | "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 1051 | "dev": true, 1052 | "funding": [ 1053 | { 1054 | "type": "opencollective", 1055 | "url": "https://opencollective.com/postcss/" 1056 | }, 1057 | { 1058 | "type": "tidelift", 1059 | "url": "https://tidelift.com/funding/github/npm/postcss" 1060 | }, 1061 | { 1062 | "type": "github", 1063 | "url": "https://github.com/sponsors/ai" 1064 | } 1065 | ], 1066 | "license": "MIT", 1067 | "dependencies": { 1068 | "nanoid": "^3.3.8", 1069 | "picocolors": "^1.1.1", 1070 | "source-map-js": "^1.2.1" 1071 | }, 1072 | "engines": { 1073 | "node": "^10 || ^12 || >=14" 1074 | } 1075 | }, 1076 | "node_modules/postcss-functions": { 1077 | "version": "3.0.0", 1078 | "resolved": "https://registry.npmjs.org/postcss-functions/-/postcss-functions-3.0.0.tgz", 1079 | "integrity": "sha512-N5yWXWKA+uhpLQ9ZhBRl2bIAdM6oVJYpDojuI1nF2SzXBimJcdjFwiAouBVbO5VuOF3qA6BSFWFc3wXbbj72XQ==", 1080 | "dev": true, 1081 | "license": "MIT", 1082 | "dependencies": { 1083 | "glob": "^7.1.2", 1084 | "object-assign": "^4.1.1", 1085 | "postcss": "^6.0.9", 1086 | "postcss-value-parser": "^3.3.0" 1087 | } 1088 | }, 1089 | "node_modules/postcss-functions/node_modules/ansi-styles": { 1090 | "version": "3.2.1", 1091 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 1092 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 1093 | "dev": true, 1094 | "dependencies": { 1095 | "color-convert": "^1.9.0" 1096 | }, 1097 | "engines": { 1098 | "node": ">=4" 1099 | } 1100 | }, 1101 | "node_modules/postcss-functions/node_modules/chalk": { 1102 | "version": "2.4.2", 1103 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 1104 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 1105 | "dev": true, 1106 | "dependencies": { 1107 | "ansi-styles": "^3.2.1", 1108 | "escape-string-regexp": "^1.0.5", 1109 | "supports-color": "^5.3.0" 1110 | }, 1111 | "engines": { 1112 | "node": ">=4" 1113 | } 1114 | }, 1115 | "node_modules/postcss-functions/node_modules/color-convert": { 1116 | "version": "1.9.3", 1117 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1118 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1119 | "dev": true, 1120 | "dependencies": { 1121 | "color-name": "1.1.3" 1122 | } 1123 | }, 1124 | "node_modules/postcss-functions/node_modules/color-name": { 1125 | "version": "1.1.3", 1126 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1127 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 1128 | "dev": true 1129 | }, 1130 | "node_modules/postcss-functions/node_modules/has-flag": { 1131 | "version": "3.0.0", 1132 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1133 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 1134 | "dev": true, 1135 | "engines": { 1136 | "node": ">=4" 1137 | } 1138 | }, 1139 | "node_modules/postcss-functions/node_modules/postcss": { 1140 | "version": "6.0.23", 1141 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", 1142 | "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", 1143 | "dev": true, 1144 | "dependencies": { 1145 | "chalk": "^2.4.1", 1146 | "source-map": "^0.6.1", 1147 | "supports-color": "^5.4.0" 1148 | }, 1149 | "engines": { 1150 | "node": ">=4.0.0" 1151 | } 1152 | }, 1153 | "node_modules/postcss-functions/node_modules/postcss-value-parser": { 1154 | "version": "3.3.1", 1155 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", 1156 | "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", 1157 | "dev": true 1158 | }, 1159 | "node_modules/postcss-functions/node_modules/supports-color": { 1160 | "version": "5.5.0", 1161 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1162 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1163 | "dev": true, 1164 | "dependencies": { 1165 | "has-flag": "^3.0.0" 1166 | }, 1167 | "engines": { 1168 | "node": ">=4" 1169 | } 1170 | }, 1171 | "node_modules/postcss-js": { 1172 | "version": "2.0.3", 1173 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-2.0.3.tgz", 1174 | "integrity": "sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w==", 1175 | "dev": true, 1176 | "dependencies": { 1177 | "camelcase-css": "^2.0.1", 1178 | "postcss": "^7.0.18" 1179 | } 1180 | }, 1181 | "node_modules/postcss-js/node_modules/picocolors": { 1182 | "version": "0.2.1", 1183 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", 1184 | "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", 1185 | "dev": true, 1186 | "license": "ISC" 1187 | }, 1188 | "node_modules/postcss-js/node_modules/postcss": { 1189 | "version": "7.0.39", 1190 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", 1191 | "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", 1192 | "dev": true, 1193 | "license": "MIT", 1194 | "dependencies": { 1195 | "picocolors": "^0.2.1", 1196 | "source-map": "^0.6.1" 1197 | }, 1198 | "engines": { 1199 | "node": ">=6.0.0" 1200 | }, 1201 | "funding": { 1202 | "type": "opencollective", 1203 | "url": "https://opencollective.com/postcss/" 1204 | } 1205 | }, 1206 | "node_modules/postcss-modules": { 1207 | "version": "4.1.3", 1208 | "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.1.3.tgz", 1209 | "integrity": "sha512-dBT39hrXe4OAVYJe/2ZuIZ9BzYhOe7t+IhedYeQ2OxKwDpAGlkEN/fR0fGnrbx4BvgbMReRX4hCubYK9cE/pJQ==", 1210 | "dev": true, 1211 | "dependencies": { 1212 | "generic-names": "^2.0.1", 1213 | "icss-replace-symbols": "^1.1.0", 1214 | "lodash.camelcase": "^4.3.0", 1215 | "postcss-modules-extract-imports": "^3.0.0", 1216 | "postcss-modules-local-by-default": "^4.0.0", 1217 | "postcss-modules-scope": "^3.0.0", 1218 | "postcss-modules-values": "^4.0.0", 1219 | "string-hash": "^1.1.1" 1220 | }, 1221 | "peerDependencies": { 1222 | "postcss": "^8.0.0" 1223 | } 1224 | }, 1225 | "node_modules/postcss-modules-extract-imports": { 1226 | "version": "3.0.0", 1227 | "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", 1228 | "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", 1229 | "dev": true, 1230 | "engines": { 1231 | "node": "^10 || ^12 || >= 14" 1232 | }, 1233 | "peerDependencies": { 1234 | "postcss": "^8.1.0" 1235 | } 1236 | }, 1237 | "node_modules/postcss-modules-local-by-default": { 1238 | "version": "4.0.0", 1239 | "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", 1240 | "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", 1241 | "dev": true, 1242 | "dependencies": { 1243 | "icss-utils": "^5.0.0", 1244 | "postcss-selector-parser": "^6.0.2", 1245 | "postcss-value-parser": "^4.1.0" 1246 | }, 1247 | "engines": { 1248 | "node": "^10 || ^12 || >= 14" 1249 | }, 1250 | "peerDependencies": { 1251 | "postcss": "^8.1.0" 1252 | } 1253 | }, 1254 | "node_modules/postcss-modules-scope": { 1255 | "version": "3.0.0", 1256 | "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", 1257 | "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", 1258 | "dev": true, 1259 | "dependencies": { 1260 | "postcss-selector-parser": "^6.0.4" 1261 | }, 1262 | "engines": { 1263 | "node": "^10 || ^12 || >= 14" 1264 | }, 1265 | "peerDependencies": { 1266 | "postcss": "^8.1.0" 1267 | } 1268 | }, 1269 | "node_modules/postcss-modules-values": { 1270 | "version": "4.0.0", 1271 | "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", 1272 | "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", 1273 | "dev": true, 1274 | "dependencies": { 1275 | "icss-utils": "^5.0.0" 1276 | }, 1277 | "engines": { 1278 | "node": "^10 || ^12 || >= 14" 1279 | }, 1280 | "peerDependencies": { 1281 | "postcss": "^8.1.0" 1282 | } 1283 | }, 1284 | "node_modules/postcss-nested": { 1285 | "version": "4.2.3", 1286 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-4.2.3.tgz", 1287 | "integrity": "sha512-rOv0W1HquRCamWy2kFl3QazJMMe1ku6rCFoAAH+9AcxdbpDeBr6k968MLWuLjvjMcGEip01ak09hKOEgpK9hvw==", 1288 | "dev": true, 1289 | "dependencies": { 1290 | "postcss": "^7.0.32", 1291 | "postcss-selector-parser": "^6.0.2" 1292 | } 1293 | }, 1294 | "node_modules/postcss-nested/node_modules/picocolors": { 1295 | "version": "0.2.1", 1296 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", 1297 | "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", 1298 | "dev": true, 1299 | "license": "ISC" 1300 | }, 1301 | "node_modules/postcss-nested/node_modules/postcss": { 1302 | "version": "7.0.39", 1303 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", 1304 | "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", 1305 | "dev": true, 1306 | "license": "MIT", 1307 | "dependencies": { 1308 | "picocolors": "^0.2.1", 1309 | "source-map": "^0.6.1" 1310 | }, 1311 | "engines": { 1312 | "node": ">=6.0.0" 1313 | }, 1314 | "funding": { 1315 | "type": "opencollective", 1316 | "url": "https://opencollective.com/postcss/" 1317 | } 1318 | }, 1319 | "node_modules/postcss-selector-parser": { 1320 | "version": "6.0.6", 1321 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", 1322 | "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", 1323 | "dev": true, 1324 | "dependencies": { 1325 | "cssesc": "^3.0.0", 1326 | "util-deprecate": "^1.0.2" 1327 | }, 1328 | "engines": { 1329 | "node": ">=4" 1330 | } 1331 | }, 1332 | "node_modules/postcss-value-parser": { 1333 | "version": "4.1.0", 1334 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", 1335 | "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", 1336 | "dev": true 1337 | }, 1338 | "node_modules/pretty-hrtime": { 1339 | "version": "1.0.3", 1340 | "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", 1341 | "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", 1342 | "dev": true, 1343 | "engines": { 1344 | "node": ">= 0.8" 1345 | } 1346 | }, 1347 | "node_modules/purgecss": { 1348 | "version": "2.3.0", 1349 | "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-2.3.0.tgz", 1350 | "integrity": "sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==", 1351 | "dev": true, 1352 | "dependencies": { 1353 | "commander": "^5.0.0", 1354 | "glob": "^7.0.0", 1355 | "postcss": "7.0.32", 1356 | "postcss-selector-parser": "^6.0.2" 1357 | }, 1358 | "bin": { 1359 | "purgecss": "bin/purgecss" 1360 | } 1361 | }, 1362 | "node_modules/purgecss/node_modules/ansi-styles": { 1363 | "version": "3.2.1", 1364 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 1365 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 1366 | "dev": true, 1367 | "dependencies": { 1368 | "color-convert": "^1.9.0" 1369 | }, 1370 | "engines": { 1371 | "node": ">=4" 1372 | } 1373 | }, 1374 | "node_modules/purgecss/node_modules/chalk": { 1375 | "version": "2.4.2", 1376 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 1377 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 1378 | "dev": true, 1379 | "dependencies": { 1380 | "ansi-styles": "^3.2.1", 1381 | "escape-string-regexp": "^1.0.5", 1382 | "supports-color": "^5.3.0" 1383 | }, 1384 | "engines": { 1385 | "node": ">=4" 1386 | } 1387 | }, 1388 | "node_modules/purgecss/node_modules/chalk/node_modules/supports-color": { 1389 | "version": "5.5.0", 1390 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1391 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1392 | "dev": true, 1393 | "dependencies": { 1394 | "has-flag": "^3.0.0" 1395 | }, 1396 | "engines": { 1397 | "node": ">=4" 1398 | } 1399 | }, 1400 | "node_modules/purgecss/node_modules/color-convert": { 1401 | "version": "1.9.3", 1402 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1403 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1404 | "dev": true, 1405 | "dependencies": { 1406 | "color-name": "1.1.3" 1407 | } 1408 | }, 1409 | "node_modules/purgecss/node_modules/color-name": { 1410 | "version": "1.1.3", 1411 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1412 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 1413 | "dev": true 1414 | }, 1415 | "node_modules/purgecss/node_modules/has-flag": { 1416 | "version": "3.0.0", 1417 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1418 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 1419 | "dev": true, 1420 | "engines": { 1421 | "node": ">=4" 1422 | } 1423 | }, 1424 | "node_modules/purgecss/node_modules/postcss": { 1425 | "version": "7.0.32", 1426 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", 1427 | "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", 1428 | "dev": true, 1429 | "dependencies": { 1430 | "chalk": "^2.4.2", 1431 | "source-map": "^0.6.1", 1432 | "supports-color": "^6.1.0" 1433 | }, 1434 | "engines": { 1435 | "node": ">=6.0.0" 1436 | }, 1437 | "funding": { 1438 | "type": "tidelift", 1439 | "url": "https://tidelift.com/funding/github/npm/postcss" 1440 | } 1441 | }, 1442 | "node_modules/purgecss/node_modules/supports-color": { 1443 | "version": "6.1.0", 1444 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", 1445 | "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", 1446 | "dev": true, 1447 | "dependencies": { 1448 | "has-flag": "^3.0.0" 1449 | }, 1450 | "engines": { 1451 | "node": ">=6" 1452 | } 1453 | }, 1454 | "node_modules/reduce-css-calc": { 1455 | "version": "2.1.8", 1456 | "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", 1457 | "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", 1458 | "dev": true, 1459 | "dependencies": { 1460 | "css-unit-converter": "^1.1.1", 1461 | "postcss-value-parser": "^3.3.0" 1462 | } 1463 | }, 1464 | "node_modules/reduce-css-calc/node_modules/postcss-value-parser": { 1465 | "version": "3.3.1", 1466 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", 1467 | "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", 1468 | "dev": true 1469 | }, 1470 | "node_modules/resolve": { 1471 | "version": "1.22.10", 1472 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 1473 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 1474 | "dev": true, 1475 | "license": "MIT", 1476 | "dependencies": { 1477 | "is-core-module": "^2.16.0", 1478 | "path-parse": "^1.0.7", 1479 | "supports-preserve-symlinks-flag": "^1.0.0" 1480 | }, 1481 | "bin": { 1482 | "resolve": "bin/resolve" 1483 | }, 1484 | "engines": { 1485 | "node": ">= 0.4" 1486 | }, 1487 | "funding": { 1488 | "url": "https://github.com/sponsors/ljharb" 1489 | } 1490 | }, 1491 | "node_modules/rollup": { 1492 | "version": "2.77.3", 1493 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.77.3.tgz", 1494 | "integrity": "sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==", 1495 | "dev": true, 1496 | "license": "MIT", 1497 | "bin": { 1498 | "rollup": "dist/bin/rollup" 1499 | }, 1500 | "engines": { 1501 | "node": ">=10.0.0" 1502 | }, 1503 | "optionalDependencies": { 1504 | "fsevents": "~2.3.2" 1505 | } 1506 | }, 1507 | "node_modules/simple-swizzle": { 1508 | "version": "0.2.2", 1509 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 1510 | "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", 1511 | "dev": true, 1512 | "dependencies": { 1513 | "is-arrayish": "^0.3.1" 1514 | } 1515 | }, 1516 | "node_modules/sortablejs": { 1517 | "version": "1.14.0", 1518 | "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz", 1519 | "integrity": "sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==" 1520 | }, 1521 | "node_modules/source-map": { 1522 | "version": "0.6.1", 1523 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 1524 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 1525 | "engines": { 1526 | "node": ">=0.10.0" 1527 | } 1528 | }, 1529 | "node_modules/source-map-js": { 1530 | "version": "1.2.1", 1531 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 1532 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 1533 | "dev": true, 1534 | "license": "BSD-3-Clause", 1535 | "engines": { 1536 | "node": ">=0.10.0" 1537 | } 1538 | }, 1539 | "node_modules/sourcemap-codec": { 1540 | "version": "1.4.8", 1541 | "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", 1542 | "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", 1543 | "deprecated": "Please use @jridgewell/sourcemap-codec instead", 1544 | "dev": true 1545 | }, 1546 | "node_modules/string-hash": { 1547 | "version": "1.1.3", 1548 | "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", 1549 | "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=", 1550 | "dev": true 1551 | }, 1552 | "node_modules/supports-color": { 1553 | "version": "7.2.0", 1554 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1555 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1556 | "dev": true, 1557 | "dependencies": { 1558 | "has-flag": "^4.0.0" 1559 | }, 1560 | "engines": { 1561 | "node": ">=8" 1562 | } 1563 | }, 1564 | "node_modules/supports-preserve-symlinks-flag": { 1565 | "version": "1.0.0", 1566 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 1567 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 1568 | "dev": true, 1569 | "license": "MIT", 1570 | "engines": { 1571 | "node": ">= 0.4" 1572 | }, 1573 | "funding": { 1574 | "url": "https://github.com/sponsors/ljharb" 1575 | } 1576 | }, 1577 | "node_modules/tailwindcss": { 1578 | "version": "1.9.6", 1579 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-1.9.6.tgz", 1580 | "integrity": "sha512-nY8WYM/RLPqGsPEGEV2z63riyQPcHYZUJpAwdyBzVpxQHOHqHE+F/fvbCeXhdF1+TA5l72vSkZrtYCB9hRcwkQ==", 1581 | "dev": true, 1582 | "dependencies": { 1583 | "@fullhuman/postcss-purgecss": "^2.1.2", 1584 | "autoprefixer": "^9.4.5", 1585 | "browserslist": "^4.12.0", 1586 | "bytes": "^3.0.0", 1587 | "chalk": "^3.0.0 || ^4.0.0", 1588 | "color": "^3.1.2", 1589 | "detective": "^5.2.0", 1590 | "fs-extra": "^8.0.0", 1591 | "html-tags": "^3.1.0", 1592 | "lodash": "^4.17.20", 1593 | "node-emoji": "^1.8.1", 1594 | "normalize.css": "^8.0.1", 1595 | "object-hash": "^2.0.3", 1596 | "postcss": "^7.0.11", 1597 | "postcss-functions": "^3.0.0", 1598 | "postcss-js": "^2.0.0", 1599 | "postcss-nested": "^4.1.1", 1600 | "postcss-selector-parser": "^6.0.0", 1601 | "postcss-value-parser": "^4.1.0", 1602 | "pretty-hrtime": "^1.0.3", 1603 | "reduce-css-calc": "^2.1.6", 1604 | "resolve": "^1.14.2" 1605 | }, 1606 | "bin": { 1607 | "tailwind": "lib/cli.js", 1608 | "tailwindcss": "lib/cli.js" 1609 | }, 1610 | "engines": { 1611 | "node": ">=8.9.0" 1612 | } 1613 | }, 1614 | "node_modules/tailwindcss/node_modules/picocolors": { 1615 | "version": "0.2.1", 1616 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", 1617 | "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", 1618 | "dev": true, 1619 | "license": "ISC" 1620 | }, 1621 | "node_modules/tailwindcss/node_modules/postcss": { 1622 | "version": "7.0.39", 1623 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", 1624 | "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", 1625 | "dev": true, 1626 | "license": "MIT", 1627 | "dependencies": { 1628 | "picocolors": "^0.2.1", 1629 | "source-map": "^0.6.1" 1630 | }, 1631 | "engines": { 1632 | "node": ">=6.0.0" 1633 | }, 1634 | "funding": { 1635 | "type": "opencollective", 1636 | "url": "https://opencollective.com/postcss/" 1637 | } 1638 | }, 1639 | "node_modules/to-fast-properties": { 1640 | "version": "2.0.0", 1641 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 1642 | "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", 1643 | "engines": { 1644 | "node": ">=4" 1645 | } 1646 | }, 1647 | "node_modules/universalify": { 1648 | "version": "0.1.2", 1649 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", 1650 | "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", 1651 | "dev": true, 1652 | "engines": { 1653 | "node": ">= 4.0.0" 1654 | } 1655 | }, 1656 | "node_modules/util-deprecate": { 1657 | "version": "1.0.2", 1658 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 1659 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", 1660 | "dev": true 1661 | }, 1662 | "node_modules/vite": { 1663 | "version": "2.1.0", 1664 | "resolved": "https://registry.npmjs.org/vite/-/vite-2.1.0.tgz", 1665 | "integrity": "sha512-qWYmX8slkv91C3hWA2iu0o0ZvFbO2dSfWIN4dbMfSeMdNn+XeirkGWU3dy5/W1Nv13cQZvVoMTl8zyC13VFRZQ==", 1666 | "dev": true, 1667 | "license": "MIT", 1668 | "dependencies": { 1669 | "esbuild": "^0.9.2", 1670 | "postcss": "^8.2.1", 1671 | "resolve": "^1.19.0", 1672 | "rollup": "^2.38.5" 1673 | }, 1674 | "bin": { 1675 | "vite": "bin/vite.js" 1676 | }, 1677 | "engines": { 1678 | "node": ">=12.0.0" 1679 | }, 1680 | "optionalDependencies": { 1681 | "fsevents": "~2.3.1" 1682 | } 1683 | }, 1684 | "node_modules/vue": { 1685 | "version": "3.1.4", 1686 | "resolved": "https://registry.npmjs.org/vue/-/vue-3.1.4.tgz", 1687 | "integrity": "sha512-p8dcdyeCgmaAiZsbLyDkmOLcFGZb/jEVdCLW65V68LRCXTNX8jKsgah2F7OZ/v/Ai2V0Fb1MNO0vz/GFqsPVMA==", 1688 | "dependencies": { 1689 | "@vue/compiler-dom": "3.1.4", 1690 | "@vue/runtime-dom": "3.1.4", 1691 | "@vue/shared": "3.1.4" 1692 | } 1693 | }, 1694 | "node_modules/vuedraggable": { 1695 | "version": "4.1.0", 1696 | "resolved": "https://registry.npmjs.org/vuedraggable/-/vuedraggable-4.1.0.tgz", 1697 | "integrity": "sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==", 1698 | "dependencies": { 1699 | "sortablejs": "1.14.0" 1700 | }, 1701 | "peerDependencies": { 1702 | "vue": "^3.0.1" 1703 | } 1704 | }, 1705 | "node_modules/wrappy": { 1706 | "version": "1.0.2", 1707 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1708 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", 1709 | "dev": true 1710 | }, 1711 | "node_modules/xtend": { 1712 | "version": "4.0.2", 1713 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 1714 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", 1715 | "dev": true, 1716 | "engines": { 1717 | "node": ">=0.4" 1718 | } 1719 | }, 1720 | "node_modules/yallist": { 1721 | "version": "3.1.1", 1722 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 1723 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 1724 | "dev": true 1725 | } 1726 | } 1727 | } 1728 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aitrack", 3 | "version": "2.0.0", 4 | "scripts": { 5 | "dev": "vite", 6 | "build": "vite build" 7 | }, 8 | "dependencies": { 9 | "file-saver": "^2.0.5", 10 | "papaparse": "^5.5.2", 11 | "vue": "^3.0.4", 12 | "vuedraggable": "^4.1.0" 13 | }, 14 | "devDependencies": { 15 | "@vitejs/plugin-vue": "^1.2.1", 16 | "@vue/compiler-sfc": "^3.0.4", 17 | "tailwindcss": "^1.8.10", 18 | "vite": "^2.1.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- 1 | /* 2 | X-XSS-Protection: 1; mode=block 3 | X-Frame-Options: DENY 4 | X-Content-Type-Options: nosniff 5 | Referrer-Policy: no-referrer 6 | Permissions-Policy: document-domain=() 7 | Content-Security-Policy: default-src 'self'; font-src 'self'; img-src *; script-src 'self' 'unsafe-eval' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; object-src 'none'; frame-ancestors 'none' -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-180x180-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/apple-180x180-solid.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #2b5797 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/rubik-v14-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/fonts/rubik-v14-latin-700.woff -------------------------------------------------------------------------------- /public/fonts/rubik-v14-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/fonts/rubik-v14-latin-700.woff2 -------------------------------------------------------------------------------- /public/fonts/rubik-v14-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/fonts/rubik-v14-latin-regular.woff -------------------------------------------------------------------------------- /public/fonts/rubik-v14-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/fonts/rubik-v14-latin-regular.woff2 -------------------------------------------------------------------------------- /public/img/aitrack-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/img/aitrack-dark.jpg -------------------------------------------------------------------------------- /public/img/aitrack-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/img/aitrack-light.jpg -------------------------------------------------------------------------------- /public/img/contribute_on_codeberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/img/contribute_on_codeberg.png -------------------------------------------------------------------------------- /public/img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/img/demo.png -------------------------------------------------------------------------------- /public/img/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/img/logo-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/img/logo-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttntm/itrack/691dad3b25119a1f303975344ef12f7b9fa52552/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | 3 | User-agent: GPTBot 4 | Disallow: / 5 | -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | Created by potrace 1.11, written by Peter Selinger 2001-2013 9 | 10 | 12 | 15 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- 1 | // Licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication 2 | // http://creativecommons.org/publicdomain/zero/1.0/ 3 | 4 | // HTML files: try the network first, then the cache. 5 | // Other files: try the cache first, then the network. 6 | // Both: cache a fresh version if possible. 7 | // (beware: the cache will grow and grow; there's no cleanup) 8 | 9 | const cacheName = 'files'; 10 | 11 | addEventListener('fetch', fetchEvent => { 12 | const request = fetchEvent.request; 13 | if (request.method !== 'GET') { 14 | return; 15 | } 16 | fetchEvent.respondWith(async function() { 17 | const fetchPromise = fetch(request); 18 | fetchEvent.waitUntil(async function() { 19 | const responseFromFetch = await fetchPromise; 20 | const responseCopy = responseFromFetch.clone(); 21 | const myCache = await caches.open(cacheName); 22 | return myCache.put(request, responseCopy); 23 | }()); 24 | if (request.headers.get('Accept').includes('text/html')) { 25 | try { 26 | return await fetchPromise; 27 | } 28 | catch(error) { 29 | return caches.match(request); 30 | } 31 | } else { 32 | const responseFromCache = await caches.match(request); 33 | return responseFromCache || fetchPromise; 34 | } 35 | }()); 36 | }); -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aitrack", 3 | "short_name": "aitrack", 4 | "icons": [ 5 | { 6 | "src": "/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | }, 10 | { 11 | "src": "/android-chrome-512x512.png", 12 | "sizes": "512x512", 13 | "type": "image/png" 14 | } 15 | ], 16 | "theme_color": "#1c1c1c", 17 | "background_color": "#1c1c1c", 18 | "display": "standalone", 19 | "start_url": "https://aitrack.work" 20 | } -------------------------------------------------------------------------------- /public/timer-worker.js: -------------------------------------------------------------------------------- 1 | onmessage = (msg) => { 2 | let increment; 3 | let total = msg.data.total; 4 | 5 | increment = setInterval(() => { 6 | total++; 7 | postMessage(total); 8 | }, 1000); 9 | } -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 84 | 85 | -------------------------------------------------------------------------------- /src/components/Settings.vue: -------------------------------------------------------------------------------- 1 | 59 | 60 | -------------------------------------------------------------------------------- /src/components/Task.vue: -------------------------------------------------------------------------------- 1 | 104 | 105 | -------------------------------------------------------------------------------- /src/components/TaskList.vue: -------------------------------------------------------------------------------- 1 | 92 | 93 | 143 | 144 | -------------------------------------------------------------------------------- /src/components/button/BtnDefault.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/button/BtnDelete.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /src/components/button/BtnExport.vue: -------------------------------------------------------------------------------- 1 | 24 | 25 | 39 | -------------------------------------------------------------------------------- /src/components/button/BtnFAQ.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/button/BtnPause.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /src/components/button/BtnSave.vue: -------------------------------------------------------------------------------- 1 | 39 | 40 | 63 | -------------------------------------------------------------------------------- /src/components/button/BtnSettings.vue: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /src/components/button/BtnStart.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/components/button/BtnSwitchTheme.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | -------------------------------------------------------------------------------- /src/components/button/BtnTaskEdit.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/button/BtnTaskEditSave.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/input/InputText.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | -------------------------------------------------------------------------------- /src/components/input/InputToggle.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | /* rubik-regular - latin */ 2 | @font-face { 3 | font-family: 'Rubik'; 4 | font-style: normal; 5 | font-weight: 400; 6 | font-display: swap; 7 | src: local(''), 8 | url('/fonts/rubik-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ 9 | url('/fonts/rubik-v14-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ 10 | } 11 | 12 | /* rubik-700 - latin */ 13 | @font-face { 14 | font-family: 'Rubik'; 15 | font-style: normal; 16 | font-weight: 700; 17 | font-display: swap; 18 | src: local(''), 19 | url('/fonts/rubik-v14-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ 20 | url('/fonts/rubik-v14-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ 21 | } 22 | 23 | 24 | :root { 25 | --primary: #55FBFF; 26 | --secondary: #012B48; 27 | --gray-light: #F6F6F6; 28 | --gray-mid: #C5CADC; 29 | --gray-dark: #959EBB; 30 | --bodyText: var(--secondary); 31 | --bgColor: var(--gray-light); 32 | --buttonColor: var(--secondary); 33 | --buttonText: var(--primary); 34 | --buttonHoverColor: var(--primary); 35 | --buttonHoverText: var(--secondary); 36 | --inputColor: transparent; 37 | --inputBorder: var(--gray-mid); 38 | --inputHoverBorder: var(--secondary); 39 | --inputHoverColor: #fff; 40 | --taskCard: transparent; 41 | --taskText: inherit; 42 | --taskCardBorder: transparent; 43 | --taskCardHover: #fff; 44 | --taskCardHoverBorder: transparent; 45 | --taskCardActive: var(--taskCardHover); 46 | --taskCardActiveBorder: var(--gray-mid); 47 | --taskCardActiveHoverBorder: var(--secondary); 48 | --settingsBG: #fff; 49 | --settingsBorder: transparent; 50 | --shadowColorA: rgba(0, 0, 0, 0.1); 51 | --shadowColorB: rgba(0, 0, 0, 0.06); 52 | --shadowLgColorB: rgba(0, 0, 0, 0.05); 53 | --shadowXlColorB: rgba(0, 0, 0, 0.04); 54 | } 55 | 56 | [data-theme="dark"] { 57 | --primary: #30EAEE; 58 | --secondary: #140E24; 59 | --bodyText: var(--gray-mid); 60 | --bgColor: var(--secondary); 61 | --buttonColor: var(--primary); 62 | --buttonText: var(--secondary); 63 | --buttonHoverColor: var(--secondary); 64 | --buttonHoverText: var(--primary); 65 | --inputBorder: var(--gray-dark); 66 | --inputHoverBorder: var(--primary); 67 | --inputHoverColor: transparent; 68 | --taskText: var(--gray-light); 69 | --taskCardBorder: #363636; 70 | --taskCardHover: transparent; 71 | --taskCardHoverBorder: var(--gray-dark); 72 | --taskCardActive: transparent; 73 | --taskCardActiveBorder: var(--gray-dark); 74 | --taskCardActiveHoverBorder: var(--primary); 75 | --settingsBG: var(--secondary); 76 | --settingsBorder: var(--gray-dark); 77 | --shadowColorA: rgba(240, 240, 240, 0.1); 78 | --shadowColorB: rgba(240, 240, 240, 0.06); 79 | --shadowLgColorB: rgba(240, 240, 240, 0.05); 80 | --shadowXlColorB: rgba(240, 240, 240, 0.04); 81 | } 82 | 83 | @tailwind base; 84 | 85 | @tailwind components; 86 | 87 | * { 88 | -webkit-tap-highlight-color: rgba(0,0,0,0); 89 | -webkit-tap-highlight-color: transparent; 90 | } 91 | 92 | @media (prefers-reduced-motion: reduce) { 93 | * { 94 | animation-duration: 0.01ms !important; 95 | animation-iteration-count: 1 !important; 96 | transition-duration: 0.01ms !important; 97 | scroll-behavior: auto !important; 98 | } 99 | } 100 | 101 | body { 102 | @apply font-sans; 103 | background-color: var(--bgColor); 104 | color: var(--bodyText); 105 | } 106 | 107 | /* scrollbar styles */ 108 | 109 | @media(min-width: 576px) { 110 | body::-webkit-scrollbar-track 111 | { 112 | box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 113 | -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 114 | background-color: var(--bgColor); 115 | } 116 | 117 | body::-webkit-scrollbar 118 | { 119 | width: 6px; 120 | background-color: var(--bgColor); 121 | } 122 | 123 | body::-webkit-scrollbar-thumb 124 | { 125 | background-color: var(--buttonColor); 126 | border-radius: 99999px; 127 | } 128 | } 129 | 130 | .grab { 131 | cursor: grab; 132 | } 133 | 134 | .grabbing * { 135 | cursor: grabbing; 136 | } 137 | 138 | footer a:hover { 139 | @apply underline; 140 | } 141 | 142 | /* BUTTONS -------------------------------------------------------------------------------- */ 143 | .icon { 144 | @apply pointer-events-none; 145 | } 146 | 147 | button:disabled { 148 | @apply cursor-not-allowed; 149 | } 150 | 151 | .btn { 152 | @apply flex items-center justify-center rounded-lg uppercase font-bold; 153 | } 154 | 155 | .btn:focus { 156 | outline: none; 157 | @apply shadow-outline; 158 | } 159 | 160 | .btn-default { 161 | @apply border border-transparent px-8 py-2; 162 | background-color: var(--buttonColor); 163 | color: var(--buttonText); 164 | box-shadow: 0 1px 3px 0 var(--shadowColorA), 0 1px 2px 0 var(--shadowColorB); 165 | } 166 | 167 | .btn-scale:active { 168 | transform: scale(0.9); 169 | } 170 | 171 | .btn-muted { 172 | @apply flex-shrink-0 text-gray-mid rounded-full w-8 h-8; 173 | } 174 | 175 | /* BTN CONTROLS -------------------------------------------------------------------------------- */ 176 | .btn-control { 177 | @apply absolute border border-transparent rounded-full w-8 h-8; 178 | top: 50%; 179 | left: 50%; 180 | transform: translate(-50%, -50%); 181 | background-color: var(--buttonColor); 182 | color: var(--buttonText); 183 | box-shadow: 0 1px 3px 0 var(--shadowColorA), 0 1px 2px 0 var(--shadowColorB); 184 | } 185 | 186 | .control-active { 187 | @apply text-secondary bg-primary; 188 | } 189 | 190 | /* BTN SETTINGS -------------------------------------------------------------------------------- */ 191 | .btn-settings { 192 | @apply flex items-center justify-center rounded-full text-gray-mid w-8 h-8 mx-auto; 193 | } 194 | 195 | @media(min-width: 768px) { 196 | .btn-settings { 197 | @apply absolute top-0 right-0 m-8; 198 | } 199 | } 200 | 201 | .btn-settings:focus { 202 | outline: none; 203 | @apply shadow-outline; 204 | } 205 | 206 | /* BTN THEME SWITCH -------------------------------------------------------------------------------- */ 207 | .btn-theme-switch { 208 | @apply hidden; 209 | } 210 | 211 | @media(min-width: 1024px) { 212 | .btn-theme-switch { 213 | @apply fixed bottom-0 right-0 flex items-center justify-center rounded-full text-gray-mid w-8 h-8 m-8; 214 | } 215 | 216 | .btn-theme-switch:hover { 217 | @apply text-gray-dark; 218 | } 219 | 220 | .btn-theme-switch:focus { 221 | outline: none; 222 | @apply shadow-outline; 223 | } 224 | } 225 | 226 | /* BTN SAVE -------------------------------------------------------------------------------- */ 227 | .inner-enter-active, 228 | .inner-leave-active { 229 | transition: all .5s ease; 230 | } 231 | 232 | .inner-enter-from, 233 | .inner-leave-to { 234 | opacity: 0; 235 | transform: translateX(-50px); 236 | } 237 | 238 | /* INPUT TEXT -------------------------------------------------------------------------------- */ 239 | .input-task { 240 | @apply border-b-2 rounded-lg px-3 py-2; 241 | background-color: var(--inputColor); 242 | border-color: var(--inputBorder); 243 | } 244 | 245 | .input-task:focus { 246 | outline: none; 247 | @apply shadow-outline; 248 | background-color: var(--inputHoverColor); 249 | border-color: var(--inputHoverBorder); 250 | } 251 | 252 | /* TASKLIST -------------------------------------------------------------------------------- */ 253 | .tasklist-header { 254 | @apply flex items-center justify-between flex-wrap; 255 | } 256 | 257 | .new-task { 258 | @apply flex flex-col; 259 | } 260 | 261 | @media(min-width: 768px) { 262 | .new-task { 263 | @apply flex-row items-center justify-between; 264 | } 265 | } 266 | 267 | .list-enter-active, 268 | .list-leave-active { 269 | opacity: 1; 270 | transition: all 0.5s ease; 271 | } 272 | 273 | /* .list-move { 274 | transition: transform 0.5s ease; 275 | } */ 276 | 277 | .list-enter-from, 278 | .list-leave-to { 279 | opacity: 0; 280 | transform: translateY(30px); 281 | } 282 | 283 | /* TASK ITEMS -------------------------------------------------------------------------------- */ 284 | .task-item { 285 | @apply flex flex-col rounded border; 286 | background-color: var(--taskCard); 287 | color: var(--taskText); 288 | border-color: var(--taskCardBorder); 289 | box-shadow: 0 1px 3px 0 var(--shadowColorA), 0 1px 2px 0 var(--shadowColorB); 290 | } 291 | 292 | @media(min-width: 768px) { 293 | .task-item { 294 | @apply flex-row items-center justify-between; 295 | } 296 | } 297 | 298 | .task-item:hover { 299 | background-color: var(--taskCardHover); 300 | border-color: var(--taskCardHoverBorder); 301 | } 302 | 303 | .active { 304 | background-color: var(--taskCardActive); 305 | border-color: var(--taskCardActiveBorder); 306 | box-shadow: 0 10px 15px -3px var(--shadowColorA), 0 4px 6px -2px var(--shadowLgColorB); 307 | transform: scale(1.05); 308 | } 309 | 310 | .task-item.active:hover { 311 | border-color: var(--taskCardActiveHoverBorder); 312 | } 313 | 314 | .separator { 315 | background-color: var(--taskCardActiveBorder); 316 | } 317 | 318 | .fade-enter-active, 319 | .fade-leave-active { 320 | max-height: 2rem; 321 | opacity: 1; 322 | transition: all .6s ease; 323 | } 324 | 325 | .fade-enter-from, 326 | .fade-leave-to { 327 | max-heigth: 0; 328 | opacity: 0; 329 | } 330 | 331 | .btn-edit-enter { 332 | @apply mr-2; 333 | } 334 | 335 | @media(min-width: 1024px) { 336 | .btn-edit-enter { 337 | @apply w-0 opacity-0 mr-0; 338 | transition: width .5s ease-in-out, opacity .25s ease, margin .5s ease-in-out; 339 | } 340 | .task-name:hover .btn-edit-enter, 341 | .btn-edit-enter:focus { 342 | @apply w-8 opacity-100 mr-2; 343 | } 344 | } 345 | 346 | /* SETTINGS MODAL -------------------------------------------------------------------------------- */ 347 | 348 | .settings { 349 | @apply absolute top-0 right-0 max-w-md border rounded-lg m-8 z-50; 350 | background-color: var(--settingsBG); 351 | border-color: var(--settingsBorder); 352 | box-shadow: 0 10px 15px -3px var(--shadowColorA), 0 4px 6px -2px var(--shadowLgColorB); 353 | width: calc(100% - 4rem); 354 | } 355 | 356 | .modal-enter-active, 357 | .modal-leave-active { 358 | opacity: 1; 359 | transition: all 0.6s ease; 360 | } 361 | 362 | .modal-enter-from, 363 | .modal-leave-to { 364 | opacity: 0; 365 | transform: translateY(-30px); 366 | } 367 | 368 | .modal-inner-enter-active, 369 | .modal-inner-leave-active { 370 | height: auto; 371 | max-height: auto; 372 | opacity: 1; 373 | transition: height 0.75s ease; 374 | } 375 | 376 | .modal-inner-enter-from, 377 | .modal-inner-leave-to { 378 | height: 0; 379 | max-height: 0; 380 | opacity: 0; 381 | } 382 | 383 | /* ---------- HOVER STYLES ---------- */ 384 | /* Styles that shouldn't trigger on touch devices where :hover doesn't work properly = doesn't unset itself */ 385 | /* See: https://stackoverflow.com/questions/23885255/how-to-remove-ignore-hover-css-style-on-touch-devices */ 386 | 387 | @media (hover: hover) and (pointer: fine) { 388 | *:hover { 389 | transition: all .35s ease; 390 | } 391 | 392 | .btn-default:hover { 393 | @apply shadow-none; 394 | background-color: var(--buttonHoverColor); 395 | color: var(--buttonHoverText); 396 | border-color: var(--buttonHoverText); 397 | } 398 | 399 | .btn-muted:hover { 400 | @apply text-secondary bg-gray-mid; 401 | } 402 | 403 | .btn-control:hover { 404 | background-color: var(--buttonHoverColor); 405 | color: var(--buttonHoverText); 406 | border-color: var(--buttonHoverText); 407 | } 408 | 409 | .control-active:hover { 410 | @apply text-primary bg-secondary; 411 | } 412 | 413 | .btn-settings:hover { 414 | @apply text-gray-dark; 415 | } 416 | 417 | .input-task:hover { 418 | background-color: var(--inputHoverColor); 419 | border-color: var(--inputHoverBorder); 420 | } 421 | } 422 | 423 | @tailwind utilities; 424 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import App from '@/App.vue' 3 | import('@/index.css') 4 | 5 | const app = createApp(App) 6 | 7 | let escHandler = null 8 | let handleOutsideClick = null 9 | 10 | app.directive('click-outside', { 11 | beforeMount(el, binding, vnode) { 12 | handleOutsideClick = (e) => { 13 | e.stopPropagation() 14 | if(!el.contains(e.target) && !e.target.classList.contains('click-outside-ignore')) { 15 | binding.value() 16 | } 17 | } 18 | document.addEventListener('click', handleOutsideClick) 19 | document.addEventListener('touchstart', handleOutsideClick) 20 | }, 21 | beforeUnmount() { 22 | document.removeEventListener('click', handleOutsideClick) 23 | document.removeEventListener('touchstart', handleOutsideClick) 24 | } 25 | }) 26 | 27 | app.directive('esc', { 28 | beforeMount(el, binding, vnode) { 29 | escHandler = (e) => { 30 | if (e.key == 'Escape' || e.key == 'Esc' || e.keyCode == 27) { 31 | binding.value() 32 | } 33 | } 34 | document.addEventListener('keydown', escHandler) 35 | }, 36 | beforeUnmount() { 37 | document.removeEventListener('keydown', escHandler) 38 | } 39 | }) 40 | 41 | app.mount('#app') -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- 1 | import { computed, reactive } from 'vue' 2 | 3 | /** 4 | * @typedef {Object} Task 5 | * @property {String} id - Task ID 6 | * @property {String} name - Task name based on user input 7 | * @property {Boolean} taskActive - Marks the task that is currently active in tracking 8 | * @property {Number} taskTotal - Total time tracked for this specific task 9 | * @property {Number} order - Current 0-indexed position of the task in the list 10 | */ 11 | 12 | /** 13 | * Returns 'true' if a value is Boolean 14 | */ 15 | const isBoolean = val => 'boolean' === typeof val 16 | 17 | const ls = window.localStorage 18 | 19 | // keep the state object private so that we can have shared state across components! 20 | const state = reactive({ 21 | appTheme: 'light', 22 | appThemeAuto: true, 23 | autoStart: false, 24 | enableDrag: false, 25 | saveTime: false, 26 | showSettings: false, 27 | taskEditMode: false, 28 | tasklist: [], 29 | tasklistTotal: 0 30 | }) 31 | 32 | export const useStore = () => { 33 | // getters -- readonly 34 | const getActiveTasks = computed(() => state.tasklist.filter(task => task.taskActive)) 35 | const getAppTheme = computed(() => state.appTheme) 36 | const getAppThemeAuto = computed(() => state.appThemeAuto) 37 | const getAutoStart = computed(() => state.autoStart) 38 | const getEnableDrag = computed(() => state.enableDrag) 39 | const getSaveTime = computed(() => state.saveTime) 40 | const getSettingsDisplay = computed(() => state.showSettings) 41 | const getTaskEditMode = computed(() => state.taskEditMode) 42 | const getTasklist = computed(() => state.tasklist) 43 | const getTasklistTotal = computed(() => state.tasklistTotal) 44 | 45 | //actions 46 | /** 47 | * Adds a task to the tasklist. 48 | * @param {Task} task - the new task object. 49 | */ 50 | const addTask = task => state.tasklist.push(task) 51 | 52 | /** 53 | * Deactivates tracking for all tasks in the tasklist. 54 | */ 55 | const deactivateAll = () => state.tasklist.forEach(task => task.taskActive = false) 56 | 57 | /** 58 | * Initialize tasklistTotal. 59 | * Runs when the app starts and makes sure that the correct total time gets calculated and displayed. 60 | * Will calculate and set the tasklistTotal based on the saved tasks obtained from localStorage or set it to 0 if there are none. 61 | */ 62 | const initTasklist = () => { 63 | let newTotal = 0 64 | 65 | if (state.saveTime && state.tasklist.length > 0) { 66 | state.tasklist.forEach(task => newTotal += task.taskTotal) 67 | } 68 | 69 | setState('tasklistTotal', newTotal, true) 70 | } 71 | 72 | /** 73 | * Reads one or more keys from localStorage. 74 | * @param {String[]} storedKeys - a list of keys to obtain from localStorage. 75 | */ 76 | const readStateFromLS = (storedKeys) => { 77 | storedKeys.forEach((sKey) => { 78 | let stored = ls.getItem(sKey) 79 | let storedState = JSON.parse(stored) 80 | 81 | if ((storedState || isBoolean(storedState)) && sKey in state) { 82 | state[sKey] = storedState 83 | } 84 | }) 85 | } 86 | 87 | /** 88 | * Removes a task from the tasklist based on its ID. 89 | * @param {Task} toRemove - the task object that should be removed from the tasklist. 90 | */ 91 | const removeTask = (toRemove) => { 92 | const filtered = (source) => source.filter(task => task.id !== toRemove.id) 93 | let savedTasks = JSON.parse(ls.getItem('tasklist')) 94 | 95 | state.tasklist = filtered(state.tasklist) 96 | 97 | if (savedTasks?.length > 0) writeStateToLS('tasklist', filtered(savedTasks)) // remove saved tasks so they don't come back on reload 98 | } 99 | 100 | /** 101 | * Resets all tracked time. 102 | */ 103 | const resetSavedTime = () => { 104 | deactivateAll() 105 | state.tasklist.forEach(task => task.taskTotal = 0) 106 | writeStateToLS('tasklist') 107 | setState('tasklistTotal', 0, true) 108 | } 109 | 110 | /** 111 | * Sets a task to active, thereby starting time tracking. 112 | * @param {String} id - The ID of the task the should be activated. 113 | */ 114 | const setActiveTask = (id) => { 115 | state.tasklist.forEach(task => { 116 | task.id === id ? task.taskActive = true : task.taskActive = false 117 | }) 118 | } 119 | 120 | /** 121 | * Sets a task to paused, thereby stopping time tracking. 122 | * @param {String} id - The ID of the task the should be stopped. 123 | */ 124 | const setPausedTask = (id) => { 125 | state.tasklist.forEach(task => { 126 | if (task.id === id) { 127 | task.taskActive = false 128 | } 129 | }) 130 | } 131 | 132 | /** 133 | * Sets the value of a specific state key. Can optionally also update localStorage 134 | * @param {String} key - The name of the state key. 135 | * @param {(Boolean|Number|Task[]|String)} val - The new value for the specified key. 136 | * @param {Boolean} ls - Controls whether or not to write the state update into localStorage. 137 | */ 138 | const setState = (key, val, ls) => { 139 | state[key] = val 140 | if (ls) writeStateToLS(key, val) // save key to LS as well 141 | } 142 | 143 | /** 144 | * Contols taskEditMode 145 | * @param {Boolean} isActive Current state 146 | */ 147 | const setTaskEditMode = (isActive) => { 148 | state.taskEditMode = isActive 149 | } 150 | 151 | /** 152 | * Show/hide the settings menu. 153 | */ 154 | const toggleSettings = () => { state.showSettings = !state.showSettings } 155 | 156 | /** 157 | * Updates a specific property on a specific task object. 158 | * @param {String} id - The ID of the task that should be updated. 159 | * @param {String} key - The task's property name to update. 160 | * @param {(Boolean|Number|String)} value - The new value for the updated property. 161 | */ 162 | const updateTask = (id, key, value) => { 163 | state.tasklist.forEach(task => { 164 | if (task.id === id) { 165 | task[key] = value 166 | } 167 | }) 168 | } 169 | 170 | /** 171 | * Updates information stored in localStorage. Can be used to update all state keys (no params) or to update a single key. 172 | * Can be used with or without an updated value when updating a single key. 173 | * @param {String} [targetKey] - The state key to write to localStorage. 174 | * @param {(Boolean|Number|Task[]|String)} [update] - The updated value for the specified key. 175 | */ 176 | const writeStateToLS = (targetKey, update) => { 177 | if (update || isBoolean(update) || typeof update == 'number') { 178 | ls.setItem(targetKey, JSON.stringify(update)) 179 | } else if (targetKey) { 180 | ls.setItem(targetKey, JSON.stringify(state[targetKey])) 181 | } else { 182 | Object.keys(state).map(key => { 183 | ls.setItem(key, JSON.stringify(state[key])) 184 | }) 185 | } 186 | } 187 | 188 | return { 189 | activeTasks: getActiveTasks, 190 | appTheme: getAppTheme, 191 | appThemeAuto: getAppThemeAuto, 192 | autoStart: getAutoStart, 193 | enableDrag: getEnableDrag, 194 | saveTime: getSaveTime, 195 | settingsShown: getSettingsDisplay, 196 | taskEditMode: getTaskEditMode, 197 | tasklist: getTasklist, 198 | tasklistTotal: getTasklistTotal, 199 | addTask, 200 | deactivateAll, 201 | initTasklist, 202 | readStateFromLS, 203 | removeTask, 204 | resetSavedTime, 205 | setActiveTask, 206 | setPausedTask, 207 | setState, 208 | setTaskEditMode, 209 | toggleSettings, 210 | updateTask, 211 | writeStateToLS 212 | } 213 | } -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- 1 | import { useStore } from './store.js' 2 | 3 | const { appTheme } = useStore() 4 | 5 | export function applyTheme(theme) { 6 | if (appTheme.value) { 7 | document.documentElement.setAttribute('data-theme', theme) 8 | } 9 | } 10 | 11 | export function formatTime(input) { 12 | let hrs = input / 3600 13 | hrs = hrs.toString().split('.')[0] 14 | 15 | let min = (input / 60) - (hrs * 60) 16 | min = min.toString().split('.')[0] 17 | 18 | let sec = input - (min * 60) - (hrs * 3600) 19 | 20 | return hrs > 0 21 | ? `${(hrs < 10 ? '0' : '') + hrs}:${(min < 10 ? '0' : '') + min}:${(sec < 10 ? '0' : '') + sec}` 22 | : `${(min < 10 ? '0' : '') + min}:${(sec < 10 ? '0' : '') + sec}` 23 | } 24 | 25 | export function getDate() { 26 | let date = new Date() 27 | 28 | let dateOptions = { 29 | weekday: 'long', 30 | year: 'numeric', 31 | month: 'long', 32 | day: 'numeric' 33 | } 34 | 35 | return date.toLocaleDateString('en-US', dateOptions) 36 | } 37 | 38 | export function getTimestamp() { 39 | const d = new Date() 40 | return d.toISOString().split('T')[0].replaceAll('-', '') 41 | } 42 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | future: { 3 | removeDeprecatedGapUtilities: true, 4 | purgeLayersByDefault: true, 5 | }, 6 | purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], 7 | target: 'relaxed', 8 | prefix: '', 9 | important: false, 10 | separator: ':', 11 | theme: { 12 | screens: { 13 | sm: '640px', 14 | md: '768px', 15 | lg: '1024px', 16 | xl: '1280px', 17 | }, 18 | colors: { 19 | transparent: 'transparent', 20 | current: 'currentColor', 21 | black: '#000', 22 | white: '#fff', 23 | 'gray-light': 'var(--gray-light)', 24 | 'gray-mid': 'var(--gray-mid)', 25 | 'gray-dark': 'var(--gray-dark)', 26 | 'primary': 'var(--primary)', 27 | 'secondary': 'var(--secondary)', 28 | }, 29 | spacing: { 30 | px: '1px', 31 | '0': '0', 32 | '1': '0.25rem', 33 | '2': '0.5rem', 34 | '3': '0.75rem', 35 | '4': '1rem', 36 | '5': '1.25rem', 37 | '6': '1.5rem', 38 | '8': '2rem', 39 | '10': '2.5rem', 40 | '12': '3rem', 41 | '16': '4rem', 42 | '20': '5rem', 43 | '24': '6rem', 44 | '32': '8rem', 45 | '40': '10rem', 46 | '48': '12rem', 47 | '56': '14rem', 48 | '64': '16rem', 49 | }, 50 | backgroundColor: theme => theme('colors'), 51 | backgroundImage: { 52 | none: 'none', 53 | 'gradient-to-t': 'linear-gradient(to top, var(--gradient-color-stops))', 54 | 'gradient-to-tr': 'linear-gradient(to top right, var(--gradient-color-stops))', 55 | 'gradient-to-r': 'linear-gradient(to right, var(--gradient-color-stops))', 56 | 'gradient-to-br': 'linear-gradient(to bottom right, var(--gradient-color-stops))', 57 | 'gradient-to-b': 'linear-gradient(to bottom, var(--gradient-color-stops))', 58 | 'gradient-to-bl': 'linear-gradient(to bottom left, var(--gradient-color-stops))', 59 | 'gradient-to-l': 'linear-gradient(to left, var(--gradient-color-stops))', 60 | 'gradient-to-tl': 'linear-gradient(to top left, var(--gradient-color-stops))', 61 | }, 62 | gradientColorStops: theme => theme('colors'), 63 | backgroundOpacity: theme => theme('opacity'), 64 | backgroundPosition: { 65 | bottom: 'bottom', 66 | center: 'center', 67 | left: 'left', 68 | 'left-bottom': 'left bottom', 69 | 'left-top': 'left top', 70 | right: 'right', 71 | 'right-bottom': 'right bottom', 72 | 'right-top': 'right top', 73 | top: 'top', 74 | }, 75 | backgroundSize: { 76 | auto: 'auto', 77 | cover: 'cover', 78 | contain: 'contain', 79 | }, 80 | borderColor: theme => ({ 81 | ...theme('colors'), 82 | default: theme('colors.gray.300', 'currentColor'), 83 | }), 84 | borderOpacity: theme => theme('opacity'), 85 | borderRadius: { 86 | none: '0', 87 | sm: '0.125rem', 88 | default: '0.25rem', 89 | md: '0.375rem', 90 | lg: '0.5rem', 91 | full: '9999px', 92 | }, 93 | borderWidth: { 94 | default: '1px', 95 | '0': '0', 96 | '2': '2px', 97 | '4': '4px', 98 | '8': '8px', 99 | }, 100 | boxShadow: { 101 | xs: '0 0 0 1px rgba(0, 0, 0, 0.05)', 102 | sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)', 103 | default: '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)', 104 | md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)', 105 | lg: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', 106 | xl: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)', 107 | '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)', 108 | inner: 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)', 109 | outline: '0 0 0 3px rgba(48, 234, 238, 0.5)', 110 | none: 'none', 111 | }, 112 | container: {}, 113 | cursor: { 114 | auto: 'auto', 115 | default: 'default', 116 | pointer: 'pointer', 117 | wait: 'wait', 118 | text: 'text', 119 | move: 'move', 120 | 'not-allowed': 'not-allowed', 121 | }, 122 | divideColor: theme => theme('borderColor'), 123 | divideOpacity: theme => theme('borderOpacity'), 124 | divideWidth: theme => theme('borderWidth'), 125 | fill: { 126 | current: 'currentColor', 127 | }, 128 | flex: { 129 | '1': '1 1 0%', 130 | auto: '1 1 auto', 131 | initial: '0 1 auto', 132 | none: 'none', 133 | }, 134 | flexGrow: { 135 | '0': '0', 136 | default: '1', 137 | }, 138 | flexShrink: { 139 | '0': '0', 140 | default: '1', 141 | }, 142 | fontFamily: { 143 | sans: [ 144 | 'Rubik', 145 | 'sans-serif', 146 | '"Apple Color Emoji"', 147 | '"Segoe UI Emoji"', 148 | '"Segoe UI Symbol"', 149 | '"Noto Color Emoji"', 150 | ], 151 | mono: ['Menlo', 'Monaco', 'Consolas', '"Liberation Mono"', '"Courier New"', 'monospace'], 152 | }, 153 | fontSize: { 154 | xs: '0.75rem', 155 | sm: '0.875rem', 156 | base: '1rem', 157 | lg: '1.125rem', 158 | xl: '1.25rem', 159 | '2xl': '1.5rem', 160 | '3xl': '1.875rem', 161 | '4xl': '2.25rem', 162 | '5xl': '3rem', 163 | '6xl': '4rem', 164 | }, 165 | fontWeight: { 166 | hairline: '100', 167 | thin: '200', 168 | light: '300', 169 | normal: '400', 170 | medium: '500', 171 | semibold: '600', 172 | bold: '700', 173 | extrabold: '800', 174 | black: '900', 175 | }, 176 | height: theme => ({ 177 | auto: 'auto', 178 | ...theme('spacing'), 179 | full: '100%', 180 | screen: '100vh', 181 | }), 182 | inset: { 183 | '0': '0', 184 | auto: 'auto', 185 | }, 186 | letterSpacing: { 187 | tighter: '-0.05em', 188 | tight: '-0.025em', 189 | normal: '0', 190 | wide: '0.025em', 191 | wider: '0.05em', 192 | widest: '0.1em', 193 | }, 194 | lineHeight: { 195 | none: '1', 196 | tight: '1.25', 197 | snug: '1.375', 198 | normal: '1.5', 199 | relaxed: '1.625', 200 | loose: '2', 201 | '3': '.75rem', 202 | '4': '1rem', 203 | '5': '1.25rem', 204 | '6': '1.5rem', 205 | '7': '1.75rem', 206 | '8': '2rem', 207 | '9': '2.25rem', 208 | '10': '2.5rem', 209 | }, 210 | listStyleType: { 211 | none: 'none', 212 | disc: 'disc', 213 | decimal: 'decimal', 214 | }, 215 | margin: (theme, { negative }) => ({ 216 | auto: 'auto', 217 | ...theme('spacing'), 218 | ...negative(theme('spacing')), 219 | }), 220 | maxHeight: { 221 | full: '100%', 222 | screen: '100vh', 223 | }, 224 | maxWidth: (theme, { breakpoints }) => ({ 225 | none: 'none', 226 | xs: '20rem', 227 | sm: '24rem', 228 | md: '28rem', 229 | lg: '32rem', 230 | xl: '36rem', 231 | '2xl': '42rem', 232 | '3xl': '48rem', 233 | '4xl': '56rem', 234 | '5xl': '64rem', 235 | '6xl': '72rem', 236 | full: '100%', 237 | ...breakpoints(theme('screens')), 238 | }), 239 | minHeight: { 240 | '0': '0', 241 | full: '100%', 242 | screen: '100vh', 243 | }, 244 | minWidth: { 245 | '0': '0', 246 | full: '100%', 247 | }, 248 | objectPosition: { 249 | bottom: 'bottom', 250 | center: 'center', 251 | left: 'left', 252 | 'left-bottom': 'left bottom', 253 | 'left-top': 'left top', 254 | right: 'right', 255 | 'right-bottom': 'right bottom', 256 | 'right-top': 'right top', 257 | top: 'top', 258 | }, 259 | opacity: { 260 | '0': '0', 261 | '25': '0.25', 262 | '50': '0.5', 263 | '75': '0.75', 264 | '100': '1', 265 | }, 266 | order: { 267 | first: '-9999', 268 | last: '9999', 269 | none: '0', 270 | '1': '1', 271 | '2': '2', 272 | '3': '3', 273 | '4': '4', 274 | '5': '5', 275 | '6': '6', 276 | '7': '7', 277 | '8': '8', 278 | '9': '9', 279 | '10': '10', 280 | '11': '11', 281 | '12': '12', 282 | }, 283 | padding: theme => theme('spacing'), 284 | placeholderColor: theme => theme('colors'), 285 | placeholderOpacity: theme => theme('opacity'), 286 | space: (theme, { negative }) => ({ 287 | ...theme('spacing'), 288 | ...negative(theme('spacing')), 289 | }), 290 | stroke: { 291 | current: 'currentColor', 292 | }, 293 | strokeWidth: { 294 | '0': '0', 295 | '1': '1', 296 | '2': '2', 297 | }, 298 | textColor: theme => theme('colors'), 299 | textOpacity: theme => theme('opacity'), 300 | width: theme => ({ 301 | auto: 'auto', 302 | ...theme('spacing'), 303 | '1/2': '50%', 304 | '1/3': '33.333333%', 305 | '2/3': '66.666667%', 306 | '1/4': '25%', 307 | '2/4': '50%', 308 | '3/4': '75%', 309 | '1/5': '20%', 310 | '2/5': '40%', 311 | '3/5': '60%', 312 | '4/5': '80%', 313 | '1/6': '16.666667%', 314 | '2/6': '33.333333%', 315 | '3/6': '50%', 316 | '4/6': '66.666667%', 317 | '5/6': '83.333333%', 318 | '1/12': '8.333333%', 319 | '2/12': '16.666667%', 320 | '3/12': '25%', 321 | '4/12': '33.333333%', 322 | '5/12': '41.666667%', 323 | '6/12': '50%', 324 | '7/12': '58.333333%', 325 | '8/12': '66.666667%', 326 | '9/12': '75%', 327 | '10/12': '83.333333%', 328 | '11/12': '91.666667%', 329 | full: '100%', 330 | screen: '100vw', 331 | }), 332 | zIndex: { 333 | auto: 'auto', 334 | '0': '0', 335 | '10': '10', 336 | '20': '20', 337 | '30': '30', 338 | '40': '40', 339 | '50': '50', 340 | }, 341 | gap: theme => theme('spacing'), 342 | gridTemplateColumns: { 343 | none: 'none', 344 | '1': 'repeat(1, minmax(0, 1fr))', 345 | '2': 'repeat(2, minmax(0, 1fr))', 346 | '3': 'repeat(3, minmax(0, 1fr))', 347 | '4': 'repeat(4, minmax(0, 1fr))', 348 | '5': 'repeat(5, minmax(0, 1fr))', 349 | '6': 'repeat(6, minmax(0, 1fr))', 350 | '7': 'repeat(7, minmax(0, 1fr))', 351 | '8': 'repeat(8, minmax(0, 1fr))', 352 | '9': 'repeat(9, minmax(0, 1fr))', 353 | '10': 'repeat(10, minmax(0, 1fr))', 354 | '11': 'repeat(11, minmax(0, 1fr))', 355 | '12': 'repeat(12, minmax(0, 1fr))', 356 | }, 357 | gridColumn: { 358 | auto: 'auto', 359 | 'span-1': 'span 1 / span 1', 360 | 'span-2': 'span 2 / span 2', 361 | 'span-3': 'span 3 / span 3', 362 | 'span-4': 'span 4 / span 4', 363 | 'span-5': 'span 5 / span 5', 364 | 'span-6': 'span 6 / span 6', 365 | 'span-7': 'span 7 / span 7', 366 | 'span-8': 'span 8 / span 8', 367 | 'span-9': 'span 9 / span 9', 368 | 'span-10': 'span 10 / span 10', 369 | 'span-11': 'span 11 / span 11', 370 | 'span-12': 'span 12 / span 12', 371 | }, 372 | gridColumnStart: { 373 | auto: 'auto', 374 | '1': '1', 375 | '2': '2', 376 | '3': '3', 377 | '4': '4', 378 | '5': '5', 379 | '6': '6', 380 | '7': '7', 381 | '8': '8', 382 | '9': '9', 383 | '10': '10', 384 | '11': '11', 385 | '12': '12', 386 | '13': '13', 387 | }, 388 | gridColumnEnd: { 389 | auto: 'auto', 390 | '1': '1', 391 | '2': '2', 392 | '3': '3', 393 | '4': '4', 394 | '5': '5', 395 | '6': '6', 396 | '7': '7', 397 | '8': '8', 398 | '9': '9', 399 | '10': '10', 400 | '11': '11', 401 | '12': '12', 402 | '13': '13', 403 | }, 404 | gridTemplateRows: { 405 | none: 'none', 406 | '1': 'repeat(1, minmax(0, 1fr))', 407 | '2': 'repeat(2, minmax(0, 1fr))', 408 | '3': 'repeat(3, minmax(0, 1fr))', 409 | '4': 'repeat(4, minmax(0, 1fr))', 410 | '5': 'repeat(5, minmax(0, 1fr))', 411 | '6': 'repeat(6, minmax(0, 1fr))', 412 | }, 413 | gridRow: { 414 | auto: 'auto', 415 | 'span-1': 'span 1 / span 1', 416 | 'span-2': 'span 2 / span 2', 417 | 'span-3': 'span 3 / span 3', 418 | 'span-4': 'span 4 / span 4', 419 | 'span-5': 'span 5 / span 5', 420 | 'span-6': 'span 6 / span 6', 421 | }, 422 | gridRowStart: { 423 | auto: 'auto', 424 | '1': '1', 425 | '2': '2', 426 | '3': '3', 427 | '4': '4', 428 | '5': '5', 429 | '6': '6', 430 | '7': '7', 431 | }, 432 | gridRowEnd: { 433 | auto: 'auto', 434 | '1': '1', 435 | '2': '2', 436 | '3': '3', 437 | '4': '4', 438 | '5': '5', 439 | '6': '6', 440 | '7': '7', 441 | }, 442 | transformOrigin: { 443 | center: 'center', 444 | top: 'top', 445 | 'top-right': 'top right', 446 | right: 'right', 447 | 'bottom-right': 'bottom right', 448 | bottom: 'bottom', 449 | 'bottom-left': 'bottom left', 450 | left: 'left', 451 | 'top-left': 'top left', 452 | }, 453 | scale: { 454 | '0': '0', 455 | '50': '.5', 456 | '75': '.75', 457 | '90': '.9', 458 | '95': '.95', 459 | '100': '1', 460 | '105': '1.05', 461 | '110': '1.1', 462 | '125': '1.25', 463 | '150': '1.5', 464 | }, 465 | rotate: { 466 | '-180': '-180deg', 467 | '-90': '-90deg', 468 | '-45': '-45deg', 469 | '0': '0', 470 | '45': '45deg', 471 | '90': '90deg', 472 | '180': '180deg', 473 | }, 474 | translate: (theme, { negative }) => ({ 475 | ...theme('spacing'), 476 | ...negative(theme('spacing')), 477 | '-full': '-100%', 478 | '-1/2': '-50%', 479 | '1/2': '50%', 480 | full: '100%', 481 | }), 482 | skew: { 483 | '-12': '-12deg', 484 | '-6': '-6deg', 485 | '-3': '-3deg', 486 | '0': '0', 487 | '3': '3deg', 488 | '6': '6deg', 489 | '12': '12deg', 490 | }, 491 | transitionProperty: { 492 | none: 'none', 493 | all: 'all', 494 | default: 'background-color, border-color, color, fill, stroke, opacity, box-shadow, transform', 495 | colors: 'background-color, border-color, color, fill, stroke', 496 | opacity: 'opacity', 497 | shadow: 'box-shadow', 498 | transform: 'transform', 499 | }, 500 | transitionTimingFunction: { 501 | linear: 'linear', 502 | in: 'cubic-bezier(0.4, 0, 1, 1)', 503 | out: 'cubic-bezier(0, 0, 0.2, 1)', 504 | 'in-out': 'cubic-bezier(0.4, 0, 0.2, 1)', 505 | }, 506 | transitionDuration: { 507 | '75': '75ms', 508 | '100': '100ms', 509 | '150': '150ms', 510 | '200': '200ms', 511 | '300': '300ms', 512 | '500': '500ms', 513 | '700': '700ms', 514 | '1000': '1000ms', 515 | }, 516 | transitionDelay: { 517 | '75': '75ms', 518 | '100': '100ms', 519 | '150': '150ms', 520 | '200': '200ms', 521 | '300': '300ms', 522 | '500': '500ms', 523 | '700': '700ms', 524 | '1000': '1000ms', 525 | }, 526 | animation: { 527 | none: 'none', 528 | spin: 'spin 1s linear infinite', 529 | ping: 'ping 1s cubic-bezier(0, 0, 0.2, 1) infinite', 530 | pulse: 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite', 531 | bounce: 'bounce 1s infinite', 532 | }, 533 | keyframes: { 534 | spin: { 535 | to: { transform: 'rotate(360deg)' }, 536 | }, 537 | ping: { 538 | '75%, 100%': { transform: 'scale(2)', opacity: '0' }, 539 | }, 540 | pulse: { 541 | '50%': { opacity: '.5' }, 542 | }, 543 | bounce: { 544 | '0%, 100%': { 545 | transform: 'translateY(-25%)', 546 | animationTimingFunction: 'cubic-bezier(0.8,0,1,1)', 547 | }, 548 | '50%': { 549 | transform: 'none', 550 | animationTimingFunction: 'cubic-bezier(0,0,0.2,1)', 551 | }, 552 | }, 553 | }, 554 | }, 555 | variants: { 556 | accessibility: ['responsive', 'focus'], 557 | alignContent: ['responsive'], 558 | alignItems: ['responsive'], 559 | alignSelf: ['responsive'], 560 | appearance: ['responsive'], 561 | backgroundAttachment: ['responsive'], 562 | backgroundClip: ['responsive'], 563 | backgroundColor: ['responsive', 'hover', 'focus'], 564 | backgroundImage: ['responsive'], 565 | gradientColorStops: ['responsive', 'hover', 'focus'], 566 | backgroundOpacity: ['responsive', 'hover', 'focus'], 567 | backgroundPosition: ['responsive'], 568 | backgroundRepeat: ['responsive'], 569 | backgroundSize: ['responsive'], 570 | borderCollapse: ['responsive'], 571 | borderColor: ['responsive', 'hover', 'focus'], 572 | borderOpacity: ['responsive', 'hover', 'focus'], 573 | borderRadius: ['responsive'], 574 | borderStyle: ['responsive'], 575 | borderWidth: ['responsive'], 576 | boxShadow: ['responsive', 'hover', 'focus'], 577 | boxSizing: ['responsive'], 578 | container: ['responsive'], 579 | cursor: ['responsive', 'hover'], 580 | display: ['responsive'], 581 | divideColor: ['responsive'], 582 | divideOpacity: ['responsive'], 583 | divideStyle: ['responsive'], 584 | divideWidth: ['responsive'], 585 | fill: ['responsive'], 586 | flex: ['responsive'], 587 | flexDirection: ['responsive'], 588 | flexGrow: ['responsive'], 589 | flexShrink: ['responsive'], 590 | flexWrap: ['responsive'], 591 | float: ['responsive'], 592 | clear: ['responsive'], 593 | fontFamily: ['responsive'], 594 | fontSize: ['responsive'], 595 | fontSmoothing: ['responsive'], 596 | fontVariantNumeric: ['responsive'], 597 | fontStyle: ['responsive'], 598 | fontWeight: ['responsive', 'hover', 'focus'], 599 | height: ['responsive'], 600 | inset: ['responsive'], 601 | justifyContent: ['responsive'], 602 | justifyItems: ['responsive'], 603 | justifySelf: ['responsive'], 604 | letterSpacing: ['responsive'], 605 | lineHeight: ['responsive'], 606 | listStylePosition: ['responsive'], 607 | listStyleType: ['responsive'], 608 | margin: ['responsive'], 609 | maxHeight: ['responsive'], 610 | maxWidth: ['responsive'], 611 | minHeight: ['responsive'], 612 | minWidth: ['responsive'], 613 | objectFit: ['responsive'], 614 | objectPosition: ['responsive'], 615 | opacity: ['responsive', 'hover', 'focus'], 616 | order: ['responsive'], 617 | outline: ['responsive', 'focus'], 618 | overflow: ['responsive'], 619 | overscrollBehavior: ['responsive'], 620 | padding: ['responsive'], 621 | placeContent: ['responsive'], 622 | placeItems: ['responsive'], 623 | placeSelf: ['responsive'], 624 | placeholderColor: ['responsive', 'focus'], 625 | placeholderOpacity: ['responsive', 'focus'], 626 | pointerEvents: ['responsive'], 627 | position: ['responsive'], 628 | resize: ['responsive'], 629 | space: ['responsive'], 630 | stroke: ['responsive'], 631 | strokeWidth: ['responsive'], 632 | tableLayout: ['responsive'], 633 | textAlign: ['responsive'], 634 | textColor: ['responsive', 'hover', 'focus'], 635 | textOpacity: ['responsive', 'hover', 'focus'], 636 | textDecoration: ['responsive', 'hover', 'focus'], 637 | textTransform: ['responsive'], 638 | userSelect: ['responsive'], 639 | verticalAlign: ['responsive'], 640 | visibility: ['responsive'], 641 | whitespace: ['responsive'], 642 | width: ['responsive'], 643 | wordBreak: ['responsive'], 644 | zIndex: ['responsive'], 645 | gap: ['responsive'], 646 | gridAutoFlow: ['responsive'], 647 | gridTemplateColumns: ['responsive'], 648 | gridColumn: ['responsive'], 649 | gridColumnStart: ['responsive'], 650 | gridColumnEnd: ['responsive'], 651 | gridTemplateRows: ['responsive'], 652 | gridRow: ['responsive'], 653 | gridRowStart: ['responsive'], 654 | gridRowEnd: ['responsive'], 655 | transform: ['responsive'], 656 | transformOrigin: ['responsive'], 657 | scale: ['responsive', 'hover', 'focus'], 658 | rotate: ['responsive', 'hover', 'focus'], 659 | translate: ['responsive', 'hover', 'focus'], 660 | skew: ['responsive', 'hover', 'focus'], 661 | transitionProperty: ['responsive'], 662 | transitionTimingFunction: ['responsive'], 663 | transitionDuration: ['responsive'], 664 | transitionDelay: ['responsive'], 665 | animation: ['responsive'], 666 | }, 667 | corePlugins: {}, 668 | plugins: [], 669 | } 670 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import path from 'path' 4 | 5 | export default defineConfig({ 6 | build: { 7 | cssCodeSplit: false, 8 | target: 'esnext' 9 | }, 10 | optimizeDeps: { 11 | include: [ 12 | 'vue', 13 | 'vuedraggable' 14 | ] 15 | }, 16 | plugins: [ 17 | vue() 18 | ], 19 | resolve: { 20 | alias: { 21 | '@': path.resolve(__dirname, './src') 22 | }, 23 | // https://github.com/vuejs/vue-next/issues/2064#issuecomment-797365133 24 | dedupe: ['vue'] 25 | } 26 | }) --------------------------------------------------------------------------------