├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config.js ├── data └── config.json ├── database.js ├── docker-compose.yaml ├── domain.js ├── front ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── html │ ├── index.html │ ├── manage.html │ ├── public │ │ ├── dialog.css │ │ ├── roboto.ttf │ │ └── trashIcon.svg │ └── src │ │ ├── helper.js │ │ ├── index.js │ │ ├── index.svelte │ │ ├── layout.css │ │ ├── lib │ │ └── dialog.js │ │ ├── manage.js │ │ ├── manage.svelte │ │ ├── style.css │ │ └── vite-env.d.ts ├── jsconfig.json ├── package-lock.json ├── package.json ├── svelte.config.js └── vite.config.js ├── helper.js ├── httpSrv.js ├── main.js ├── package-lock.json ├── package.json └── smtpSrv.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.key 3 | *.crt 4 | *.db 5 | dist 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:latest 2 | 3 | RUN apk add --no-cache git nodejs npm 4 | 5 | WORKDIR /app 6 | 7 | COPY . /app 8 | 9 | RUN npm install --production 10 | 11 | WORKDIR front 12 | 13 | RUN npm install 14 | RUN npm run build 15 | 16 | WORKDIR /app 17 | 18 | CMD ["node", "main.js"] 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | # PolyForm Noncommercial License 1.0.0 2 | 3 | 4 | 5 | ## Acceptance 6 | 7 | In order to get any license under these terms, you must agree 8 | to them as both strict obligations and conditions to all 9 | your licenses. 10 | 11 | ## Copyright License 12 | 13 | The licensor grants you a copyright license for the 14 | software to do everything you might do with the software 15 | that would otherwise infringe the licensor's copyright 16 | in it for any permitted purpose. However, you may 17 | only distribute the software according to [Distribution 18 | License](#distribution-license) and make changes or new works 19 | based on the software according to [Changes and New Works 20 | License](#changes-and-new-works-license). 21 | 22 | ## Distribution License 23 | 24 | The licensor grants you an additional copyright license 25 | to distribute copies of the software. Your license 26 | to distribute covers distributing the software with 27 | changes and new works permitted by [Changes and New Works 28 | License](#changes-and-new-works-license). 29 | 30 | ## Notices 31 | 32 | You must ensure that anyone who gets a copy of any part of 33 | the software from you also gets a copy of these terms or the 34 | URL for them above, as well as copies of any plain-text lines 35 | beginning with `Required Notice:` that the licensor provided 36 | with the software. For example: 37 | 38 | > Required Notice: Copyright Yoyodyne, Inc. (http://example.com) 39 | 40 | ## Changes and New Works License 41 | 42 | The licensor grants you an additional copyright license to 43 | make changes and new works based on the software for any 44 | permitted purpose. 45 | 46 | ## Patent License 47 | 48 | The licensor grants you a patent license for the software that 49 | covers patent claims the licensor can license, or becomes able 50 | to license, that you would infringe by using the software. 51 | 52 | ## Noncommercial Purposes 53 | 54 | Any noncommercial purpose is a permitted purpose. 55 | 56 | ## Personal Uses 57 | 58 | Personal use for research, experiment, and testing for 59 | the benefit of public knowledge, personal study, private 60 | entertainment, hobby projects, amateur pursuits, or religious 61 | observance, without any anticipated commercial application, 62 | is use for a permitted purpose. 63 | 64 | ## Noncommercial Organizations 65 | 66 | Use by any charitable organization, educational institution, 67 | public research organization, public safety or health 68 | organization, environmental protection organization, 69 | or government institution is use for a permitted purpose 70 | regardless of the source of funding or obligations resulting 71 | from the funding. 72 | 73 | ## Fair Use 74 | 75 | You may have "fair use" rights for the software under the 76 | law. These terms do not limit them. 77 | 78 | ## No Other Rights 79 | 80 | These terms do not allow you to sublicense or transfer any of 81 | your licenses to anyone else, or prevent the licensor from 82 | granting licenses to anyone else. These terms do not imply 83 | any other licenses. 84 | 85 | ## Patent Defense 86 | 87 | If you make any written claim that the software infringes or 88 | contributes to infringement of any patent, your patent license 89 | for the software granted under these terms ends immediately. If 90 | your company makes such a claim, your patent license ends 91 | immediately for work on behalf of your company. 92 | 93 | ## Violations 94 | 95 | The first time you are notified in writing that you have 96 | violated any of these terms, or done anything with the software 97 | not covered by your licenses, your licenses can nonetheless 98 | continue if you come into full compliance with these terms, 99 | and take practical steps to correct past violations, within 100 | 32 days of receiving notice. Otherwise, all your licenses 101 | end immediately. 102 | 103 | ## No Liability 104 | 105 | ***As far as the law allows, the software comes as is, without 106 | any warranty or condition, and the licensor will not be liable 107 | to you for any damages arising out of these terms or the use 108 | or nature of the software, under any kind of legal claim.*** 109 | 110 | ## Definitions 111 | 112 | The **licensor** is the individual or entity offering these 113 | terms, and the **software** is the software the licensor makes 114 | available under these terms. 115 | 116 | **You** refers to the individual or entity agreeing to these 117 | terms. 118 | 119 | **Your company** is any legal entity, sole proprietorship, 120 | or other kind of organization that you work for, plus all 121 | organizations that have control over, are under the control of, 122 | or are under common control with that organization. **Control** 123 | means ownership of substantially all the assets of an entity, 124 | or the power to direct its management and policies by vote, 125 | contract, or otherwise. Control can be direct or indirect. 126 | 127 | **Your licenses** are all the licenses granted to you for the 128 | software under these terms. 129 | 130 | **Use** means anything you do with the software requiring one 131 | of your licenses. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nortix Mail 2 | Please star this repo if you find it useful, thank you! 3 | ![image](https://github.com/user-attachments/assets/625d9d45-75e9-43f5-8264-57d2ed7ee7d8) 4 | 5 | # Purpose 🎯 6 | Whenever you sign up with your email on a website, your email address is stored and sometimes sold to advertisers. This is where you get your bulk of spam emails. Whenever a data breach happens, you also risk having your primary email address leaked and informations stolen. 7 | 8 | Using Nortix Mail, you can create disposable email addresses that can be used to sign up to website that requires email verification. This is very useful when you just want to try out new website / services without giving away your real email address. It significantly enhances privacy, security and reduces spam. It's like running your own Gmail server. 9 | 10 | # Why it's better than other similar services ⚡ 11 | Email servers are notoriously difficult to set up, Nortix Mail aims to make it as simple as possible by making TLS optional and it can automatically detect your domain if you choose to use TLS. If you change your domain, it can automatically detect it and requires no additional configuration. If you want to move the data to another server, just copy the `data` folder. 12 | 13 | # Run without docker 🖥️ 14 | 1. make sure that nodejs & npm is installed 15 | 2. run `npm install` 16 | 4. run `cd front` 17 | 5. run `npm install` 18 | 6. run `npm run build` 19 | 7. run `cd ..` 20 | 8. run `node main.js` 21 | 22 | or use the combined command: `npm install && cd front && npm install && npm run build && cd .. && node main.js` 23 | The http server will be listening on port 80. Make sure that your port 25 is accessible to receive mails 24 | 25 | # Run with docker 🐋 26 | 1. git clone / download this repo 27 | 2. run `docker compose up -d` 28 | 29 | In the `docker-compose.yaml` file, port `25:25` is mapped by default. It is recommended to not change this setting if you are using a reverse proxy as some of them cannot forward smtp packets 30 | 31 | # Configurations 32 | You can edit `config.json` inside `data/config.json` to change the mail refresh interval and number of emails shown per page 33 | 34 | # Adding TLS / Encryption (optional) 🔒 35 | copy your certificate and private key files into the `data` folder (usually, the file extensions are `.crt` and `.key`). The file name and extension don't actually matter as Nortix Mail can automatically detect which one is which 36 | 37 | # Is it safe if I don't use TLS? 🔍 38 | The current mail transfer protocol is very old and by default it doesn't require TLS to function. This means that when another server sends an email to your server, anyone in between can theoretically read the mail if they actively try to intercept. However, this is unlikely to happen as the people who have this capability are mostly ISPs and hosting providers. For better security, setting up TLS is still recommended. 39 | 40 | # Contributing 🤝 41 | This repository currently doesn't accept any pull request. However, you can open an issue if you want to request a feature, report bugs or ask me a question. 42 | -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | import fs from 'fs' 3 | 4 | let mod = { 5 | 6 | configs: {}, 7 | 8 | getConfig: function(key){ 9 | 10 | return this.configs[key]; 11 | 12 | }, 13 | 14 | init: function(){ 15 | 16 | try { 17 | 18 | const data = fs.readFileSync('./data/config.json', 'utf8'); 19 | this.configs = JSON.parse(data); 20 | 21 | } catch (err) { 22 | 23 | console.log('Error reading data.json'); 24 | console.log(err); 25 | process.exit(); 26 | 27 | } 28 | 29 | } 30 | 31 | } 32 | 33 | export default mod; 34 | -------------------------------------------------------------------------------- /data/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "MailCountPerPage" : 10, 3 | "MailRefreshInterval" : 3 4 | } 5 | -------------------------------------------------------------------------------- /database.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | import sqlite3 from 'better-sqlite3'; 3 | 4 | let database = { 5 | 6 | init: function(){ 7 | 8 | try { 9 | 10 | const db = new sqlite3('./data/data.db'); 11 | db.exec("CREATE TABLE IF NOT EXISTS address (addr TEXT NOT NULL)"); 12 | let res = db.prepare("SELECT COUNT(*) as count FROM address").get(); 13 | 14 | if (res.count == 0){ 15 | 16 | //generate random username 17 | const letters = 'abcdefghijklmnopqrstuvwxyz'; 18 | let uname = ''; 19 | for (let i = 0; i < 3; i++) { 20 | const randomIndex = Math.floor(Math.random() * letters.length); 21 | uname += letters[randomIndex]; 22 | } 23 | uname += Math.floor(Math.random() * 10).toString(); 24 | uname += Math.floor(Math.random() * 10).toString(); 25 | 26 | db.prepare("INSERT INTO address (addr) VALUES (?)").run(uname); 27 | 28 | } 29 | 30 | db.exec("CREATE TABLE IF NOT EXISTS mail (id TEXT NOT NULL, recipient TEXT NOT NULL, sender TEXT NOT NULL, subject TEXT NOT NULL, content TEXT NOT NULL)"); 31 | 32 | return db; 33 | 34 | } catch(err) { 35 | 36 | console.log("DB init fail") 37 | console.log(err); 38 | process.exit(); 39 | 40 | } 41 | 42 | } 43 | 44 | } 45 | 46 | export default database; 47 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | mail: 3 | build: . 4 | ports: 5 | - "25:25" 6 | - "80:80" 7 | volumes: 8 | - ./data:/app/data 9 | -------------------------------------------------------------------------------- /domain.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | import fs from 'fs' 3 | import path from 'path' 4 | import crypto from 'crypto' 5 | 6 | let mod = { 7 | 8 | getDomainName: function(){ 9 | 10 | let cert = ""; 11 | 12 | try { 13 | 14 | const files = fs.readdirSync("./data"); 15 | for(let fileName of files){ 16 | 17 | let ext = path.extname(fileName); 18 | if(ext != ".db" && ext != ".json"){ 19 | 20 | let content = fs.readFileSync("./data/" + fileName, 'utf8'); 21 | 22 | if(content.includes("BEGIN CERTIFICATE")){ 23 | cert = content; 24 | } 25 | 26 | } 27 | 28 | } 29 | 30 | } catch (err) { 31 | 32 | console.log("read directory fail"); 33 | console.log(err); 34 | 35 | } 36 | 37 | if(cert){ 38 | 39 | let extract = new crypto.X509Certificate(cert).subject; 40 | let res = extract.match(/CN=([^ ]+)/); 41 | return res[1] || ""; 42 | 43 | }else{ 44 | 45 | return ""; 46 | 47 | } 48 | 49 | } 50 | 51 | } 52 | 53 | export default mod; 54 | -------------------------------------------------------------------------------- /front/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /front/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["svelte.svelte-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /front/README.md: -------------------------------------------------------------------------------- 1 | # Svelte + Vite 2 | 3 | This template should help get you started developing with Svelte in Vite. 4 | 5 | ## Recommended IDE Setup 6 | 7 | [VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). 8 | 9 | ## Need an official Svelte framework? 10 | 11 | Check out [SvelteKit](https://github.com/sveltejs/kit#readme), which is also powered by Vite. Deploy anywhere with its serverless-first approach and adapt to various platforms, with out of the box support for TypeScript, SCSS, and Less, and easily-added support for mdsvex, GraphQL, PostCSS, Tailwind CSS, and more. 12 | 13 | ## Technical considerations 14 | 15 | **Why use this over SvelteKit?** 16 | 17 | - It brings its own routing solution which might not be preferable for some users. 18 | - It is first and foremost a framework that just happens to use Vite under the hood, not a Vite app. 19 | 20 | This template contains as little as possible to get started with Vite + Svelte, while taking into account the developer experience with regards to HMR and intellisense. It demonstrates capabilities on par with the other `create-vite` templates and is a good starting point for beginners dipping their toes into a Vite + Svelte project. 21 | 22 | Should you later need the extended capabilities and extensibility provided by SvelteKit, the template has been structured similarly to SvelteKit so that it is easy to migrate. 23 | 24 | **Why `global.d.ts` instead of `compilerOptions.types` inside `jsconfig.json` or `tsconfig.json`?** 25 | 26 | Setting `compilerOptions.types` shuts out all other types not explicitly listed in the configuration. Using triple-slash references keeps the default TypeScript setting of accepting type information from the entire workspace, while also adding `svelte` and `vite/client` type information. 27 | 28 | **Why include `.vscode/extensions.json`?** 29 | 30 | Other templates indirectly recommend extensions via the README, but this file allows VS Code to prompt the user to install the recommended extension upon opening the project. 31 | 32 | **Why enable `checkJs` in the JS template?** 33 | 34 | It is likely that most cases of changing variable types in runtime are likely to be accidental, rather than deliberate. This provides advanced typechecking out of the box. Should you like to take advantage of the dynamically-typed nature of JavaScript, it is trivial to change the configuration. 35 | 36 | **Why is HMR not preserving my local component state?** 37 | 38 | HMR state preservation comes with a number of gotchas! It has been disabled by default in both `svelte-hmr` and `@sveltejs/vite-plugin-svelte` due to its often surprising behavior. You can read the details [here](https://github.com/sveltejs/svelte-hmr/tree/master/packages/svelte-hmr#preservation-of-local-state). 39 | 40 | If you have state that's important to retain within a component, consider creating an external store which would not be replaced by HMR. 41 | 42 | ```js 43 | // store.js 44 | // An extremely simple external store 45 | import { writable } from 'svelte/store' 46 | export default writable(0) 47 | ``` 48 | -------------------------------------------------------------------------------- /front/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /front/html/manage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /front/html/public/dialog.css: -------------------------------------------------------------------------------- 1 | #dialogBox { 2 | 3 | background-color: rgb(255,255,255); 4 | 5 | } 6 | -------------------------------------------------------------------------------- /front/html/public/roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhoros/NortixMail/6f1dad9afa312b51152b0e9c3f330db61e167c58/front/html/public/roboto.ttf -------------------------------------------------------------------------------- /front/html/public/trashIcon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front/html/src/helper.js: -------------------------------------------------------------------------------- 1 | const mod = { 2 | 3 | fetchPost: (path, data, callback) => { 4 | 5 | fetch(path, { 6 | 7 | method: 'POST', 8 | headers: { 9 | 'Content-Type': 'application/json' 10 | }, 11 | body: JSON.stringify(data) 12 | 13 | }) 14 | .then(response => { 15 | 16 | if (!response.ok) { 17 | throw new Error('Network response != OK: ' + response.statusText); 18 | } 19 | 20 | return response.text(); 21 | 22 | }) 23 | .then(res => { 24 | 25 | try { 26 | callback(JSON.parse(res)); 27 | } catch (e) { 28 | callback(res); 29 | } 30 | 31 | }) 32 | .catch(error => { 33 | console.error(error); 34 | }); 35 | 36 | }, 37 | 38 | copyToClipboard: (text) => { 39 | 40 | if (navigator.clipboard && navigator.clipboard.writeText) { 41 | 42 | navigator.clipboard.writeText(text) 43 | 44 | } else { 45 | 46 | // sometimes clipboard api has problems on mobile browsers or won't work unless https connection, fallback 47 | // into this method instead 48 | const element = document.createElement('textarea') 49 | element.value = text 50 | document.body.appendChild(element) 51 | element.select() 52 | document.execCommand('copy') 53 | document.body.removeChild(element) 54 | 55 | } 56 | } 57 | 58 | } 59 | 60 | export default mod; 61 | -------------------------------------------------------------------------------- /front/html/src/index.js: -------------------------------------------------------------------------------- 1 | import './style.css' 2 | import './layout.css' 3 | import App from './index.svelte' 4 | 5 | const app = new App({ 6 | target: document.getElementById('app'), 7 | }) 8 | 9 | export default app 10 | -------------------------------------------------------------------------------- /front/html/src/index.svelte: -------------------------------------------------------------------------------- 1 | 181 | 182 |
183 | 184 |
185 | 186 | 187 |
188 | 189 |
190 | 191 | 200 | 201 | {domainName} 202 | 203 | 204 | 205 |
206 | 207 |
208 | 209 | {#if viewType == 'mails'} 210 | 211 | {#each mails as mail} 212 | 213 |
214 | 215 |
216 | 217 | {mail.sender} 218 |
219 | {mail.subject} 220 | 221 |
222 | 223 | 224 | 225 |
226 | 227 | 228 |
229 |
230 |
231 | 232 | {/each} 233 | 234 | {/if} 235 | 236 | {#if viewType == 'mailData'} 237 | 238 | {mailDataSender} 239 |
240 | {mailDataSubject} 241 | 242 | 243 |
244 |
245 |
246 | 247 |
248 |
249 | 250 |
251 | 252 | 253 | {/if} 254 | 255 |
256 | 257 |
258 | 259 | {page} 260 | 261 |
262 | 263 | 264 | 265 | 266 |
267 | 268 |
269 | 270 |
271 | -------------------------------------------------------------------------------- /front/html/src/layout.css: -------------------------------------------------------------------------------- 1 | /* This file contains the layout structure 2 | * for styling, open style.css 3 | * */ 4 | 5 | @font-face { 6 | font-family: 'globalFont'; /* Name to use in CSS */ 7 | src: url('/roboto.ttf') format('truetype'); /* Path to the font file */ 8 | font-weight: 500; 9 | } 10 | 11 | html, body, #app { 12 | 13 | width: 100%; 14 | height: 100%; 15 | padding: 0; 16 | margin: 0; 17 | font-family: globalFont; 18 | 19 | } 20 | 21 | main { 22 | 23 | width: 100%; 24 | height: 100%; 25 | display: flex; 26 | flex-direction: column; 27 | align-items: center; 28 | 29 | } 30 | 31 | 32 | .adaptWidth { 33 | 34 | width: min(800px, calc(100% - 40px)); 35 | 36 | } 37 | 38 | .fillWidth { 39 | 40 | width: 100%; 41 | 42 | } 43 | 44 | .adaptWidthSmall { 45 | 46 | width: min(600px, 100%); 47 | 48 | } 49 | 50 | .fillHeight { 51 | 52 | height: 100%; 53 | 54 | } 55 | 56 | .flexCenterCol { 57 | 58 | display: flex; 59 | justify-content: center; 60 | align-items: center; 61 | flex-direction: column; 62 | 63 | } 64 | 65 | .gap { 66 | 67 | gap: 10px; 68 | 69 | } 70 | 71 | .clickable {} 72 | .clickable:hover { 73 | 74 | cursor: pointer; 75 | 76 | } 77 | 78 | button, select, input, span { 79 | 80 | font-size: 1.5rem; 81 | font-family: globalFont; 82 | overflow-wrap: anywhere; 83 | 84 | } 85 | 86 | span { 87 | 88 | touch-action: manipulation; /* Prevent default touch behavior */ 89 | user-select: none; 90 | 91 | } 92 | 93 | #mailList { 94 | 95 | flex: 1; 96 | height: 100%; 97 | 98 | box-sizing: border-box; 99 | padding: 10px; 100 | 101 | display: flex; 102 | flex-direction: column; 103 | 104 | overflow: auto; 105 | 106 | } 107 | 108 | #dialogBox { 109 | 110 | outline: 1px solid black; 111 | 112 | } 113 | 114 | @media (prefers-color-scheme: dark) { 115 | 116 | #dialogBox { 117 | 118 | outline: 1px solid white; 119 | 120 | } 121 | 122 | } 123 | -------------------------------------------------------------------------------- /front/html/src/lib/dialog.js: -------------------------------------------------------------------------------- 1 | let dialogConfString = ` 2 |
3 | 4 |
5 | 6 | 7 | 8 |
9 | 10 | 11 |
12 | 13 |
14 | 15 |
16 | ` 17 | 18 | let dialogAlertString = ` 19 |
20 | 21 |
22 | 23 | 24 | 25 |
26 | 27 |
28 | 29 |
30 | 31 |
32 | ` 33 | 34 | let callbackFunc; 35 | function dialogConfirmYesClicked(){ 36 | 37 | callbackFunc(true) 38 | document.getElementById("dialogRoot").remove(); 39 | 40 | } 41 | 42 | function dialogConfirmNoClicked(){ 43 | 44 | callbackFunc(false) 45 | document.getElementById("dialogRoot").remove(); 46 | 47 | } 48 | 49 | function dialogAlertOkClicked(){ 50 | 51 | document.getElementById("dialogRoot").remove(); 52 | 53 | } 54 | 55 | function conf(text, callback){ 56 | 57 | callbackFunc = callback; 58 | let div = document.createElement("div"); 59 | div.id = "dialogRoot"; 60 | div.style.width = "100%"; 61 | div.style.height = "100%"; 62 | div.style.position = "absolute"; 63 | div.style.top = "0"; 64 | div.style.left = "0"; 65 | div.innerHTML = dialogConfString; 66 | 67 | document.getElementsByTagName("body")[0].appendChild(div); 68 | document.getElementById("dialogBoxText").innerHTML = text; 69 | document.getElementById("dialogBoxYesButton").focus(); 70 | 71 | 72 | } 73 | 74 | function alrt(text, callback){ 75 | 76 | callbackFunc = callback; 77 | let div = document.createElement("div"); 78 | div.id = "dialogRoot"; 79 | div.style.width = "100%"; 80 | div.style.height = "100%"; 81 | div.style.position = "absolute"; 82 | div.style.top = "0"; 83 | div.style.left = "0"; 84 | div.innerHTML = dialogAlertString; 85 | 86 | document.getElementsByTagName("body")[0].appendChild(div); 87 | document.getElementById("dialogBoxText").innerHTML = text; 88 | document.getElementById("dialogBoxOkButton").focus(); 89 | 90 | } 91 | 92 | function init(){ 93 | 94 | window.dialogConfirmNoClicked = dialogConfirmNoClicked; 95 | window.dialogConfirmYesClicked = dialogConfirmYesClicked; 96 | window.dialogAlertOkClicked = dialogAlertOkClicked; 97 | } 98 | 99 | export default {conf, alrt, init} 100 | -------------------------------------------------------------------------------- /front/html/src/manage.js: -------------------------------------------------------------------------------- 1 | import './style.css' 2 | import './layout.css' 3 | import App from './manage.svelte' 4 | 5 | const app = new App({ 6 | target: document.getElementById('app'), 7 | }) 8 | 9 | export default app 10 | -------------------------------------------------------------------------------- /front/html/src/manage.svelte: -------------------------------------------------------------------------------- 1 | 111 | 112 |
113 | 114 |
115 | 116 |
117 | 118 | 119 | New address 120 |
121 | 122 | 123 | {hostName} 124 | 125 |
126 | 127 | 128 |
129 | 130 | 131 | Manage addresses 132 |
133 | 134 | 143 | 144 | {hostName} 145 | 146 |
147 | 148 | 149 | 150 | 151 |
152 | 153 |
154 | 155 |
156 | 157 |
158 | -------------------------------------------------------------------------------- /front/html/src/style.css: -------------------------------------------------------------------------------- 1 | button { 2 | 3 | border-radius: 7px; 4 | outline: 1px solid black; 5 | background: rgb(0,0,0,0); 6 | color: rgb(0,0,0); 7 | padding-top: 5px; 8 | padding-bottom: 5px; 9 | border: none; 10 | 11 | } 12 | 13 | #dialogBox { 14 | 15 | background-color: rgb(255,255,255); 16 | border-radius: 7px; 17 | 18 | } 19 | 20 | input, select { 21 | 22 | border-radius: 7px; 23 | outline: 1px solid black; 24 | border: none; 25 | 26 | } 27 | 28 | input[type="image"] { 29 | 30 | background-color: transparent; 31 | outline: none; 32 | 33 | } 34 | 35 | button:hover { 36 | 37 | cursor: pointer; 38 | 39 | } 40 | 41 | button:active { 42 | 43 | transform: scale(0.95); 44 | 45 | } 46 | 47 | select:hover { 48 | 49 | cursor: pointer; 50 | 51 | } 52 | 53 | .counter { 54 | 55 | background-color: transparent; 56 | color: rgb(12,12,12); 57 | outline: none 58 | 59 | } 60 | 61 | #mailList { 62 | 63 | border-radius: 7px; 64 | outline: 2px solid rgb(200, 200, 200); 65 | 66 | } 67 | 68 | @media (prefers-color-scheme: dark) { 69 | 70 | body { 71 | 72 | background-color: rgb(15,15,15); 73 | color: rgb(255,255,255); 74 | 75 | } 76 | 77 | button { 78 | 79 | color: rgb(255, 255, 255); 80 | outline: 1px solid white; 81 | 82 | } 83 | 84 | input, select { 85 | 86 | border-radius: 7px; 87 | outline: 1px solid white; 88 | background-color: rgb(15,15,15); 89 | color: white; 90 | border: none; 91 | 92 | } 93 | 94 | .counter { 95 | 96 | color: rgb(255, 255, 255); 97 | 98 | } 99 | 100 | #dialogBox { 101 | 102 | background-color: rgb(15,15,15); 103 | 104 | } 105 | 106 | #mailList { 107 | 108 | outline: 2px solid rgb(55, 55, 55); 109 | 110 | } 111 | 112 | } 113 | -------------------------------------------------------------------------------- /front/html/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | -------------------------------------------------------------------------------- /front/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "moduleResolution": "bundler", 4 | "target": "ESNext", 5 | "module": "ESNext", 6 | /** 7 | * svelte-preprocess cannot figure out whether you have 8 | * a value or a type, so tell TypeScript to enforce using 9 | * `import type` instead of `import` for Types. 10 | */ 11 | "verbatimModuleSyntax": true, 12 | "isolatedModules": true, 13 | "resolveJsonModule": true, 14 | /** 15 | * To have warnings / errors of the Svelte compiler at the 16 | * correct position, enable source maps by default. 17 | */ 18 | "sourceMap": true, 19 | "esModuleInterop": true, 20 | "skipLibCheck": true, 21 | /** 22 | * Typecheck JS in `.svelte` and `.js` files by default. 23 | * Disable this if you'd like to use dynamic types. 24 | */ 25 | "checkJs": true 26 | }, 27 | /** 28 | * Use global.d.ts instead of compilerOptions.types 29 | * to avoid limiting type declarations. 30 | */ 31 | "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] 32 | } 33 | -------------------------------------------------------------------------------- /front/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte", 3 | "version": "0.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "svelte", 9 | "version": "0.0.0", 10 | "devDependencies": { 11 | "@sveltejs/vite-plugin-svelte": "^3.1.1", 12 | "svelte": "^4.2.18", 13 | "vite": "^5.4.1" 14 | } 15 | }, 16 | "node_modules/@ampproject/remapping": { 17 | "version": "2.3.0", 18 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 19 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 20 | "dev": true, 21 | "license": "Apache-2.0", 22 | "dependencies": { 23 | "@jridgewell/gen-mapping": "^0.3.5", 24 | "@jridgewell/trace-mapping": "^0.3.24" 25 | }, 26 | "engines": { 27 | "node": ">=6.0.0" 28 | } 29 | }, 30 | "node_modules/@esbuild/aix-ppc64": { 31 | "version": "0.21.5", 32 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 33 | "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 34 | "cpu": [ 35 | "ppc64" 36 | ], 37 | "dev": true, 38 | "license": "MIT", 39 | "optional": true, 40 | "os": [ 41 | "aix" 42 | ], 43 | "engines": { 44 | "node": ">=12" 45 | } 46 | }, 47 | "node_modules/@esbuild/android-arm": { 48 | "version": "0.21.5", 49 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 50 | "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 51 | "cpu": [ 52 | "arm" 53 | ], 54 | "dev": true, 55 | "license": "MIT", 56 | "optional": true, 57 | "os": [ 58 | "android" 59 | ], 60 | "engines": { 61 | "node": ">=12" 62 | } 63 | }, 64 | "node_modules/@esbuild/android-arm64": { 65 | "version": "0.21.5", 66 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 67 | "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 68 | "cpu": [ 69 | "arm64" 70 | ], 71 | "dev": true, 72 | "license": "MIT", 73 | "optional": true, 74 | "os": [ 75 | "android" 76 | ], 77 | "engines": { 78 | "node": ">=12" 79 | } 80 | }, 81 | "node_modules/@esbuild/android-x64": { 82 | "version": "0.21.5", 83 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 84 | "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 85 | "cpu": [ 86 | "x64" 87 | ], 88 | "dev": true, 89 | "license": "MIT", 90 | "optional": true, 91 | "os": [ 92 | "android" 93 | ], 94 | "engines": { 95 | "node": ">=12" 96 | } 97 | }, 98 | "node_modules/@esbuild/darwin-arm64": { 99 | "version": "0.21.5", 100 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 101 | "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 102 | "cpu": [ 103 | "arm64" 104 | ], 105 | "dev": true, 106 | "license": "MIT", 107 | "optional": true, 108 | "os": [ 109 | "darwin" 110 | ], 111 | "engines": { 112 | "node": ">=12" 113 | } 114 | }, 115 | "node_modules/@esbuild/darwin-x64": { 116 | "version": "0.21.5", 117 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 118 | "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 119 | "cpu": [ 120 | "x64" 121 | ], 122 | "dev": true, 123 | "license": "MIT", 124 | "optional": true, 125 | "os": [ 126 | "darwin" 127 | ], 128 | "engines": { 129 | "node": ">=12" 130 | } 131 | }, 132 | "node_modules/@esbuild/freebsd-arm64": { 133 | "version": "0.21.5", 134 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 135 | "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 136 | "cpu": [ 137 | "arm64" 138 | ], 139 | "dev": true, 140 | "license": "MIT", 141 | "optional": true, 142 | "os": [ 143 | "freebsd" 144 | ], 145 | "engines": { 146 | "node": ">=12" 147 | } 148 | }, 149 | "node_modules/@esbuild/freebsd-x64": { 150 | "version": "0.21.5", 151 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 152 | "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 153 | "cpu": [ 154 | "x64" 155 | ], 156 | "dev": true, 157 | "license": "MIT", 158 | "optional": true, 159 | "os": [ 160 | "freebsd" 161 | ], 162 | "engines": { 163 | "node": ">=12" 164 | } 165 | }, 166 | "node_modules/@esbuild/linux-arm": { 167 | "version": "0.21.5", 168 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 169 | "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 170 | "cpu": [ 171 | "arm" 172 | ], 173 | "dev": true, 174 | "license": "MIT", 175 | "optional": true, 176 | "os": [ 177 | "linux" 178 | ], 179 | "engines": { 180 | "node": ">=12" 181 | } 182 | }, 183 | "node_modules/@esbuild/linux-arm64": { 184 | "version": "0.21.5", 185 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 186 | "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 187 | "cpu": [ 188 | "arm64" 189 | ], 190 | "dev": true, 191 | "license": "MIT", 192 | "optional": true, 193 | "os": [ 194 | "linux" 195 | ], 196 | "engines": { 197 | "node": ">=12" 198 | } 199 | }, 200 | "node_modules/@esbuild/linux-ia32": { 201 | "version": "0.21.5", 202 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 203 | "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 204 | "cpu": [ 205 | "ia32" 206 | ], 207 | "dev": true, 208 | "license": "MIT", 209 | "optional": true, 210 | "os": [ 211 | "linux" 212 | ], 213 | "engines": { 214 | "node": ">=12" 215 | } 216 | }, 217 | "node_modules/@esbuild/linux-loong64": { 218 | "version": "0.21.5", 219 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 220 | "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 221 | "cpu": [ 222 | "loong64" 223 | ], 224 | "dev": true, 225 | "license": "MIT", 226 | "optional": true, 227 | "os": [ 228 | "linux" 229 | ], 230 | "engines": { 231 | "node": ">=12" 232 | } 233 | }, 234 | "node_modules/@esbuild/linux-mips64el": { 235 | "version": "0.21.5", 236 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 237 | "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 238 | "cpu": [ 239 | "mips64el" 240 | ], 241 | "dev": true, 242 | "license": "MIT", 243 | "optional": true, 244 | "os": [ 245 | "linux" 246 | ], 247 | "engines": { 248 | "node": ">=12" 249 | } 250 | }, 251 | "node_modules/@esbuild/linux-ppc64": { 252 | "version": "0.21.5", 253 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 254 | "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 255 | "cpu": [ 256 | "ppc64" 257 | ], 258 | "dev": true, 259 | "license": "MIT", 260 | "optional": true, 261 | "os": [ 262 | "linux" 263 | ], 264 | "engines": { 265 | "node": ">=12" 266 | } 267 | }, 268 | "node_modules/@esbuild/linux-riscv64": { 269 | "version": "0.21.5", 270 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 271 | "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 272 | "cpu": [ 273 | "riscv64" 274 | ], 275 | "dev": true, 276 | "license": "MIT", 277 | "optional": true, 278 | "os": [ 279 | "linux" 280 | ], 281 | "engines": { 282 | "node": ">=12" 283 | } 284 | }, 285 | "node_modules/@esbuild/linux-s390x": { 286 | "version": "0.21.5", 287 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 288 | "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 289 | "cpu": [ 290 | "s390x" 291 | ], 292 | "dev": true, 293 | "license": "MIT", 294 | "optional": true, 295 | "os": [ 296 | "linux" 297 | ], 298 | "engines": { 299 | "node": ">=12" 300 | } 301 | }, 302 | "node_modules/@esbuild/linux-x64": { 303 | "version": "0.21.5", 304 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 305 | "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 306 | "cpu": [ 307 | "x64" 308 | ], 309 | "dev": true, 310 | "license": "MIT", 311 | "optional": true, 312 | "os": [ 313 | "linux" 314 | ], 315 | "engines": { 316 | "node": ">=12" 317 | } 318 | }, 319 | "node_modules/@esbuild/netbsd-x64": { 320 | "version": "0.21.5", 321 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 322 | "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 323 | "cpu": [ 324 | "x64" 325 | ], 326 | "dev": true, 327 | "license": "MIT", 328 | "optional": true, 329 | "os": [ 330 | "netbsd" 331 | ], 332 | "engines": { 333 | "node": ">=12" 334 | } 335 | }, 336 | "node_modules/@esbuild/openbsd-x64": { 337 | "version": "0.21.5", 338 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 339 | "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 340 | "cpu": [ 341 | "x64" 342 | ], 343 | "dev": true, 344 | "license": "MIT", 345 | "optional": true, 346 | "os": [ 347 | "openbsd" 348 | ], 349 | "engines": { 350 | "node": ">=12" 351 | } 352 | }, 353 | "node_modules/@esbuild/sunos-x64": { 354 | "version": "0.21.5", 355 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 356 | "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 357 | "cpu": [ 358 | "x64" 359 | ], 360 | "dev": true, 361 | "license": "MIT", 362 | "optional": true, 363 | "os": [ 364 | "sunos" 365 | ], 366 | "engines": { 367 | "node": ">=12" 368 | } 369 | }, 370 | "node_modules/@esbuild/win32-arm64": { 371 | "version": "0.21.5", 372 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 373 | "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 374 | "cpu": [ 375 | "arm64" 376 | ], 377 | "dev": true, 378 | "license": "MIT", 379 | "optional": true, 380 | "os": [ 381 | "win32" 382 | ], 383 | "engines": { 384 | "node": ">=12" 385 | } 386 | }, 387 | "node_modules/@esbuild/win32-ia32": { 388 | "version": "0.21.5", 389 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 390 | "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 391 | "cpu": [ 392 | "ia32" 393 | ], 394 | "dev": true, 395 | "license": "MIT", 396 | "optional": true, 397 | "os": [ 398 | "win32" 399 | ], 400 | "engines": { 401 | "node": ">=12" 402 | } 403 | }, 404 | "node_modules/@esbuild/win32-x64": { 405 | "version": "0.21.5", 406 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 407 | "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 408 | "cpu": [ 409 | "x64" 410 | ], 411 | "dev": true, 412 | "license": "MIT", 413 | "optional": true, 414 | "os": [ 415 | "win32" 416 | ], 417 | "engines": { 418 | "node": ">=12" 419 | } 420 | }, 421 | "node_modules/@jridgewell/gen-mapping": { 422 | "version": "0.3.5", 423 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 424 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 425 | "dev": true, 426 | "license": "MIT", 427 | "dependencies": { 428 | "@jridgewell/set-array": "^1.2.1", 429 | "@jridgewell/sourcemap-codec": "^1.4.10", 430 | "@jridgewell/trace-mapping": "^0.3.24" 431 | }, 432 | "engines": { 433 | "node": ">=6.0.0" 434 | } 435 | }, 436 | "node_modules/@jridgewell/resolve-uri": { 437 | "version": "3.1.2", 438 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 439 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 440 | "dev": true, 441 | "license": "MIT", 442 | "engines": { 443 | "node": ">=6.0.0" 444 | } 445 | }, 446 | "node_modules/@jridgewell/set-array": { 447 | "version": "1.2.1", 448 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 449 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 450 | "dev": true, 451 | "license": "MIT", 452 | "engines": { 453 | "node": ">=6.0.0" 454 | } 455 | }, 456 | "node_modules/@jridgewell/sourcemap-codec": { 457 | "version": "1.5.0", 458 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 459 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 460 | "dev": true, 461 | "license": "MIT" 462 | }, 463 | "node_modules/@jridgewell/trace-mapping": { 464 | "version": "0.3.25", 465 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 466 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 467 | "dev": true, 468 | "license": "MIT", 469 | "dependencies": { 470 | "@jridgewell/resolve-uri": "^3.1.0", 471 | "@jridgewell/sourcemap-codec": "^1.4.14" 472 | } 473 | }, 474 | "node_modules/@rollup/rollup-android-arm-eabi": { 475 | "version": "4.22.4", 476 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.4.tgz", 477 | "integrity": "sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==", 478 | "cpu": [ 479 | "arm" 480 | ], 481 | "dev": true, 482 | "license": "MIT", 483 | "optional": true, 484 | "os": [ 485 | "android" 486 | ] 487 | }, 488 | "node_modules/@rollup/rollup-android-arm64": { 489 | "version": "4.22.4", 490 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.4.tgz", 491 | "integrity": "sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==", 492 | "cpu": [ 493 | "arm64" 494 | ], 495 | "dev": true, 496 | "license": "MIT", 497 | "optional": true, 498 | "os": [ 499 | "android" 500 | ] 501 | }, 502 | "node_modules/@rollup/rollup-darwin-arm64": { 503 | "version": "4.22.4", 504 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.4.tgz", 505 | "integrity": "sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==", 506 | "cpu": [ 507 | "arm64" 508 | ], 509 | "dev": true, 510 | "license": "MIT", 511 | "optional": true, 512 | "os": [ 513 | "darwin" 514 | ] 515 | }, 516 | "node_modules/@rollup/rollup-darwin-x64": { 517 | "version": "4.22.4", 518 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.4.tgz", 519 | "integrity": "sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==", 520 | "cpu": [ 521 | "x64" 522 | ], 523 | "dev": true, 524 | "license": "MIT", 525 | "optional": true, 526 | "os": [ 527 | "darwin" 528 | ] 529 | }, 530 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 531 | "version": "4.22.4", 532 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.4.tgz", 533 | "integrity": "sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==", 534 | "cpu": [ 535 | "arm" 536 | ], 537 | "dev": true, 538 | "license": "MIT", 539 | "optional": true, 540 | "os": [ 541 | "linux" 542 | ] 543 | }, 544 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 545 | "version": "4.22.4", 546 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.4.tgz", 547 | "integrity": "sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==", 548 | "cpu": [ 549 | "arm" 550 | ], 551 | "dev": true, 552 | "license": "MIT", 553 | "optional": true, 554 | "os": [ 555 | "linux" 556 | ] 557 | }, 558 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 559 | "version": "4.22.4", 560 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.4.tgz", 561 | "integrity": "sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==", 562 | "cpu": [ 563 | "arm64" 564 | ], 565 | "dev": true, 566 | "license": "MIT", 567 | "optional": true, 568 | "os": [ 569 | "linux" 570 | ] 571 | }, 572 | "node_modules/@rollup/rollup-linux-arm64-musl": { 573 | "version": "4.22.4", 574 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.4.tgz", 575 | "integrity": "sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==", 576 | "cpu": [ 577 | "arm64" 578 | ], 579 | "dev": true, 580 | "license": "MIT", 581 | "optional": true, 582 | "os": [ 583 | "linux" 584 | ] 585 | }, 586 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 587 | "version": "4.22.4", 588 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.4.tgz", 589 | "integrity": "sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==", 590 | "cpu": [ 591 | "ppc64" 592 | ], 593 | "dev": true, 594 | "license": "MIT", 595 | "optional": true, 596 | "os": [ 597 | "linux" 598 | ] 599 | }, 600 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 601 | "version": "4.22.4", 602 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.4.tgz", 603 | "integrity": "sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==", 604 | "cpu": [ 605 | "riscv64" 606 | ], 607 | "dev": true, 608 | "license": "MIT", 609 | "optional": true, 610 | "os": [ 611 | "linux" 612 | ] 613 | }, 614 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 615 | "version": "4.22.4", 616 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.4.tgz", 617 | "integrity": "sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==", 618 | "cpu": [ 619 | "s390x" 620 | ], 621 | "dev": true, 622 | "license": "MIT", 623 | "optional": true, 624 | "os": [ 625 | "linux" 626 | ] 627 | }, 628 | "node_modules/@rollup/rollup-linux-x64-gnu": { 629 | "version": "4.22.4", 630 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.4.tgz", 631 | "integrity": "sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==", 632 | "cpu": [ 633 | "x64" 634 | ], 635 | "dev": true, 636 | "license": "MIT", 637 | "optional": true, 638 | "os": [ 639 | "linux" 640 | ] 641 | }, 642 | "node_modules/@rollup/rollup-linux-x64-musl": { 643 | "version": "4.22.4", 644 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.4.tgz", 645 | "integrity": "sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==", 646 | "cpu": [ 647 | "x64" 648 | ], 649 | "dev": true, 650 | "license": "MIT", 651 | "optional": true, 652 | "os": [ 653 | "linux" 654 | ] 655 | }, 656 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 657 | "version": "4.22.4", 658 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.4.tgz", 659 | "integrity": "sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==", 660 | "cpu": [ 661 | "arm64" 662 | ], 663 | "dev": true, 664 | "license": "MIT", 665 | "optional": true, 666 | "os": [ 667 | "win32" 668 | ] 669 | }, 670 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 671 | "version": "4.22.4", 672 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.4.tgz", 673 | "integrity": "sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==", 674 | "cpu": [ 675 | "ia32" 676 | ], 677 | "dev": true, 678 | "license": "MIT", 679 | "optional": true, 680 | "os": [ 681 | "win32" 682 | ] 683 | }, 684 | "node_modules/@rollup/rollup-win32-x64-msvc": { 685 | "version": "4.22.4", 686 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.4.tgz", 687 | "integrity": "sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==", 688 | "cpu": [ 689 | "x64" 690 | ], 691 | "dev": true, 692 | "license": "MIT", 693 | "optional": true, 694 | "os": [ 695 | "win32" 696 | ] 697 | }, 698 | "node_modules/@sveltejs/vite-plugin-svelte": { 699 | "version": "3.1.2", 700 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-3.1.2.tgz", 701 | "integrity": "sha512-Txsm1tJvtiYeLUVRNqxZGKR/mI+CzuIQuc2gn+YCs9rMTowpNZ2Nqt53JdL8KF9bLhAf2ruR/dr9eZCwdTriRA==", 702 | "dev": true, 703 | "license": "MIT", 704 | "dependencies": { 705 | "@sveltejs/vite-plugin-svelte-inspector": "^2.1.0", 706 | "debug": "^4.3.4", 707 | "deepmerge": "^4.3.1", 708 | "kleur": "^4.1.5", 709 | "magic-string": "^0.30.10", 710 | "svelte-hmr": "^0.16.0", 711 | "vitefu": "^0.2.5" 712 | }, 713 | "engines": { 714 | "node": "^18.0.0 || >=20" 715 | }, 716 | "peerDependencies": { 717 | "svelte": "^4.0.0 || ^5.0.0-next.0", 718 | "vite": "^5.0.0" 719 | } 720 | }, 721 | "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 722 | "version": "2.1.0", 723 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-2.1.0.tgz", 724 | "integrity": "sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==", 725 | "dev": true, 726 | "license": "MIT", 727 | "dependencies": { 728 | "debug": "^4.3.4" 729 | }, 730 | "engines": { 731 | "node": "^18.0.0 || >=20" 732 | }, 733 | "peerDependencies": { 734 | "@sveltejs/vite-plugin-svelte": "^3.0.0", 735 | "svelte": "^4.0.0 || ^5.0.0-next.0", 736 | "vite": "^5.0.0" 737 | } 738 | }, 739 | "node_modules/@types/estree": { 740 | "version": "1.0.6", 741 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 742 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 743 | "dev": true, 744 | "license": "MIT" 745 | }, 746 | "node_modules/acorn": { 747 | "version": "8.12.1", 748 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", 749 | "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", 750 | "dev": true, 751 | "license": "MIT", 752 | "bin": { 753 | "acorn": "bin/acorn" 754 | }, 755 | "engines": { 756 | "node": ">=0.4.0" 757 | } 758 | }, 759 | "node_modules/aria-query": { 760 | "version": "5.3.2", 761 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 762 | "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 763 | "dev": true, 764 | "license": "Apache-2.0", 765 | "engines": { 766 | "node": ">= 0.4" 767 | } 768 | }, 769 | "node_modules/axobject-query": { 770 | "version": "4.1.0", 771 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 772 | "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 773 | "dev": true, 774 | "license": "Apache-2.0", 775 | "engines": { 776 | "node": ">= 0.4" 777 | } 778 | }, 779 | "node_modules/code-red": { 780 | "version": "1.0.4", 781 | "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", 782 | "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", 783 | "dev": true, 784 | "license": "MIT", 785 | "dependencies": { 786 | "@jridgewell/sourcemap-codec": "^1.4.15", 787 | "@types/estree": "^1.0.1", 788 | "acorn": "^8.10.0", 789 | "estree-walker": "^3.0.3", 790 | "periscopic": "^3.1.0" 791 | } 792 | }, 793 | "node_modules/css-tree": { 794 | "version": "2.3.1", 795 | "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", 796 | "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", 797 | "dev": true, 798 | "license": "MIT", 799 | "dependencies": { 800 | "mdn-data": "2.0.30", 801 | "source-map-js": "^1.0.1" 802 | }, 803 | "engines": { 804 | "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 805 | } 806 | }, 807 | "node_modules/debug": { 808 | "version": "4.3.7", 809 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 810 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 811 | "dev": true, 812 | "license": "MIT", 813 | "dependencies": { 814 | "ms": "^2.1.3" 815 | }, 816 | "engines": { 817 | "node": ">=6.0" 818 | }, 819 | "peerDependenciesMeta": { 820 | "supports-color": { 821 | "optional": true 822 | } 823 | } 824 | }, 825 | "node_modules/deepmerge": { 826 | "version": "4.3.1", 827 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 828 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 829 | "dev": true, 830 | "license": "MIT", 831 | "engines": { 832 | "node": ">=0.10.0" 833 | } 834 | }, 835 | "node_modules/esbuild": { 836 | "version": "0.21.5", 837 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 838 | "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 839 | "dev": true, 840 | "hasInstallScript": true, 841 | "license": "MIT", 842 | "bin": { 843 | "esbuild": "bin/esbuild" 844 | }, 845 | "engines": { 846 | "node": ">=12" 847 | }, 848 | "optionalDependencies": { 849 | "@esbuild/aix-ppc64": "0.21.5", 850 | "@esbuild/android-arm": "0.21.5", 851 | "@esbuild/android-arm64": "0.21.5", 852 | "@esbuild/android-x64": "0.21.5", 853 | "@esbuild/darwin-arm64": "0.21.5", 854 | "@esbuild/darwin-x64": "0.21.5", 855 | "@esbuild/freebsd-arm64": "0.21.5", 856 | "@esbuild/freebsd-x64": "0.21.5", 857 | "@esbuild/linux-arm": "0.21.5", 858 | "@esbuild/linux-arm64": "0.21.5", 859 | "@esbuild/linux-ia32": "0.21.5", 860 | "@esbuild/linux-loong64": "0.21.5", 861 | "@esbuild/linux-mips64el": "0.21.5", 862 | "@esbuild/linux-ppc64": "0.21.5", 863 | "@esbuild/linux-riscv64": "0.21.5", 864 | "@esbuild/linux-s390x": "0.21.5", 865 | "@esbuild/linux-x64": "0.21.5", 866 | "@esbuild/netbsd-x64": "0.21.5", 867 | "@esbuild/openbsd-x64": "0.21.5", 868 | "@esbuild/sunos-x64": "0.21.5", 869 | "@esbuild/win32-arm64": "0.21.5", 870 | "@esbuild/win32-ia32": "0.21.5", 871 | "@esbuild/win32-x64": "0.21.5" 872 | } 873 | }, 874 | "node_modules/estree-walker": { 875 | "version": "3.0.3", 876 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 877 | "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 878 | "dev": true, 879 | "license": "MIT", 880 | "dependencies": { 881 | "@types/estree": "^1.0.0" 882 | } 883 | }, 884 | "node_modules/fsevents": { 885 | "version": "2.3.3", 886 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 887 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 888 | "dev": true, 889 | "hasInstallScript": true, 890 | "license": "MIT", 891 | "optional": true, 892 | "os": [ 893 | "darwin" 894 | ], 895 | "engines": { 896 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 897 | } 898 | }, 899 | "node_modules/is-reference": { 900 | "version": "3.0.2", 901 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", 902 | "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", 903 | "dev": true, 904 | "license": "MIT", 905 | "dependencies": { 906 | "@types/estree": "*" 907 | } 908 | }, 909 | "node_modules/kleur": { 910 | "version": "4.1.5", 911 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 912 | "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 913 | "dev": true, 914 | "license": "MIT", 915 | "engines": { 916 | "node": ">=6" 917 | } 918 | }, 919 | "node_modules/locate-character": { 920 | "version": "3.0.0", 921 | "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 922 | "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", 923 | "dev": true, 924 | "license": "MIT" 925 | }, 926 | "node_modules/magic-string": { 927 | "version": "0.30.11", 928 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", 929 | "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", 930 | "dev": true, 931 | "license": "MIT", 932 | "dependencies": { 933 | "@jridgewell/sourcemap-codec": "^1.5.0" 934 | } 935 | }, 936 | "node_modules/mdn-data": { 937 | "version": "2.0.30", 938 | "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", 939 | "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", 940 | "dev": true, 941 | "license": "CC0-1.0" 942 | }, 943 | "node_modules/ms": { 944 | "version": "2.1.3", 945 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 946 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 947 | "dev": true, 948 | "license": "MIT" 949 | }, 950 | "node_modules/nanoid": { 951 | "version": "3.3.8", 952 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 953 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 954 | "dev": true, 955 | "funding": [ 956 | { 957 | "type": "github", 958 | "url": "https://github.com/sponsors/ai" 959 | } 960 | ], 961 | "license": "MIT", 962 | "bin": { 963 | "nanoid": "bin/nanoid.cjs" 964 | }, 965 | "engines": { 966 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 967 | } 968 | }, 969 | "node_modules/periscopic": { 970 | "version": "3.1.0", 971 | "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", 972 | "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", 973 | "dev": true, 974 | "license": "MIT", 975 | "dependencies": { 976 | "@types/estree": "^1.0.0", 977 | "estree-walker": "^3.0.0", 978 | "is-reference": "^3.0.0" 979 | } 980 | }, 981 | "node_modules/picocolors": { 982 | "version": "1.1.0", 983 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", 984 | "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", 985 | "dev": true, 986 | "license": "ISC" 987 | }, 988 | "node_modules/postcss": { 989 | "version": "8.4.47", 990 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", 991 | "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", 992 | "dev": true, 993 | "funding": [ 994 | { 995 | "type": "opencollective", 996 | "url": "https://opencollective.com/postcss/" 997 | }, 998 | { 999 | "type": "tidelift", 1000 | "url": "https://tidelift.com/funding/github/npm/postcss" 1001 | }, 1002 | { 1003 | "type": "github", 1004 | "url": "https://github.com/sponsors/ai" 1005 | } 1006 | ], 1007 | "license": "MIT", 1008 | "dependencies": { 1009 | "nanoid": "^3.3.7", 1010 | "picocolors": "^1.1.0", 1011 | "source-map-js": "^1.2.1" 1012 | }, 1013 | "engines": { 1014 | "node": "^10 || ^12 || >=14" 1015 | } 1016 | }, 1017 | "node_modules/rollup": { 1018 | "version": "4.22.4", 1019 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.22.4.tgz", 1020 | "integrity": "sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==", 1021 | "dev": true, 1022 | "license": "MIT", 1023 | "dependencies": { 1024 | "@types/estree": "1.0.5" 1025 | }, 1026 | "bin": { 1027 | "rollup": "dist/bin/rollup" 1028 | }, 1029 | "engines": { 1030 | "node": ">=18.0.0", 1031 | "npm": ">=8.0.0" 1032 | }, 1033 | "optionalDependencies": { 1034 | "@rollup/rollup-android-arm-eabi": "4.22.4", 1035 | "@rollup/rollup-android-arm64": "4.22.4", 1036 | "@rollup/rollup-darwin-arm64": "4.22.4", 1037 | "@rollup/rollup-darwin-x64": "4.22.4", 1038 | "@rollup/rollup-linux-arm-gnueabihf": "4.22.4", 1039 | "@rollup/rollup-linux-arm-musleabihf": "4.22.4", 1040 | "@rollup/rollup-linux-arm64-gnu": "4.22.4", 1041 | "@rollup/rollup-linux-arm64-musl": "4.22.4", 1042 | "@rollup/rollup-linux-powerpc64le-gnu": "4.22.4", 1043 | "@rollup/rollup-linux-riscv64-gnu": "4.22.4", 1044 | "@rollup/rollup-linux-s390x-gnu": "4.22.4", 1045 | "@rollup/rollup-linux-x64-gnu": "4.22.4", 1046 | "@rollup/rollup-linux-x64-musl": "4.22.4", 1047 | "@rollup/rollup-win32-arm64-msvc": "4.22.4", 1048 | "@rollup/rollup-win32-ia32-msvc": "4.22.4", 1049 | "@rollup/rollup-win32-x64-msvc": "4.22.4", 1050 | "fsevents": "~2.3.2" 1051 | } 1052 | }, 1053 | "node_modules/rollup/node_modules/@types/estree": { 1054 | "version": "1.0.5", 1055 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 1056 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 1057 | "dev": true, 1058 | "license": "MIT" 1059 | }, 1060 | "node_modules/source-map-js": { 1061 | "version": "1.2.1", 1062 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 1063 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 1064 | "dev": true, 1065 | "license": "BSD-3-Clause", 1066 | "engines": { 1067 | "node": ">=0.10.0" 1068 | } 1069 | }, 1070 | "node_modules/svelte": { 1071 | "version": "4.2.19", 1072 | "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.19.tgz", 1073 | "integrity": "sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==", 1074 | "dev": true, 1075 | "license": "MIT", 1076 | "dependencies": { 1077 | "@ampproject/remapping": "^2.2.1", 1078 | "@jridgewell/sourcemap-codec": "^1.4.15", 1079 | "@jridgewell/trace-mapping": "^0.3.18", 1080 | "@types/estree": "^1.0.1", 1081 | "acorn": "^8.9.0", 1082 | "aria-query": "^5.3.0", 1083 | "axobject-query": "^4.0.0", 1084 | "code-red": "^1.0.3", 1085 | "css-tree": "^2.3.1", 1086 | "estree-walker": "^3.0.3", 1087 | "is-reference": "^3.0.1", 1088 | "locate-character": "^3.0.0", 1089 | "magic-string": "^0.30.4", 1090 | "periscopic": "^3.1.0" 1091 | }, 1092 | "engines": { 1093 | "node": ">=16" 1094 | } 1095 | }, 1096 | "node_modules/svelte-hmr": { 1097 | "version": "0.16.0", 1098 | "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.16.0.tgz", 1099 | "integrity": "sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==", 1100 | "dev": true, 1101 | "license": "ISC", 1102 | "engines": { 1103 | "node": "^12.20 || ^14.13.1 || >= 16" 1104 | }, 1105 | "peerDependencies": { 1106 | "svelte": "^3.19.0 || ^4.0.0" 1107 | } 1108 | }, 1109 | "node_modules/vite": { 1110 | "version": "5.4.14", 1111 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.14.tgz", 1112 | "integrity": "sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==", 1113 | "dev": true, 1114 | "license": "MIT", 1115 | "dependencies": { 1116 | "esbuild": "^0.21.3", 1117 | "postcss": "^8.4.43", 1118 | "rollup": "^4.20.0" 1119 | }, 1120 | "bin": { 1121 | "vite": "bin/vite.js" 1122 | }, 1123 | "engines": { 1124 | "node": "^18.0.0 || >=20.0.0" 1125 | }, 1126 | "funding": { 1127 | "url": "https://github.com/vitejs/vite?sponsor=1" 1128 | }, 1129 | "optionalDependencies": { 1130 | "fsevents": "~2.3.3" 1131 | }, 1132 | "peerDependencies": { 1133 | "@types/node": "^18.0.0 || >=20.0.0", 1134 | "less": "*", 1135 | "lightningcss": "^1.21.0", 1136 | "sass": "*", 1137 | "sass-embedded": "*", 1138 | "stylus": "*", 1139 | "sugarss": "*", 1140 | "terser": "^5.4.0" 1141 | }, 1142 | "peerDependenciesMeta": { 1143 | "@types/node": { 1144 | "optional": true 1145 | }, 1146 | "less": { 1147 | "optional": true 1148 | }, 1149 | "lightningcss": { 1150 | "optional": true 1151 | }, 1152 | "sass": { 1153 | "optional": true 1154 | }, 1155 | "sass-embedded": { 1156 | "optional": true 1157 | }, 1158 | "stylus": { 1159 | "optional": true 1160 | }, 1161 | "sugarss": { 1162 | "optional": true 1163 | }, 1164 | "terser": { 1165 | "optional": true 1166 | } 1167 | } 1168 | }, 1169 | "node_modules/vitefu": { 1170 | "version": "0.2.5", 1171 | "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.5.tgz", 1172 | "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", 1173 | "dev": true, 1174 | "license": "MIT", 1175 | "peerDependencies": { 1176 | "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" 1177 | }, 1178 | "peerDependenciesMeta": { 1179 | "vite": { 1180 | "optional": true 1181 | } 1182 | } 1183 | } 1184 | } 1185 | } 1186 | -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite build --watch", 8 | "build": "vite build", 9 | "preview": "vite preview" 10 | }, 11 | "devDependencies": { 12 | "@sveltejs/vite-plugin-svelte": "^3.1.1", 13 | "svelte": "^4.2.18", 14 | "vite": "^5.4.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /front/svelte.config.js: -------------------------------------------------------------------------------- 1 | import { vitePreprocess } from '@sveltejs/vite-plugin-svelte' 2 | 3 | export default { 4 | // Consult https://svelte.dev/docs#compile-time-svelte-preprocess 5 | // for more information about preprocessors 6 | preprocess: vitePreprocess(), 7 | } 8 | -------------------------------------------------------------------------------- /front/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import { svelte } from '@sveltejs/vite-plugin-svelte' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | 7 | root: './html', 8 | server: { 9 | watch: { 10 | usePolling: true, 11 | interval: 250, 12 | } 13 | }, 14 | plugins: [svelte()], 15 | build: { 16 | 17 | rollupOptions: { 18 | 19 | input: { 20 | 21 | main: './html/index.html', 22 | manage: './html/manage.html', 23 | 24 | }, 25 | 26 | }, 27 | 28 | outDir: './dist', 29 | emptyOutDir: true, 30 | 31 | } 32 | 33 | }) 34 | 35 | -------------------------------------------------------------------------------- /helper.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | const chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; 3 | 4 | let helper = { 5 | 6 | randomID: function(){ 7 | 8 | let resultStr = ""; 9 | for (let i=0; i<10; i++){ 10 | 11 | resultStr += chars[Math.floor(Math.random() * chars.length)]; 12 | 13 | } 14 | 15 | return new Date().getTime() + resultStr; 16 | 17 | } 18 | 19 | } 20 | 21 | export default helper; 22 | -------------------------------------------------------------------------------- /httpSrv.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | import express from 'express' 3 | import compression from 'compression' 4 | import config from './config.js' 5 | 6 | let mod = { 7 | 8 | start: function(db, domainName, port){ 9 | 10 | const app = express(); 11 | 12 | app.use(express.json()); 13 | app.use(compression()); 14 | app.use(express.static('./front/html/dist')); 15 | 16 | let refreshInterval = config.getConfig("MailRefreshInterval"); 17 | app.post('/addresses', (_req, res) => { 18 | 19 | try { 20 | 21 | let rows = db.prepare("SELECT addr FROM address").all(); 22 | res.json({addresses: rows, refreshInterval: refreshInterval}); 23 | 24 | } catch(err) { 25 | 26 | console.log("DB get addresses fail") 27 | console.log(err) 28 | 29 | } 30 | 31 | }) 32 | 33 | app.post('/domain', (req, res) => { 34 | 35 | if (domainName){ 36 | 37 | return res.status(200).send(domainName); 38 | 39 | }else{ 40 | 41 | return res.status(200).send(req.headers.host.split(':')[0]); 42 | 43 | } 44 | 45 | }) 46 | 47 | app.post('/addAddress', (req, res) => { 48 | 49 | const json = req.body; 50 | 51 | try { 52 | 53 | let rows = db.prepare("SELECT addr FROM address WHERE addr = ?").all(json.address); 54 | if(rows.length > 0){ 55 | 56 | return res.status(200).send("exist"); 57 | 58 | } 59 | 60 | db.prepare("INSERT INTO address (addr) VALUES (?)").run(json.address); 61 | return res.status(200).send("done"); 62 | 63 | } catch(err) { 64 | 65 | console.log("DB add addresses fail") 66 | console.log(err) 67 | 68 | } 69 | 70 | }) 71 | 72 | app.post('/deleteAddress', (req, res) => { 73 | 74 | const json = req.body; 75 | 76 | try { 77 | 78 | db.prepare("DELETE FROM address WHERE addr = ?").run(json.address); 79 | db.prepare("DELETE FROM mail WHERE recipient = ?").run(json.address); 80 | 81 | return res.status(200).send("done"); 82 | 83 | } catch(err) { 84 | 85 | console.log("DB delete address fail") 86 | console.log(err) 87 | 88 | } 89 | 90 | }) 91 | 92 | app.post('/deleteEmails', (req, res) => { 93 | 94 | const json = req.body; 95 | 96 | try { 97 | 98 | db.prepare("DELETE FROM mail WHERE recipient = ?").run(json.address); 99 | return res.status(200).send("done"); 100 | 101 | } catch(err) { 102 | 103 | console.log("DB delete address fail") 104 | console.log(err) 105 | 106 | } 107 | 108 | }) 109 | 110 | 111 | 112 | app.post('/mails', (req, res) => { 113 | 114 | const json = req.body; 115 | 116 | try { 117 | 118 | let rows = db.prepare("SELECT id, sender, subject FROM mail WHERE recipient = @recipient ORDER BY id DESC LIMIT @mailCount OFFSET (@page-1)*@mailCount").all({recipient: json.addr, page: json.page, mailCount: config.getConfig('MailCountPerPage')}); 119 | res.json(rows); 120 | 121 | } catch(err) { 122 | 123 | console.log("DB get mails fail") 124 | console.log(err) 125 | 126 | } 127 | 128 | }); 129 | 130 | app.post('/mailData', (req, res) => { 131 | 132 | const json = req.body; 133 | 134 | try { 135 | 136 | let rows = db.prepare("SELECT sender, subject, content FROM mail WHERE id = ?").all(json.id); 137 | res.json(rows[0]) 138 | 139 | } catch(err) { 140 | 141 | console.log("DB get mail data fail") 142 | console.log(err) 143 | 144 | } 145 | 146 | }); 147 | 148 | app.post('/deleteMail', (req, res) => { 149 | 150 | const json = req.body; 151 | 152 | try { 153 | 154 | db.prepare("DELETE FROM mail WHERE id = ?").run(json.id); 155 | res.status(200).send(); 156 | 157 | } catch(err) { 158 | 159 | console.log("DB delete mail fail") 160 | console.log(err) 161 | 162 | } 163 | 164 | }) 165 | 166 | app.use((err, req, res, next) => { 167 | console.error(err) 168 | }); 169 | 170 | app.listen(port, () => { 171 | console.log('http server listening at port: ' + port); 172 | }) 173 | 174 | } 175 | 176 | } 177 | 178 | 179 | export default mod; 180 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | import smtpSrv from './smtpSrv.js' 3 | import httpSrv from './httpSrv.js' 4 | import config from './config.js' 5 | import domain from './domain.js' 6 | import database from './database.js' 7 | 8 | config.init(); 9 | let db = database.init(); 10 | let domainName = domain.getDomainName(); 11 | 12 | smtpSrv.start(db, 25); 13 | httpSrv.start(db, domainName, 80); 14 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mail", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "mail", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "better-sqlite3": "^11.3.0", 13 | "compression": "^1.8.0", 14 | "express": "^4.21.0", 15 | "mailparser": "^3.7.1", 16 | "smtp-server": "^3.13.5" 17 | }, 18 | "devDependencies": { 19 | "concurrently": "^9.1.2", 20 | "nodemon": "^3.1.7" 21 | } 22 | }, 23 | "node_modules/@selderee/plugin-htmlparser2": { 24 | "version": "0.11.0", 25 | "resolved": "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.11.0.tgz", 26 | "integrity": "sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==", 27 | "license": "MIT", 28 | "dependencies": { 29 | "domhandler": "^5.0.3", 30 | "selderee": "^0.11.0" 31 | }, 32 | "funding": { 33 | "url": "https://ko-fi.com/killymxi" 34 | } 35 | }, 36 | "node_modules/accepts": { 37 | "version": "1.3.8", 38 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 39 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 40 | "license": "MIT", 41 | "dependencies": { 42 | "mime-types": "~2.1.34", 43 | "negotiator": "0.6.3" 44 | }, 45 | "engines": { 46 | "node": ">= 0.6" 47 | } 48 | }, 49 | "node_modules/accepts/node_modules/negotiator": { 50 | "version": "0.6.3", 51 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 52 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 53 | "license": "MIT", 54 | "engines": { 55 | "node": ">= 0.6" 56 | } 57 | }, 58 | "node_modules/ansi-regex": { 59 | "version": "5.0.1", 60 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 61 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 62 | "dev": true, 63 | "license": "MIT", 64 | "engines": { 65 | "node": ">=8" 66 | } 67 | }, 68 | "node_modules/ansi-styles": { 69 | "version": "4.3.0", 70 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 71 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 72 | "dev": true, 73 | "license": "MIT", 74 | "dependencies": { 75 | "color-convert": "^2.0.1" 76 | }, 77 | "engines": { 78 | "node": ">=8" 79 | }, 80 | "funding": { 81 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 82 | } 83 | }, 84 | "node_modules/anymatch": { 85 | "version": "3.1.3", 86 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 87 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 88 | "dev": true, 89 | "license": "ISC", 90 | "dependencies": { 91 | "normalize-path": "^3.0.0", 92 | "picomatch": "^2.0.4" 93 | }, 94 | "engines": { 95 | "node": ">= 8" 96 | } 97 | }, 98 | "node_modules/array-flatten": { 99 | "version": "1.1.1", 100 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 101 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", 102 | "license": "MIT" 103 | }, 104 | "node_modules/balanced-match": { 105 | "version": "1.0.2", 106 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 107 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 108 | "dev": true, 109 | "license": "MIT" 110 | }, 111 | "node_modules/base32.js": { 112 | "version": "0.1.0", 113 | "resolved": "https://registry.npmjs.org/base32.js/-/base32.js-0.1.0.tgz", 114 | "integrity": "sha512-n3TkB02ixgBOhTvANakDb4xaMXnYUVkNoRFJjQflcqMQhyEKxEHdj3E6N8t8sUQ0mjH/3/JxzlXuz3ul/J90pQ==", 115 | "license": "MIT", 116 | "engines": { 117 | "node": ">=0.12.0" 118 | } 119 | }, 120 | "node_modules/base64-js": { 121 | "version": "1.5.1", 122 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 123 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 124 | "funding": [ 125 | { 126 | "type": "github", 127 | "url": "https://github.com/sponsors/feross" 128 | }, 129 | { 130 | "type": "patreon", 131 | "url": "https://www.patreon.com/feross" 132 | }, 133 | { 134 | "type": "consulting", 135 | "url": "https://feross.org/support" 136 | } 137 | ], 138 | "license": "MIT" 139 | }, 140 | "node_modules/better-sqlite3": { 141 | "version": "11.8.1", 142 | "resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-11.8.1.tgz", 143 | "integrity": "sha512-9BxNaBkblMjhJW8sMRZxnxVTRgbRmssZW0Oxc1MPBTfiR+WW21e2Mk4qu8CzrcZb1LwPCnFsfDEzq+SNcBU8eg==", 144 | "hasInstallScript": true, 145 | "license": "MIT", 146 | "dependencies": { 147 | "bindings": "^1.5.0", 148 | "prebuild-install": "^7.1.1" 149 | } 150 | }, 151 | "node_modules/binary-extensions": { 152 | "version": "2.3.0", 153 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 154 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 155 | "dev": true, 156 | "license": "MIT", 157 | "engines": { 158 | "node": ">=8" 159 | }, 160 | "funding": { 161 | "url": "https://github.com/sponsors/sindresorhus" 162 | } 163 | }, 164 | "node_modules/bindings": { 165 | "version": "1.5.0", 166 | "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", 167 | "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", 168 | "license": "MIT", 169 | "dependencies": { 170 | "file-uri-to-path": "1.0.0" 171 | } 172 | }, 173 | "node_modules/bl": { 174 | "version": "4.1.0", 175 | "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", 176 | "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", 177 | "license": "MIT", 178 | "dependencies": { 179 | "buffer": "^5.5.0", 180 | "inherits": "^2.0.4", 181 | "readable-stream": "^3.4.0" 182 | } 183 | }, 184 | "node_modules/body-parser": { 185 | "version": "1.20.3", 186 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", 187 | "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", 188 | "license": "MIT", 189 | "dependencies": { 190 | "bytes": "3.1.2", 191 | "content-type": "~1.0.5", 192 | "debug": "2.6.9", 193 | "depd": "2.0.0", 194 | "destroy": "1.2.0", 195 | "http-errors": "2.0.0", 196 | "iconv-lite": "0.4.24", 197 | "on-finished": "2.4.1", 198 | "qs": "6.13.0", 199 | "raw-body": "2.5.2", 200 | "type-is": "~1.6.18", 201 | "unpipe": "1.0.0" 202 | }, 203 | "engines": { 204 | "node": ">= 0.8", 205 | "npm": "1.2.8000 || >= 1.4.16" 206 | } 207 | }, 208 | "node_modules/brace-expansion": { 209 | "version": "1.1.11", 210 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 211 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 212 | "dev": true, 213 | "license": "MIT", 214 | "dependencies": { 215 | "balanced-match": "^1.0.0", 216 | "concat-map": "0.0.1" 217 | } 218 | }, 219 | "node_modules/braces": { 220 | "version": "3.0.3", 221 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 222 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 223 | "dev": true, 224 | "license": "MIT", 225 | "dependencies": { 226 | "fill-range": "^7.1.1" 227 | }, 228 | "engines": { 229 | "node": ">=8" 230 | } 231 | }, 232 | "node_modules/buffer": { 233 | "version": "5.7.1", 234 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", 235 | "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", 236 | "funding": [ 237 | { 238 | "type": "github", 239 | "url": "https://github.com/sponsors/feross" 240 | }, 241 | { 242 | "type": "patreon", 243 | "url": "https://www.patreon.com/feross" 244 | }, 245 | { 246 | "type": "consulting", 247 | "url": "https://feross.org/support" 248 | } 249 | ], 250 | "license": "MIT", 251 | "dependencies": { 252 | "base64-js": "^1.3.1", 253 | "ieee754": "^1.1.13" 254 | } 255 | }, 256 | "node_modules/bytes": { 257 | "version": "3.1.2", 258 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 259 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 260 | "license": "MIT", 261 | "engines": { 262 | "node": ">= 0.8" 263 | } 264 | }, 265 | "node_modules/call-bind-apply-helpers": { 266 | "version": "1.0.2", 267 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 268 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 269 | "license": "MIT", 270 | "dependencies": { 271 | "es-errors": "^1.3.0", 272 | "function-bind": "^1.1.2" 273 | }, 274 | "engines": { 275 | "node": ">= 0.4" 276 | } 277 | }, 278 | "node_modules/call-bound": { 279 | "version": "1.0.4", 280 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 281 | "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 282 | "license": "MIT", 283 | "dependencies": { 284 | "call-bind-apply-helpers": "^1.0.2", 285 | "get-intrinsic": "^1.3.0" 286 | }, 287 | "engines": { 288 | "node": ">= 0.4" 289 | }, 290 | "funding": { 291 | "url": "https://github.com/sponsors/ljharb" 292 | } 293 | }, 294 | "node_modules/chalk": { 295 | "version": "4.1.2", 296 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 297 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 298 | "dev": true, 299 | "license": "MIT", 300 | "dependencies": { 301 | "ansi-styles": "^4.1.0", 302 | "supports-color": "^7.1.0" 303 | }, 304 | "engines": { 305 | "node": ">=10" 306 | }, 307 | "funding": { 308 | "url": "https://github.com/chalk/chalk?sponsor=1" 309 | } 310 | }, 311 | "node_modules/chalk/node_modules/has-flag": { 312 | "version": "4.0.0", 313 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 314 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 315 | "dev": true, 316 | "license": "MIT", 317 | "engines": { 318 | "node": ">=8" 319 | } 320 | }, 321 | "node_modules/chalk/node_modules/supports-color": { 322 | "version": "7.2.0", 323 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 324 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 325 | "dev": true, 326 | "license": "MIT", 327 | "dependencies": { 328 | "has-flag": "^4.0.0" 329 | }, 330 | "engines": { 331 | "node": ">=8" 332 | } 333 | }, 334 | "node_modules/chokidar": { 335 | "version": "3.6.0", 336 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 337 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 338 | "dev": true, 339 | "license": "MIT", 340 | "dependencies": { 341 | "anymatch": "~3.1.2", 342 | "braces": "~3.0.2", 343 | "glob-parent": "~5.1.2", 344 | "is-binary-path": "~2.1.0", 345 | "is-glob": "~4.0.1", 346 | "normalize-path": "~3.0.0", 347 | "readdirp": "~3.6.0" 348 | }, 349 | "engines": { 350 | "node": ">= 8.10.0" 351 | }, 352 | "funding": { 353 | "url": "https://paulmillr.com/funding/" 354 | }, 355 | "optionalDependencies": { 356 | "fsevents": "~2.3.2" 357 | } 358 | }, 359 | "node_modules/chownr": { 360 | "version": "1.1.4", 361 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", 362 | "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", 363 | "license": "ISC" 364 | }, 365 | "node_modules/cliui": { 366 | "version": "8.0.1", 367 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 368 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 369 | "dev": true, 370 | "license": "ISC", 371 | "dependencies": { 372 | "string-width": "^4.2.0", 373 | "strip-ansi": "^6.0.1", 374 | "wrap-ansi": "^7.0.0" 375 | }, 376 | "engines": { 377 | "node": ">=12" 378 | } 379 | }, 380 | "node_modules/color-convert": { 381 | "version": "2.0.1", 382 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 383 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 384 | "dev": true, 385 | "license": "MIT", 386 | "dependencies": { 387 | "color-name": "~1.1.4" 388 | }, 389 | "engines": { 390 | "node": ">=7.0.0" 391 | } 392 | }, 393 | "node_modules/color-name": { 394 | "version": "1.1.4", 395 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 396 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 397 | "dev": true, 398 | "license": "MIT" 399 | }, 400 | "node_modules/compressible": { 401 | "version": "2.0.18", 402 | "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", 403 | "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", 404 | "license": "MIT", 405 | "dependencies": { 406 | "mime-db": ">= 1.43.0 < 2" 407 | }, 408 | "engines": { 409 | "node": ">= 0.6" 410 | } 411 | }, 412 | "node_modules/compression": { 413 | "version": "1.8.0", 414 | "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.0.tgz", 415 | "integrity": "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==", 416 | "license": "MIT", 417 | "dependencies": { 418 | "bytes": "3.1.2", 419 | "compressible": "~2.0.18", 420 | "debug": "2.6.9", 421 | "negotiator": "~0.6.4", 422 | "on-headers": "~1.0.2", 423 | "safe-buffer": "5.2.1", 424 | "vary": "~1.1.2" 425 | }, 426 | "engines": { 427 | "node": ">= 0.8.0" 428 | } 429 | }, 430 | "node_modules/concat-map": { 431 | "version": "0.0.1", 432 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 433 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 434 | "dev": true, 435 | "license": "MIT" 436 | }, 437 | "node_modules/concurrently": { 438 | "version": "9.1.2", 439 | "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.2.tgz", 440 | "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", 441 | "dev": true, 442 | "license": "MIT", 443 | "dependencies": { 444 | "chalk": "^4.1.2", 445 | "lodash": "^4.17.21", 446 | "rxjs": "^7.8.1", 447 | "shell-quote": "^1.8.1", 448 | "supports-color": "^8.1.1", 449 | "tree-kill": "^1.2.2", 450 | "yargs": "^17.7.2" 451 | }, 452 | "bin": { 453 | "conc": "dist/bin/concurrently.js", 454 | "concurrently": "dist/bin/concurrently.js" 455 | }, 456 | "engines": { 457 | "node": ">=18" 458 | }, 459 | "funding": { 460 | "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" 461 | } 462 | }, 463 | "node_modules/concurrently/node_modules/has-flag": { 464 | "version": "4.0.0", 465 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 466 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 467 | "dev": true, 468 | "license": "MIT", 469 | "engines": { 470 | "node": ">=8" 471 | } 472 | }, 473 | "node_modules/concurrently/node_modules/supports-color": { 474 | "version": "8.1.1", 475 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 476 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 477 | "dev": true, 478 | "license": "MIT", 479 | "dependencies": { 480 | "has-flag": "^4.0.0" 481 | }, 482 | "engines": { 483 | "node": ">=10" 484 | }, 485 | "funding": { 486 | "url": "https://github.com/chalk/supports-color?sponsor=1" 487 | } 488 | }, 489 | "node_modules/content-disposition": { 490 | "version": "0.5.4", 491 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 492 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 493 | "license": "MIT", 494 | "dependencies": { 495 | "safe-buffer": "5.2.1" 496 | }, 497 | "engines": { 498 | "node": ">= 0.6" 499 | } 500 | }, 501 | "node_modules/content-type": { 502 | "version": "1.0.5", 503 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 504 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 505 | "license": "MIT", 506 | "engines": { 507 | "node": ">= 0.6" 508 | } 509 | }, 510 | "node_modules/cookie": { 511 | "version": "0.7.1", 512 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", 513 | "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", 514 | "license": "MIT", 515 | "engines": { 516 | "node": ">= 0.6" 517 | } 518 | }, 519 | "node_modules/cookie-signature": { 520 | "version": "1.0.6", 521 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 522 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", 523 | "license": "MIT" 524 | }, 525 | "node_modules/debug": { 526 | "version": "2.6.9", 527 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 528 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 529 | "license": "MIT", 530 | "dependencies": { 531 | "ms": "2.0.0" 532 | } 533 | }, 534 | "node_modules/decompress-response": { 535 | "version": "6.0.0", 536 | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", 537 | "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", 538 | "license": "MIT", 539 | "dependencies": { 540 | "mimic-response": "^3.1.0" 541 | }, 542 | "engines": { 543 | "node": ">=10" 544 | }, 545 | "funding": { 546 | "url": "https://github.com/sponsors/sindresorhus" 547 | } 548 | }, 549 | "node_modules/deep-extend": { 550 | "version": "0.6.0", 551 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", 552 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", 553 | "license": "MIT", 554 | "engines": { 555 | "node": ">=4.0.0" 556 | } 557 | }, 558 | "node_modules/deepmerge": { 559 | "version": "4.3.1", 560 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 561 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 562 | "license": "MIT", 563 | "engines": { 564 | "node": ">=0.10.0" 565 | } 566 | }, 567 | "node_modules/depd": { 568 | "version": "2.0.0", 569 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 570 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 571 | "license": "MIT", 572 | "engines": { 573 | "node": ">= 0.8" 574 | } 575 | }, 576 | "node_modules/destroy": { 577 | "version": "1.2.0", 578 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 579 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 580 | "license": "MIT", 581 | "engines": { 582 | "node": ">= 0.8", 583 | "npm": "1.2.8000 || >= 1.4.16" 584 | } 585 | }, 586 | "node_modules/detect-libc": { 587 | "version": "2.0.3", 588 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 589 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 590 | "license": "Apache-2.0", 591 | "engines": { 592 | "node": ">=8" 593 | } 594 | }, 595 | "node_modules/dom-serializer": { 596 | "version": "2.0.0", 597 | "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", 598 | "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", 599 | "license": "MIT", 600 | "dependencies": { 601 | "domelementtype": "^2.3.0", 602 | "domhandler": "^5.0.2", 603 | "entities": "^4.2.0" 604 | }, 605 | "funding": { 606 | "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" 607 | } 608 | }, 609 | "node_modules/domelementtype": { 610 | "version": "2.3.0", 611 | "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", 612 | "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", 613 | "funding": [ 614 | { 615 | "type": "github", 616 | "url": "https://github.com/sponsors/fb55" 617 | } 618 | ], 619 | "license": "BSD-2-Clause" 620 | }, 621 | "node_modules/domhandler": { 622 | "version": "5.0.3", 623 | "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", 624 | "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", 625 | "license": "BSD-2-Clause", 626 | "dependencies": { 627 | "domelementtype": "^2.3.0" 628 | }, 629 | "engines": { 630 | "node": ">= 4" 631 | }, 632 | "funding": { 633 | "url": "https://github.com/fb55/domhandler?sponsor=1" 634 | } 635 | }, 636 | "node_modules/domutils": { 637 | "version": "3.2.2", 638 | "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", 639 | "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", 640 | "license": "BSD-2-Clause", 641 | "dependencies": { 642 | "dom-serializer": "^2.0.0", 643 | "domelementtype": "^2.3.0", 644 | "domhandler": "^5.0.3" 645 | }, 646 | "funding": { 647 | "url": "https://github.com/fb55/domutils?sponsor=1" 648 | } 649 | }, 650 | "node_modules/dunder-proto": { 651 | "version": "1.0.1", 652 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 653 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 654 | "license": "MIT", 655 | "dependencies": { 656 | "call-bind-apply-helpers": "^1.0.1", 657 | "es-errors": "^1.3.0", 658 | "gopd": "^1.2.0" 659 | }, 660 | "engines": { 661 | "node": ">= 0.4" 662 | } 663 | }, 664 | "node_modules/ee-first": { 665 | "version": "1.1.1", 666 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 667 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 668 | "license": "MIT" 669 | }, 670 | "node_modules/emoji-regex": { 671 | "version": "8.0.0", 672 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 673 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 674 | "dev": true, 675 | "license": "MIT" 676 | }, 677 | "node_modules/encodeurl": { 678 | "version": "2.0.0", 679 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 680 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 681 | "license": "MIT", 682 | "engines": { 683 | "node": ">= 0.8" 684 | } 685 | }, 686 | "node_modules/encoding-japanese": { 687 | "version": "2.2.0", 688 | "resolved": "https://registry.npmjs.org/encoding-japanese/-/encoding-japanese-2.2.0.tgz", 689 | "integrity": "sha512-EuJWwlHPZ1LbADuKTClvHtwbaFn4rOD+dRAbWysqEOXRc2Uui0hJInNJrsdH0c+OhJA4nrCBdSkW4DD5YxAo6A==", 690 | "license": "MIT", 691 | "engines": { 692 | "node": ">=8.10.0" 693 | } 694 | }, 695 | "node_modules/end-of-stream": { 696 | "version": "1.4.4", 697 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 698 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 699 | "license": "MIT", 700 | "dependencies": { 701 | "once": "^1.4.0" 702 | } 703 | }, 704 | "node_modules/entities": { 705 | "version": "4.5.0", 706 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 707 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 708 | "license": "BSD-2-Clause", 709 | "engines": { 710 | "node": ">=0.12" 711 | }, 712 | "funding": { 713 | "url": "https://github.com/fb55/entities?sponsor=1" 714 | } 715 | }, 716 | "node_modules/es-define-property": { 717 | "version": "1.0.1", 718 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 719 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 720 | "license": "MIT", 721 | "engines": { 722 | "node": ">= 0.4" 723 | } 724 | }, 725 | "node_modules/es-errors": { 726 | "version": "1.3.0", 727 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 728 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 729 | "license": "MIT", 730 | "engines": { 731 | "node": ">= 0.4" 732 | } 733 | }, 734 | "node_modules/es-object-atoms": { 735 | "version": "1.1.1", 736 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 737 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 738 | "license": "MIT", 739 | "dependencies": { 740 | "es-errors": "^1.3.0" 741 | }, 742 | "engines": { 743 | "node": ">= 0.4" 744 | } 745 | }, 746 | "node_modules/escalade": { 747 | "version": "3.2.0", 748 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 749 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 750 | "dev": true, 751 | "license": "MIT", 752 | "engines": { 753 | "node": ">=6" 754 | } 755 | }, 756 | "node_modules/escape-html": { 757 | "version": "1.0.3", 758 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 759 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 760 | "license": "MIT" 761 | }, 762 | "node_modules/etag": { 763 | "version": "1.8.1", 764 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 765 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 766 | "license": "MIT", 767 | "engines": { 768 | "node": ">= 0.6" 769 | } 770 | }, 771 | "node_modules/expand-template": { 772 | "version": "2.0.3", 773 | "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", 774 | "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", 775 | "license": "(MIT OR WTFPL)", 776 | "engines": { 777 | "node": ">=6" 778 | } 779 | }, 780 | "node_modules/express": { 781 | "version": "4.21.2", 782 | "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", 783 | "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", 784 | "license": "MIT", 785 | "dependencies": { 786 | "accepts": "~1.3.8", 787 | "array-flatten": "1.1.1", 788 | "body-parser": "1.20.3", 789 | "content-disposition": "0.5.4", 790 | "content-type": "~1.0.4", 791 | "cookie": "0.7.1", 792 | "cookie-signature": "1.0.6", 793 | "debug": "2.6.9", 794 | "depd": "2.0.0", 795 | "encodeurl": "~2.0.0", 796 | "escape-html": "~1.0.3", 797 | "etag": "~1.8.1", 798 | "finalhandler": "1.3.1", 799 | "fresh": "0.5.2", 800 | "http-errors": "2.0.0", 801 | "merge-descriptors": "1.0.3", 802 | "methods": "~1.1.2", 803 | "on-finished": "2.4.1", 804 | "parseurl": "~1.3.3", 805 | "path-to-regexp": "0.1.12", 806 | "proxy-addr": "~2.0.7", 807 | "qs": "6.13.0", 808 | "range-parser": "~1.2.1", 809 | "safe-buffer": "5.2.1", 810 | "send": "0.19.0", 811 | "serve-static": "1.16.2", 812 | "setprototypeof": "1.2.0", 813 | "statuses": "2.0.1", 814 | "type-is": "~1.6.18", 815 | "utils-merge": "1.0.1", 816 | "vary": "~1.1.2" 817 | }, 818 | "engines": { 819 | "node": ">= 0.10.0" 820 | }, 821 | "funding": { 822 | "type": "opencollective", 823 | "url": "https://opencollective.com/express" 824 | } 825 | }, 826 | "node_modules/file-uri-to-path": { 827 | "version": "1.0.0", 828 | "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", 829 | "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", 830 | "license": "MIT" 831 | }, 832 | "node_modules/fill-range": { 833 | "version": "7.1.1", 834 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 835 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 836 | "dev": true, 837 | "license": "MIT", 838 | "dependencies": { 839 | "to-regex-range": "^5.0.1" 840 | }, 841 | "engines": { 842 | "node": ">=8" 843 | } 844 | }, 845 | "node_modules/finalhandler": { 846 | "version": "1.3.1", 847 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", 848 | "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", 849 | "license": "MIT", 850 | "dependencies": { 851 | "debug": "2.6.9", 852 | "encodeurl": "~2.0.0", 853 | "escape-html": "~1.0.3", 854 | "on-finished": "2.4.1", 855 | "parseurl": "~1.3.3", 856 | "statuses": "2.0.1", 857 | "unpipe": "~1.0.0" 858 | }, 859 | "engines": { 860 | "node": ">= 0.8" 861 | } 862 | }, 863 | "node_modules/forwarded": { 864 | "version": "0.2.0", 865 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 866 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 867 | "license": "MIT", 868 | "engines": { 869 | "node": ">= 0.6" 870 | } 871 | }, 872 | "node_modules/fresh": { 873 | "version": "0.5.2", 874 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 875 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 876 | "license": "MIT", 877 | "engines": { 878 | "node": ">= 0.6" 879 | } 880 | }, 881 | "node_modules/fs-constants": { 882 | "version": "1.0.0", 883 | "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", 884 | "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", 885 | "license": "MIT" 886 | }, 887 | "node_modules/fsevents": { 888 | "version": "2.3.3", 889 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 890 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 891 | "dev": true, 892 | "hasInstallScript": true, 893 | "license": "MIT", 894 | "optional": true, 895 | "os": [ 896 | "darwin" 897 | ], 898 | "engines": { 899 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 900 | } 901 | }, 902 | "node_modules/function-bind": { 903 | "version": "1.1.2", 904 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 905 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 906 | "license": "MIT", 907 | "funding": { 908 | "url": "https://github.com/sponsors/ljharb" 909 | } 910 | }, 911 | "node_modules/get-caller-file": { 912 | "version": "2.0.5", 913 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 914 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 915 | "dev": true, 916 | "license": "ISC", 917 | "engines": { 918 | "node": "6.* || 8.* || >= 10.*" 919 | } 920 | }, 921 | "node_modules/get-intrinsic": { 922 | "version": "1.3.0", 923 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 924 | "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 925 | "license": "MIT", 926 | "dependencies": { 927 | "call-bind-apply-helpers": "^1.0.2", 928 | "es-define-property": "^1.0.1", 929 | "es-errors": "^1.3.0", 930 | "es-object-atoms": "^1.1.1", 931 | "function-bind": "^1.1.2", 932 | "get-proto": "^1.0.1", 933 | "gopd": "^1.2.0", 934 | "has-symbols": "^1.1.0", 935 | "hasown": "^2.0.2", 936 | "math-intrinsics": "^1.1.0" 937 | }, 938 | "engines": { 939 | "node": ">= 0.4" 940 | }, 941 | "funding": { 942 | "url": "https://github.com/sponsors/ljharb" 943 | } 944 | }, 945 | "node_modules/get-proto": { 946 | "version": "1.0.1", 947 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 948 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 949 | "license": "MIT", 950 | "dependencies": { 951 | "dunder-proto": "^1.0.1", 952 | "es-object-atoms": "^1.0.0" 953 | }, 954 | "engines": { 955 | "node": ">= 0.4" 956 | } 957 | }, 958 | "node_modules/github-from-package": { 959 | "version": "0.0.0", 960 | "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", 961 | "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", 962 | "license": "MIT" 963 | }, 964 | "node_modules/glob-parent": { 965 | "version": "5.1.2", 966 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 967 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 968 | "dev": true, 969 | "license": "ISC", 970 | "dependencies": { 971 | "is-glob": "^4.0.1" 972 | }, 973 | "engines": { 974 | "node": ">= 6" 975 | } 976 | }, 977 | "node_modules/gopd": { 978 | "version": "1.2.0", 979 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 980 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 981 | "license": "MIT", 982 | "engines": { 983 | "node": ">= 0.4" 984 | }, 985 | "funding": { 986 | "url": "https://github.com/sponsors/ljharb" 987 | } 988 | }, 989 | "node_modules/has-flag": { 990 | "version": "3.0.0", 991 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 992 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 993 | "dev": true, 994 | "license": "MIT", 995 | "engines": { 996 | "node": ">=4" 997 | } 998 | }, 999 | "node_modules/has-symbols": { 1000 | "version": "1.1.0", 1001 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 1002 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 1003 | "license": "MIT", 1004 | "engines": { 1005 | "node": ">= 0.4" 1006 | }, 1007 | "funding": { 1008 | "url": "https://github.com/sponsors/ljharb" 1009 | } 1010 | }, 1011 | "node_modules/hasown": { 1012 | "version": "2.0.2", 1013 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1014 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1015 | "license": "MIT", 1016 | "dependencies": { 1017 | "function-bind": "^1.1.2" 1018 | }, 1019 | "engines": { 1020 | "node": ">= 0.4" 1021 | } 1022 | }, 1023 | "node_modules/he": { 1024 | "version": "1.2.0", 1025 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 1026 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 1027 | "license": "MIT", 1028 | "bin": { 1029 | "he": "bin/he" 1030 | } 1031 | }, 1032 | "node_modules/html-to-text": { 1033 | "version": "9.0.5", 1034 | "resolved": "https://registry.npmjs.org/html-to-text/-/html-to-text-9.0.5.tgz", 1035 | "integrity": "sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg==", 1036 | "license": "MIT", 1037 | "dependencies": { 1038 | "@selderee/plugin-htmlparser2": "^0.11.0", 1039 | "deepmerge": "^4.3.1", 1040 | "dom-serializer": "^2.0.0", 1041 | "htmlparser2": "^8.0.2", 1042 | "selderee": "^0.11.0" 1043 | }, 1044 | "engines": { 1045 | "node": ">=14" 1046 | } 1047 | }, 1048 | "node_modules/htmlparser2": { 1049 | "version": "8.0.2", 1050 | "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", 1051 | "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", 1052 | "funding": [ 1053 | "https://github.com/fb55/htmlparser2?sponsor=1", 1054 | { 1055 | "type": "github", 1056 | "url": "https://github.com/sponsors/fb55" 1057 | } 1058 | ], 1059 | "license": "MIT", 1060 | "dependencies": { 1061 | "domelementtype": "^2.3.0", 1062 | "domhandler": "^5.0.3", 1063 | "domutils": "^3.0.1", 1064 | "entities": "^4.4.0" 1065 | } 1066 | }, 1067 | "node_modules/http-errors": { 1068 | "version": "2.0.0", 1069 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 1070 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 1071 | "license": "MIT", 1072 | "dependencies": { 1073 | "depd": "2.0.0", 1074 | "inherits": "2.0.4", 1075 | "setprototypeof": "1.2.0", 1076 | "statuses": "2.0.1", 1077 | "toidentifier": "1.0.1" 1078 | }, 1079 | "engines": { 1080 | "node": ">= 0.8" 1081 | } 1082 | }, 1083 | "node_modules/iconv-lite": { 1084 | "version": "0.4.24", 1085 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1086 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1087 | "license": "MIT", 1088 | "dependencies": { 1089 | "safer-buffer": ">= 2.1.2 < 3" 1090 | }, 1091 | "engines": { 1092 | "node": ">=0.10.0" 1093 | } 1094 | }, 1095 | "node_modules/ieee754": { 1096 | "version": "1.2.1", 1097 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 1098 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 1099 | "funding": [ 1100 | { 1101 | "type": "github", 1102 | "url": "https://github.com/sponsors/feross" 1103 | }, 1104 | { 1105 | "type": "patreon", 1106 | "url": "https://www.patreon.com/feross" 1107 | }, 1108 | { 1109 | "type": "consulting", 1110 | "url": "https://feross.org/support" 1111 | } 1112 | ], 1113 | "license": "BSD-3-Clause" 1114 | }, 1115 | "node_modules/ignore-by-default": { 1116 | "version": "1.0.1", 1117 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 1118 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", 1119 | "dev": true, 1120 | "license": "ISC" 1121 | }, 1122 | "node_modules/inherits": { 1123 | "version": "2.0.4", 1124 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1125 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1126 | "license": "ISC" 1127 | }, 1128 | "node_modules/ini": { 1129 | "version": "1.3.8", 1130 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", 1131 | "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", 1132 | "license": "ISC" 1133 | }, 1134 | "node_modules/ipaddr.js": { 1135 | "version": "1.9.1", 1136 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 1137 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 1138 | "license": "MIT", 1139 | "engines": { 1140 | "node": ">= 0.10" 1141 | } 1142 | }, 1143 | "node_modules/ipv6-normalize": { 1144 | "version": "1.0.1", 1145 | "resolved": "https://registry.npmjs.org/ipv6-normalize/-/ipv6-normalize-1.0.1.tgz", 1146 | "integrity": "sha512-Bm6H79i01DjgGTCWjUuCjJ6QDo1HB96PT/xCYuyJUP9WFbVDrLSbG4EZCvOCun2rNswZb0c3e4Jt/ws795esHA==", 1147 | "license": "MIT" 1148 | }, 1149 | "node_modules/is-binary-path": { 1150 | "version": "2.1.0", 1151 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1152 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1153 | "dev": true, 1154 | "license": "MIT", 1155 | "dependencies": { 1156 | "binary-extensions": "^2.0.0" 1157 | }, 1158 | "engines": { 1159 | "node": ">=8" 1160 | } 1161 | }, 1162 | "node_modules/is-extglob": { 1163 | "version": "2.1.1", 1164 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1165 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1166 | "dev": true, 1167 | "license": "MIT", 1168 | "engines": { 1169 | "node": ">=0.10.0" 1170 | } 1171 | }, 1172 | "node_modules/is-fullwidth-code-point": { 1173 | "version": "3.0.0", 1174 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1175 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1176 | "dev": true, 1177 | "license": "MIT", 1178 | "engines": { 1179 | "node": ">=8" 1180 | } 1181 | }, 1182 | "node_modules/is-glob": { 1183 | "version": "4.0.3", 1184 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1185 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1186 | "dev": true, 1187 | "license": "MIT", 1188 | "dependencies": { 1189 | "is-extglob": "^2.1.1" 1190 | }, 1191 | "engines": { 1192 | "node": ">=0.10.0" 1193 | } 1194 | }, 1195 | "node_modules/is-number": { 1196 | "version": "7.0.0", 1197 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1198 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1199 | "dev": true, 1200 | "license": "MIT", 1201 | "engines": { 1202 | "node": ">=0.12.0" 1203 | } 1204 | }, 1205 | "node_modules/leac": { 1206 | "version": "0.6.0", 1207 | "resolved": "https://registry.npmjs.org/leac/-/leac-0.6.0.tgz", 1208 | "integrity": "sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==", 1209 | "license": "MIT", 1210 | "funding": { 1211 | "url": "https://ko-fi.com/killymxi" 1212 | } 1213 | }, 1214 | "node_modules/libbase64": { 1215 | "version": "1.3.0", 1216 | "resolved": "https://registry.npmjs.org/libbase64/-/libbase64-1.3.0.tgz", 1217 | "integrity": "sha512-GgOXd0Eo6phYgh0DJtjQ2tO8dc0IVINtZJeARPeiIJqge+HdsWSuaDTe8ztQ7j/cONByDZ3zeB325AHiv5O0dg==", 1218 | "license": "MIT" 1219 | }, 1220 | "node_modules/libmime": { 1221 | "version": "5.3.6", 1222 | "resolved": "https://registry.npmjs.org/libmime/-/libmime-5.3.6.tgz", 1223 | "integrity": "sha512-j9mBC7eiqi6fgBPAGvKCXJKJSIASanYF4EeA4iBzSG0HxQxmXnR3KbyWqTn4CwsKSebqCv2f5XZfAO6sKzgvwA==", 1224 | "license": "MIT", 1225 | "dependencies": { 1226 | "encoding-japanese": "2.2.0", 1227 | "iconv-lite": "0.6.3", 1228 | "libbase64": "1.3.0", 1229 | "libqp": "2.1.1" 1230 | } 1231 | }, 1232 | "node_modules/libmime/node_modules/iconv-lite": { 1233 | "version": "0.6.3", 1234 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 1235 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 1236 | "license": "MIT", 1237 | "dependencies": { 1238 | "safer-buffer": ">= 2.1.2 < 3.0.0" 1239 | }, 1240 | "engines": { 1241 | "node": ">=0.10.0" 1242 | } 1243 | }, 1244 | "node_modules/libqp": { 1245 | "version": "2.1.1", 1246 | "resolved": "https://registry.npmjs.org/libqp/-/libqp-2.1.1.tgz", 1247 | "integrity": "sha512-0Wd+GPz1O134cP62YU2GTOPNA7Qgl09XwCqM5zpBv87ERCXdfDtyKXvV7c9U22yWJh44QZqBocFnXN11K96qow==", 1248 | "license": "MIT" 1249 | }, 1250 | "node_modules/linkify-it": { 1251 | "version": "5.0.0", 1252 | "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", 1253 | "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", 1254 | "license": "MIT", 1255 | "dependencies": { 1256 | "uc.micro": "^2.0.0" 1257 | } 1258 | }, 1259 | "node_modules/lodash": { 1260 | "version": "4.17.21", 1261 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 1262 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 1263 | "dev": true, 1264 | "license": "MIT" 1265 | }, 1266 | "node_modules/mailparser": { 1267 | "version": "3.7.2", 1268 | "resolved": "https://registry.npmjs.org/mailparser/-/mailparser-3.7.2.tgz", 1269 | "integrity": "sha512-iI0p2TCcIodR1qGiRoDBBwboSSff50vQAWytM5JRggLfABa4hHYCf3YVujtuzV454xrOP352VsAPIzviqMTo4Q==", 1270 | "license": "MIT", 1271 | "dependencies": { 1272 | "encoding-japanese": "2.2.0", 1273 | "he": "1.2.0", 1274 | "html-to-text": "9.0.5", 1275 | "iconv-lite": "0.6.3", 1276 | "libmime": "5.3.6", 1277 | "linkify-it": "5.0.0", 1278 | "mailsplit": "5.4.2", 1279 | "nodemailer": "6.9.16", 1280 | "punycode.js": "2.3.1", 1281 | "tlds": "1.255.0" 1282 | } 1283 | }, 1284 | "node_modules/mailparser/node_modules/iconv-lite": { 1285 | "version": "0.6.3", 1286 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 1287 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 1288 | "license": "MIT", 1289 | "dependencies": { 1290 | "safer-buffer": ">= 2.1.2 < 3.0.0" 1291 | }, 1292 | "engines": { 1293 | "node": ">=0.10.0" 1294 | } 1295 | }, 1296 | "node_modules/mailsplit": { 1297 | "version": "5.4.2", 1298 | "resolved": "https://registry.npmjs.org/mailsplit/-/mailsplit-5.4.2.tgz", 1299 | "integrity": "sha512-4cczG/3Iu3pyl8JgQ76dKkisurZTmxMrA4dj/e8d2jKYcFTZ7MxOzg1gTioTDMPuFXwTrVuN/gxhkrO7wLg7qA==", 1300 | "license": "(MIT OR EUPL-1.1+)", 1301 | "dependencies": { 1302 | "libbase64": "1.3.0", 1303 | "libmime": "5.3.6", 1304 | "libqp": "2.1.1" 1305 | } 1306 | }, 1307 | "node_modules/math-intrinsics": { 1308 | "version": "1.1.0", 1309 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 1310 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 1311 | "license": "MIT", 1312 | "engines": { 1313 | "node": ">= 0.4" 1314 | } 1315 | }, 1316 | "node_modules/media-typer": { 1317 | "version": "0.3.0", 1318 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 1319 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 1320 | "license": "MIT", 1321 | "engines": { 1322 | "node": ">= 0.6" 1323 | } 1324 | }, 1325 | "node_modules/merge-descriptors": { 1326 | "version": "1.0.3", 1327 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", 1328 | "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", 1329 | "license": "MIT", 1330 | "funding": { 1331 | "url": "https://github.com/sponsors/sindresorhus" 1332 | } 1333 | }, 1334 | "node_modules/methods": { 1335 | "version": "1.1.2", 1336 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1337 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 1338 | "license": "MIT", 1339 | "engines": { 1340 | "node": ">= 0.6" 1341 | } 1342 | }, 1343 | "node_modules/mime": { 1344 | "version": "1.6.0", 1345 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1346 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 1347 | "license": "MIT", 1348 | "bin": { 1349 | "mime": "cli.js" 1350 | }, 1351 | "engines": { 1352 | "node": ">=4" 1353 | } 1354 | }, 1355 | "node_modules/mime-db": { 1356 | "version": "1.53.0", 1357 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", 1358 | "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", 1359 | "license": "MIT", 1360 | "engines": { 1361 | "node": ">= 0.6" 1362 | } 1363 | }, 1364 | "node_modules/mime-types": { 1365 | "version": "2.1.35", 1366 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1367 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1368 | "license": "MIT", 1369 | "dependencies": { 1370 | "mime-db": "1.52.0" 1371 | }, 1372 | "engines": { 1373 | "node": ">= 0.6" 1374 | } 1375 | }, 1376 | "node_modules/mime-types/node_modules/mime-db": { 1377 | "version": "1.52.0", 1378 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1379 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 1380 | "license": "MIT", 1381 | "engines": { 1382 | "node": ">= 0.6" 1383 | } 1384 | }, 1385 | "node_modules/mimic-response": { 1386 | "version": "3.1.0", 1387 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", 1388 | "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", 1389 | "license": "MIT", 1390 | "engines": { 1391 | "node": ">=10" 1392 | }, 1393 | "funding": { 1394 | "url": "https://github.com/sponsors/sindresorhus" 1395 | } 1396 | }, 1397 | "node_modules/minimatch": { 1398 | "version": "3.1.2", 1399 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1400 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1401 | "dev": true, 1402 | "license": "ISC", 1403 | "dependencies": { 1404 | "brace-expansion": "^1.1.7" 1405 | }, 1406 | "engines": { 1407 | "node": "*" 1408 | } 1409 | }, 1410 | "node_modules/minimist": { 1411 | "version": "1.2.8", 1412 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 1413 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 1414 | "license": "MIT", 1415 | "funding": { 1416 | "url": "https://github.com/sponsors/ljharb" 1417 | } 1418 | }, 1419 | "node_modules/mkdirp-classic": { 1420 | "version": "0.5.3", 1421 | "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", 1422 | "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", 1423 | "license": "MIT" 1424 | }, 1425 | "node_modules/ms": { 1426 | "version": "2.0.0", 1427 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1428 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 1429 | "license": "MIT" 1430 | }, 1431 | "node_modules/napi-build-utils": { 1432 | "version": "2.0.0", 1433 | "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz", 1434 | "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==", 1435 | "license": "MIT" 1436 | }, 1437 | "node_modules/negotiator": { 1438 | "version": "0.6.4", 1439 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", 1440 | "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", 1441 | "license": "MIT", 1442 | "engines": { 1443 | "node": ">= 0.6" 1444 | } 1445 | }, 1446 | "node_modules/node-abi": { 1447 | "version": "3.74.0", 1448 | "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.74.0.tgz", 1449 | "integrity": "sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==", 1450 | "license": "MIT", 1451 | "dependencies": { 1452 | "semver": "^7.3.5" 1453 | }, 1454 | "engines": { 1455 | "node": ">=10" 1456 | } 1457 | }, 1458 | "node_modules/nodemailer": { 1459 | "version": "6.9.16", 1460 | "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.16.tgz", 1461 | "integrity": "sha512-psAuZdTIRN08HKVd/E8ObdV6NO7NTBY3KsC30F7M4H1OnmLCUNaS56FpYxyb26zWLSyYF9Ozch9KYHhHegsiOQ==", 1462 | "license": "MIT-0", 1463 | "engines": { 1464 | "node": ">=6.0.0" 1465 | } 1466 | }, 1467 | "node_modules/nodemon": { 1468 | "version": "3.1.9", 1469 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.9.tgz", 1470 | "integrity": "sha512-hdr1oIb2p6ZSxu3PB2JWWYS7ZQ0qvaZsc3hK8DR8f02kRzc8rjYmxAIvdz+aYC+8F2IjNaB7HMcSDg8nQpJxyg==", 1471 | "dev": true, 1472 | "license": "MIT", 1473 | "dependencies": { 1474 | "chokidar": "^3.5.2", 1475 | "debug": "^4", 1476 | "ignore-by-default": "^1.0.1", 1477 | "minimatch": "^3.1.2", 1478 | "pstree.remy": "^1.1.8", 1479 | "semver": "^7.5.3", 1480 | "simple-update-notifier": "^2.0.0", 1481 | "supports-color": "^5.5.0", 1482 | "touch": "^3.1.0", 1483 | "undefsafe": "^2.0.5" 1484 | }, 1485 | "bin": { 1486 | "nodemon": "bin/nodemon.js" 1487 | }, 1488 | "engines": { 1489 | "node": ">=10" 1490 | }, 1491 | "funding": { 1492 | "type": "opencollective", 1493 | "url": "https://opencollective.com/nodemon" 1494 | } 1495 | }, 1496 | "node_modules/nodemon/node_modules/debug": { 1497 | "version": "4.4.0", 1498 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1499 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1500 | "dev": true, 1501 | "license": "MIT", 1502 | "dependencies": { 1503 | "ms": "^2.1.3" 1504 | }, 1505 | "engines": { 1506 | "node": ">=6.0" 1507 | }, 1508 | "peerDependenciesMeta": { 1509 | "supports-color": { 1510 | "optional": true 1511 | } 1512 | } 1513 | }, 1514 | "node_modules/nodemon/node_modules/ms": { 1515 | "version": "2.1.3", 1516 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1517 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1518 | "dev": true, 1519 | "license": "MIT" 1520 | }, 1521 | "node_modules/normalize-path": { 1522 | "version": "3.0.0", 1523 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1524 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1525 | "dev": true, 1526 | "license": "MIT", 1527 | "engines": { 1528 | "node": ">=0.10.0" 1529 | } 1530 | }, 1531 | "node_modules/object-inspect": { 1532 | "version": "1.13.4", 1533 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 1534 | "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 1535 | "license": "MIT", 1536 | "engines": { 1537 | "node": ">= 0.4" 1538 | }, 1539 | "funding": { 1540 | "url": "https://github.com/sponsors/ljharb" 1541 | } 1542 | }, 1543 | "node_modules/on-finished": { 1544 | "version": "2.4.1", 1545 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 1546 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 1547 | "license": "MIT", 1548 | "dependencies": { 1549 | "ee-first": "1.1.1" 1550 | }, 1551 | "engines": { 1552 | "node": ">= 0.8" 1553 | } 1554 | }, 1555 | "node_modules/on-headers": { 1556 | "version": "1.0.2", 1557 | "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", 1558 | "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", 1559 | "license": "MIT", 1560 | "engines": { 1561 | "node": ">= 0.8" 1562 | } 1563 | }, 1564 | "node_modules/once": { 1565 | "version": "1.4.0", 1566 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1567 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1568 | "license": "ISC", 1569 | "dependencies": { 1570 | "wrappy": "1" 1571 | } 1572 | }, 1573 | "node_modules/parseley": { 1574 | "version": "0.12.1", 1575 | "resolved": "https://registry.npmjs.org/parseley/-/parseley-0.12.1.tgz", 1576 | "integrity": "sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==", 1577 | "license": "MIT", 1578 | "dependencies": { 1579 | "leac": "^0.6.0", 1580 | "peberminta": "^0.9.0" 1581 | }, 1582 | "funding": { 1583 | "url": "https://ko-fi.com/killymxi" 1584 | } 1585 | }, 1586 | "node_modules/parseurl": { 1587 | "version": "1.3.3", 1588 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1589 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 1590 | "license": "MIT", 1591 | "engines": { 1592 | "node": ">= 0.8" 1593 | } 1594 | }, 1595 | "node_modules/path-to-regexp": { 1596 | "version": "0.1.12", 1597 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", 1598 | "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", 1599 | "license": "MIT" 1600 | }, 1601 | "node_modules/peberminta": { 1602 | "version": "0.9.0", 1603 | "resolved": "https://registry.npmjs.org/peberminta/-/peberminta-0.9.0.tgz", 1604 | "integrity": "sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==", 1605 | "license": "MIT", 1606 | "funding": { 1607 | "url": "https://ko-fi.com/killymxi" 1608 | } 1609 | }, 1610 | "node_modules/picomatch": { 1611 | "version": "2.3.1", 1612 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1613 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1614 | "dev": true, 1615 | "license": "MIT", 1616 | "engines": { 1617 | "node": ">=8.6" 1618 | }, 1619 | "funding": { 1620 | "url": "https://github.com/sponsors/jonschlinkert" 1621 | } 1622 | }, 1623 | "node_modules/prebuild-install": { 1624 | "version": "7.1.3", 1625 | "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz", 1626 | "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==", 1627 | "license": "MIT", 1628 | "dependencies": { 1629 | "detect-libc": "^2.0.0", 1630 | "expand-template": "^2.0.3", 1631 | "github-from-package": "0.0.0", 1632 | "minimist": "^1.2.3", 1633 | "mkdirp-classic": "^0.5.3", 1634 | "napi-build-utils": "^2.0.0", 1635 | "node-abi": "^3.3.0", 1636 | "pump": "^3.0.0", 1637 | "rc": "^1.2.7", 1638 | "simple-get": "^4.0.0", 1639 | "tar-fs": "^2.0.0", 1640 | "tunnel-agent": "^0.6.0" 1641 | }, 1642 | "bin": { 1643 | "prebuild-install": "bin.js" 1644 | }, 1645 | "engines": { 1646 | "node": ">=10" 1647 | } 1648 | }, 1649 | "node_modules/proxy-addr": { 1650 | "version": "2.0.7", 1651 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 1652 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 1653 | "license": "MIT", 1654 | "dependencies": { 1655 | "forwarded": "0.2.0", 1656 | "ipaddr.js": "1.9.1" 1657 | }, 1658 | "engines": { 1659 | "node": ">= 0.10" 1660 | } 1661 | }, 1662 | "node_modules/pstree.remy": { 1663 | "version": "1.1.8", 1664 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 1665 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", 1666 | "dev": true, 1667 | "license": "MIT" 1668 | }, 1669 | "node_modules/pump": { 1670 | "version": "3.0.2", 1671 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", 1672 | "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", 1673 | "license": "MIT", 1674 | "dependencies": { 1675 | "end-of-stream": "^1.1.0", 1676 | "once": "^1.3.1" 1677 | } 1678 | }, 1679 | "node_modules/punycode.js": { 1680 | "version": "2.3.1", 1681 | "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", 1682 | "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", 1683 | "license": "MIT", 1684 | "engines": { 1685 | "node": ">=6" 1686 | } 1687 | }, 1688 | "node_modules/qs": { 1689 | "version": "6.13.0", 1690 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", 1691 | "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", 1692 | "license": "BSD-3-Clause", 1693 | "dependencies": { 1694 | "side-channel": "^1.0.6" 1695 | }, 1696 | "engines": { 1697 | "node": ">=0.6" 1698 | }, 1699 | "funding": { 1700 | "url": "https://github.com/sponsors/ljharb" 1701 | } 1702 | }, 1703 | "node_modules/range-parser": { 1704 | "version": "1.2.1", 1705 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1706 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 1707 | "license": "MIT", 1708 | "engines": { 1709 | "node": ">= 0.6" 1710 | } 1711 | }, 1712 | "node_modules/raw-body": { 1713 | "version": "2.5.2", 1714 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 1715 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 1716 | "license": "MIT", 1717 | "dependencies": { 1718 | "bytes": "3.1.2", 1719 | "http-errors": "2.0.0", 1720 | "iconv-lite": "0.4.24", 1721 | "unpipe": "1.0.0" 1722 | }, 1723 | "engines": { 1724 | "node": ">= 0.8" 1725 | } 1726 | }, 1727 | "node_modules/rc": { 1728 | "version": "1.2.8", 1729 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", 1730 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", 1731 | "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", 1732 | "dependencies": { 1733 | "deep-extend": "^0.6.0", 1734 | "ini": "~1.3.0", 1735 | "minimist": "^1.2.0", 1736 | "strip-json-comments": "~2.0.1" 1737 | }, 1738 | "bin": { 1739 | "rc": "cli.js" 1740 | } 1741 | }, 1742 | "node_modules/readable-stream": { 1743 | "version": "3.6.2", 1744 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 1745 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 1746 | "license": "MIT", 1747 | "dependencies": { 1748 | "inherits": "^2.0.3", 1749 | "string_decoder": "^1.1.1", 1750 | "util-deprecate": "^1.0.1" 1751 | }, 1752 | "engines": { 1753 | "node": ">= 6" 1754 | } 1755 | }, 1756 | "node_modules/readdirp": { 1757 | "version": "3.6.0", 1758 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 1759 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 1760 | "dev": true, 1761 | "license": "MIT", 1762 | "dependencies": { 1763 | "picomatch": "^2.2.1" 1764 | }, 1765 | "engines": { 1766 | "node": ">=8.10.0" 1767 | } 1768 | }, 1769 | "node_modules/require-directory": { 1770 | "version": "2.1.1", 1771 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 1772 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 1773 | "dev": true, 1774 | "license": "MIT", 1775 | "engines": { 1776 | "node": ">=0.10.0" 1777 | } 1778 | }, 1779 | "node_modules/rxjs": { 1780 | "version": "7.8.2", 1781 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", 1782 | "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", 1783 | "dev": true, 1784 | "license": "Apache-2.0", 1785 | "dependencies": { 1786 | "tslib": "^2.1.0" 1787 | } 1788 | }, 1789 | "node_modules/safe-buffer": { 1790 | "version": "5.2.1", 1791 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 1792 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 1793 | "funding": [ 1794 | { 1795 | "type": "github", 1796 | "url": "https://github.com/sponsors/feross" 1797 | }, 1798 | { 1799 | "type": "patreon", 1800 | "url": "https://www.patreon.com/feross" 1801 | }, 1802 | { 1803 | "type": "consulting", 1804 | "url": "https://feross.org/support" 1805 | } 1806 | ], 1807 | "license": "MIT" 1808 | }, 1809 | "node_modules/safer-buffer": { 1810 | "version": "2.1.2", 1811 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 1812 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 1813 | "license": "MIT" 1814 | }, 1815 | "node_modules/selderee": { 1816 | "version": "0.11.0", 1817 | "resolved": "https://registry.npmjs.org/selderee/-/selderee-0.11.0.tgz", 1818 | "integrity": "sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==", 1819 | "license": "MIT", 1820 | "dependencies": { 1821 | "parseley": "^0.12.0" 1822 | }, 1823 | "funding": { 1824 | "url": "https://ko-fi.com/killymxi" 1825 | } 1826 | }, 1827 | "node_modules/semver": { 1828 | "version": "7.7.1", 1829 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 1830 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 1831 | "license": "ISC", 1832 | "bin": { 1833 | "semver": "bin/semver.js" 1834 | }, 1835 | "engines": { 1836 | "node": ">=10" 1837 | } 1838 | }, 1839 | "node_modules/send": { 1840 | "version": "0.19.0", 1841 | "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", 1842 | "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", 1843 | "license": "MIT", 1844 | "dependencies": { 1845 | "debug": "2.6.9", 1846 | "depd": "2.0.0", 1847 | "destroy": "1.2.0", 1848 | "encodeurl": "~1.0.2", 1849 | "escape-html": "~1.0.3", 1850 | "etag": "~1.8.1", 1851 | "fresh": "0.5.2", 1852 | "http-errors": "2.0.0", 1853 | "mime": "1.6.0", 1854 | "ms": "2.1.3", 1855 | "on-finished": "2.4.1", 1856 | "range-parser": "~1.2.1", 1857 | "statuses": "2.0.1" 1858 | }, 1859 | "engines": { 1860 | "node": ">= 0.8.0" 1861 | } 1862 | }, 1863 | "node_modules/send/node_modules/encodeurl": { 1864 | "version": "1.0.2", 1865 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 1866 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 1867 | "license": "MIT", 1868 | "engines": { 1869 | "node": ">= 0.8" 1870 | } 1871 | }, 1872 | "node_modules/send/node_modules/ms": { 1873 | "version": "2.1.3", 1874 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1875 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1876 | "license": "MIT" 1877 | }, 1878 | "node_modules/serve-static": { 1879 | "version": "1.16.2", 1880 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", 1881 | "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", 1882 | "license": "MIT", 1883 | "dependencies": { 1884 | "encodeurl": "~2.0.0", 1885 | "escape-html": "~1.0.3", 1886 | "parseurl": "~1.3.3", 1887 | "send": "0.19.0" 1888 | }, 1889 | "engines": { 1890 | "node": ">= 0.8.0" 1891 | } 1892 | }, 1893 | "node_modules/setprototypeof": { 1894 | "version": "1.2.0", 1895 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 1896 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 1897 | "license": "ISC" 1898 | }, 1899 | "node_modules/shell-quote": { 1900 | "version": "1.8.2", 1901 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", 1902 | "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", 1903 | "dev": true, 1904 | "license": "MIT", 1905 | "engines": { 1906 | "node": ">= 0.4" 1907 | }, 1908 | "funding": { 1909 | "url": "https://github.com/sponsors/ljharb" 1910 | } 1911 | }, 1912 | "node_modules/side-channel": { 1913 | "version": "1.1.0", 1914 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 1915 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 1916 | "license": "MIT", 1917 | "dependencies": { 1918 | "es-errors": "^1.3.0", 1919 | "object-inspect": "^1.13.3", 1920 | "side-channel-list": "^1.0.0", 1921 | "side-channel-map": "^1.0.1", 1922 | "side-channel-weakmap": "^1.0.2" 1923 | }, 1924 | "engines": { 1925 | "node": ">= 0.4" 1926 | }, 1927 | "funding": { 1928 | "url": "https://github.com/sponsors/ljharb" 1929 | } 1930 | }, 1931 | "node_modules/side-channel-list": { 1932 | "version": "1.0.0", 1933 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 1934 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 1935 | "license": "MIT", 1936 | "dependencies": { 1937 | "es-errors": "^1.3.0", 1938 | "object-inspect": "^1.13.3" 1939 | }, 1940 | "engines": { 1941 | "node": ">= 0.4" 1942 | }, 1943 | "funding": { 1944 | "url": "https://github.com/sponsors/ljharb" 1945 | } 1946 | }, 1947 | "node_modules/side-channel-map": { 1948 | "version": "1.0.1", 1949 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 1950 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 1951 | "license": "MIT", 1952 | "dependencies": { 1953 | "call-bound": "^1.0.2", 1954 | "es-errors": "^1.3.0", 1955 | "get-intrinsic": "^1.2.5", 1956 | "object-inspect": "^1.13.3" 1957 | }, 1958 | "engines": { 1959 | "node": ">= 0.4" 1960 | }, 1961 | "funding": { 1962 | "url": "https://github.com/sponsors/ljharb" 1963 | } 1964 | }, 1965 | "node_modules/side-channel-weakmap": { 1966 | "version": "1.0.2", 1967 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 1968 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 1969 | "license": "MIT", 1970 | "dependencies": { 1971 | "call-bound": "^1.0.2", 1972 | "es-errors": "^1.3.0", 1973 | "get-intrinsic": "^1.2.5", 1974 | "object-inspect": "^1.13.3", 1975 | "side-channel-map": "^1.0.1" 1976 | }, 1977 | "engines": { 1978 | "node": ">= 0.4" 1979 | }, 1980 | "funding": { 1981 | "url": "https://github.com/sponsors/ljharb" 1982 | } 1983 | }, 1984 | "node_modules/simple-concat": { 1985 | "version": "1.0.1", 1986 | "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", 1987 | "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", 1988 | "funding": [ 1989 | { 1990 | "type": "github", 1991 | "url": "https://github.com/sponsors/feross" 1992 | }, 1993 | { 1994 | "type": "patreon", 1995 | "url": "https://www.patreon.com/feross" 1996 | }, 1997 | { 1998 | "type": "consulting", 1999 | "url": "https://feross.org/support" 2000 | } 2001 | ], 2002 | "license": "MIT" 2003 | }, 2004 | "node_modules/simple-get": { 2005 | "version": "4.0.1", 2006 | "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", 2007 | "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", 2008 | "funding": [ 2009 | { 2010 | "type": "github", 2011 | "url": "https://github.com/sponsors/feross" 2012 | }, 2013 | { 2014 | "type": "patreon", 2015 | "url": "https://www.patreon.com/feross" 2016 | }, 2017 | { 2018 | "type": "consulting", 2019 | "url": "https://feross.org/support" 2020 | } 2021 | ], 2022 | "license": "MIT", 2023 | "dependencies": { 2024 | "decompress-response": "^6.0.0", 2025 | "once": "^1.3.1", 2026 | "simple-concat": "^1.0.0" 2027 | } 2028 | }, 2029 | "node_modules/simple-update-notifier": { 2030 | "version": "2.0.0", 2031 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 2032 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 2033 | "dev": true, 2034 | "license": "MIT", 2035 | "dependencies": { 2036 | "semver": "^7.5.3" 2037 | }, 2038 | "engines": { 2039 | "node": ">=10" 2040 | } 2041 | }, 2042 | "node_modules/smtp-server": { 2043 | "version": "3.13.6", 2044 | "resolved": "https://registry.npmjs.org/smtp-server/-/smtp-server-3.13.6.tgz", 2045 | "integrity": "sha512-dqbSPKn3PCq3Gp5hxBM99u7PET7cQSAWrauhtArJbc+zrf5xNEOjm9+Ob3lySySrRoIEvNE0dz+w2H/xWFJNRw==", 2046 | "license": "MIT-0", 2047 | "dependencies": { 2048 | "base32.js": "0.1.0", 2049 | "ipv6-normalize": "1.0.1", 2050 | "nodemailer": "6.9.15", 2051 | "punycode.js": "2.3.1" 2052 | }, 2053 | "engines": { 2054 | "node": ">=12.0.0" 2055 | } 2056 | }, 2057 | "node_modules/smtp-server/node_modules/nodemailer": { 2058 | "version": "6.9.15", 2059 | "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.15.tgz", 2060 | "integrity": "sha512-AHf04ySLC6CIfuRtRiEYtGEXgRfa6INgWGluDhnxTZhHSKvrBu7lc1VVchQ0d8nPc4cFaZoPq8vkyNoZr0TpGQ==", 2061 | "license": "MIT-0", 2062 | "engines": { 2063 | "node": ">=6.0.0" 2064 | } 2065 | }, 2066 | "node_modules/statuses": { 2067 | "version": "2.0.1", 2068 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 2069 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 2070 | "license": "MIT", 2071 | "engines": { 2072 | "node": ">= 0.8" 2073 | } 2074 | }, 2075 | "node_modules/string_decoder": { 2076 | "version": "1.3.0", 2077 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 2078 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 2079 | "license": "MIT", 2080 | "dependencies": { 2081 | "safe-buffer": "~5.2.0" 2082 | } 2083 | }, 2084 | "node_modules/string-width": { 2085 | "version": "4.2.3", 2086 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2087 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2088 | "dev": true, 2089 | "license": "MIT", 2090 | "dependencies": { 2091 | "emoji-regex": "^8.0.0", 2092 | "is-fullwidth-code-point": "^3.0.0", 2093 | "strip-ansi": "^6.0.1" 2094 | }, 2095 | "engines": { 2096 | "node": ">=8" 2097 | } 2098 | }, 2099 | "node_modules/strip-ansi": { 2100 | "version": "6.0.1", 2101 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2102 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2103 | "dev": true, 2104 | "license": "MIT", 2105 | "dependencies": { 2106 | "ansi-regex": "^5.0.1" 2107 | }, 2108 | "engines": { 2109 | "node": ">=8" 2110 | } 2111 | }, 2112 | "node_modules/strip-json-comments": { 2113 | "version": "2.0.1", 2114 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 2115 | "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", 2116 | "license": "MIT", 2117 | "engines": { 2118 | "node": ">=0.10.0" 2119 | } 2120 | }, 2121 | "node_modules/supports-color": { 2122 | "version": "5.5.0", 2123 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2124 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2125 | "dev": true, 2126 | "license": "MIT", 2127 | "dependencies": { 2128 | "has-flag": "^3.0.0" 2129 | }, 2130 | "engines": { 2131 | "node": ">=4" 2132 | } 2133 | }, 2134 | "node_modules/tar-fs": { 2135 | "version": "2.1.2", 2136 | "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.2.tgz", 2137 | "integrity": "sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==", 2138 | "license": "MIT", 2139 | "dependencies": { 2140 | "chownr": "^1.1.1", 2141 | "mkdirp-classic": "^0.5.2", 2142 | "pump": "^3.0.0", 2143 | "tar-stream": "^2.1.4" 2144 | } 2145 | }, 2146 | "node_modules/tar-stream": { 2147 | "version": "2.2.0", 2148 | "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", 2149 | "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", 2150 | "license": "MIT", 2151 | "dependencies": { 2152 | "bl": "^4.0.3", 2153 | "end-of-stream": "^1.4.1", 2154 | "fs-constants": "^1.0.0", 2155 | "inherits": "^2.0.3", 2156 | "readable-stream": "^3.1.1" 2157 | }, 2158 | "engines": { 2159 | "node": ">=6" 2160 | } 2161 | }, 2162 | "node_modules/tlds": { 2163 | "version": "1.255.0", 2164 | "resolved": "https://registry.npmjs.org/tlds/-/tlds-1.255.0.tgz", 2165 | "integrity": "sha512-tcwMRIioTcF/FcxLev8MJWxCp+GUALRhFEqbDoZrnowmKSGqPrl5pqS+Sut2m8BgJ6S4FExCSSpGffZ0Tks6Aw==", 2166 | "license": "MIT", 2167 | "bin": { 2168 | "tlds": "bin.js" 2169 | } 2170 | }, 2171 | "node_modules/to-regex-range": { 2172 | "version": "5.0.1", 2173 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2174 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2175 | "dev": true, 2176 | "license": "MIT", 2177 | "dependencies": { 2178 | "is-number": "^7.0.0" 2179 | }, 2180 | "engines": { 2181 | "node": ">=8.0" 2182 | } 2183 | }, 2184 | "node_modules/toidentifier": { 2185 | "version": "1.0.1", 2186 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 2187 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 2188 | "license": "MIT", 2189 | "engines": { 2190 | "node": ">=0.6" 2191 | } 2192 | }, 2193 | "node_modules/touch": { 2194 | "version": "3.1.1", 2195 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", 2196 | "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", 2197 | "dev": true, 2198 | "license": "ISC", 2199 | "bin": { 2200 | "nodetouch": "bin/nodetouch.js" 2201 | } 2202 | }, 2203 | "node_modules/tree-kill": { 2204 | "version": "1.2.2", 2205 | "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", 2206 | "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", 2207 | "dev": true, 2208 | "license": "MIT", 2209 | "bin": { 2210 | "tree-kill": "cli.js" 2211 | } 2212 | }, 2213 | "node_modules/tslib": { 2214 | "version": "2.8.1", 2215 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 2216 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 2217 | "dev": true, 2218 | "license": "0BSD" 2219 | }, 2220 | "node_modules/tunnel-agent": { 2221 | "version": "0.6.0", 2222 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 2223 | "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", 2224 | "license": "Apache-2.0", 2225 | "dependencies": { 2226 | "safe-buffer": "^5.0.1" 2227 | }, 2228 | "engines": { 2229 | "node": "*" 2230 | } 2231 | }, 2232 | "node_modules/type-is": { 2233 | "version": "1.6.18", 2234 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 2235 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 2236 | "license": "MIT", 2237 | "dependencies": { 2238 | "media-typer": "0.3.0", 2239 | "mime-types": "~2.1.24" 2240 | }, 2241 | "engines": { 2242 | "node": ">= 0.6" 2243 | } 2244 | }, 2245 | "node_modules/uc.micro": { 2246 | "version": "2.1.0", 2247 | "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", 2248 | "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", 2249 | "license": "MIT" 2250 | }, 2251 | "node_modules/undefsafe": { 2252 | "version": "2.0.5", 2253 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 2254 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", 2255 | "dev": true, 2256 | "license": "MIT" 2257 | }, 2258 | "node_modules/unpipe": { 2259 | "version": "1.0.0", 2260 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 2261 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 2262 | "license": "MIT", 2263 | "engines": { 2264 | "node": ">= 0.8" 2265 | } 2266 | }, 2267 | "node_modules/util-deprecate": { 2268 | "version": "1.0.2", 2269 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2270 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 2271 | "license": "MIT" 2272 | }, 2273 | "node_modules/utils-merge": { 2274 | "version": "1.0.1", 2275 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 2276 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 2277 | "license": "MIT", 2278 | "engines": { 2279 | "node": ">= 0.4.0" 2280 | } 2281 | }, 2282 | "node_modules/vary": { 2283 | "version": "1.1.2", 2284 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 2285 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 2286 | "license": "MIT", 2287 | "engines": { 2288 | "node": ">= 0.8" 2289 | } 2290 | }, 2291 | "node_modules/wrap-ansi": { 2292 | "version": "7.0.0", 2293 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 2294 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 2295 | "dev": true, 2296 | "license": "MIT", 2297 | "dependencies": { 2298 | "ansi-styles": "^4.0.0", 2299 | "string-width": "^4.1.0", 2300 | "strip-ansi": "^6.0.0" 2301 | }, 2302 | "engines": { 2303 | "node": ">=10" 2304 | }, 2305 | "funding": { 2306 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2307 | } 2308 | }, 2309 | "node_modules/wrappy": { 2310 | "version": "1.0.2", 2311 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2312 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2313 | "license": "ISC" 2314 | }, 2315 | "node_modules/y18n": { 2316 | "version": "5.0.8", 2317 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 2318 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 2319 | "dev": true, 2320 | "license": "ISC", 2321 | "engines": { 2322 | "node": ">=10" 2323 | } 2324 | }, 2325 | "node_modules/yargs": { 2326 | "version": "17.7.2", 2327 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 2328 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 2329 | "dev": true, 2330 | "license": "MIT", 2331 | "dependencies": { 2332 | "cliui": "^8.0.1", 2333 | "escalade": "^3.1.1", 2334 | "get-caller-file": "^2.0.5", 2335 | "require-directory": "^2.1.1", 2336 | "string-width": "^4.2.3", 2337 | "y18n": "^5.0.5", 2338 | "yargs-parser": "^21.1.1" 2339 | }, 2340 | "engines": { 2341 | "node": ">=12" 2342 | } 2343 | }, 2344 | "node_modules/yargs-parser": { 2345 | "version": "21.1.1", 2346 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 2347 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 2348 | "dev": true, 2349 | "license": "ISC", 2350 | "engines": { 2351 | "node": ">=12" 2352 | } 2353 | } 2354 | } 2355 | } 2356 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mail", 3 | "version": "1.0.0", 4 | "main": "main.js", 5 | "scripts": { 6 | "dev": "concurrently --kill-others \"nodemon main.js\" \"npm --prefix ./front run dev\"" 7 | }, 8 | "author": "", 9 | "license": "ISC", 10 | "description": "", 11 | "dependencies": { 12 | "better-sqlite3": "^11.3.0", 13 | "compression": "^1.8.0", 14 | "express": "^4.21.0", 15 | "mailparser": "^3.7.1", 16 | "smtp-server": "^3.13.5" 17 | }, 18 | "type": "module", 19 | "devDependencies": { 20 | "concurrently": "^9.1.2", 21 | "nodemon": "^3.1.7" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /smtpSrv.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | import { SMTPServer as ssrv } from 'smtp-server' 3 | import { simpleParser } from 'mailparser' 4 | import fs from 'fs' 5 | import path from 'path' 6 | import h from './helper.js' 7 | 8 | let mod = { 9 | 10 | start: function(db , port){ 11 | 12 | let opt = { 13 | 14 | async onData(stream, _session, callback) { 15 | 16 | try { 17 | 18 | const mail = await simpleParser(stream); 19 | 20 | let sender = mail.from.value[0].address || mail.from.value[0].name; 21 | let subject = mail.subject; 22 | let content; 23 | 24 | if(mail.html){ 25 | content = mail.html; 26 | }else{ 27 | content = mail.textAsHtml; 28 | } 29 | 30 | try { 31 | 32 | for (let recipient of mail.to.value){ 33 | 34 | var recipientName = recipient.address.substring(0, recipient.address.lastIndexOf("@")); 35 | let res = db.prepare("SELECT COUNT(*) as count FROM address WHERE addr = ?").all(recipientName); 36 | 37 | if (res[0].count > 0) { 38 | 39 | let id = h.randomID(); 40 | db.prepare("INSERT INTO mail (id, recipient, sender, subject, content) VALUES (?, ?, ?, ?, ?)").run(id, recipientName, sender, subject, content); 41 | break; 42 | 43 | } 44 | 45 | } 46 | 47 | } catch (err) { 48 | 49 | console.log("Inbound email error"); 50 | console.log(err); 51 | 52 | } 53 | 54 | } catch (err) { 55 | 56 | console.log("Processing email error"); 57 | console.log(err); 58 | 59 | } 60 | 61 | callback(null); 62 | 63 | }, 64 | 65 | authOptional: true, 66 | 67 | onConnect(_session, callback) { 68 | 69 | return callback(); 70 | 71 | }, 72 | 73 | } 74 | 75 | try { 76 | 77 | //automatically detect public / private key 78 | const files = fs.readdirSync("./data"); 79 | for(let fileName of files){ 80 | 81 | let ext = path.extname(fileName); 82 | if(ext != ".db" && ext != ".json"){ 83 | 84 | let content = fs.readFileSync("./data/" + fileName, 'utf8'); 85 | if(content.includes("PRIVATE KEY")){ 86 | opt.key = content; 87 | } 88 | 89 | if(content.includes("BEGIN CERTIFICATE")){ 90 | opt.cert = content; 91 | } 92 | 93 | } 94 | 95 | } 96 | 97 | } catch (err) { 98 | 99 | console.log("read directory fail"); 100 | console.log(err); 101 | 102 | } 103 | 104 | const server = new ssrv(opt); 105 | server.on('error', (err) => { 106 | 107 | console.log("SMTP server error"); 108 | console.log(err); 109 | 110 | }); 111 | 112 | server.listen(port, () => { 113 | 114 | console.log('smtp server running at port: ' + port); 115 | 116 | }); 117 | 118 | } 119 | 120 | } 121 | 122 | export default mod; 123 | --------------------------------------------------------------------------------