├── README.md
├── Vue-Learn-Part-2
├── public
│ └── favicon.ico
├── .vscode
│ └── extensions.json
├── .prettierrc.json
├── src
│ ├── mixins
│ │ └── flash.js
│ ├── main.js
│ ├── assets
│ │ ├── logo.svg
│ │ ├── main.css
│ │ └── base.css
│ ├── composables
│ │ ├── useFlash.js
│ │ └── useStorage.js
│ ├── views
│ │ ├── HomeView.vue
│ │ ├── AboutView.vue
│ │ ├── TextArea.vue
│ │ └── FormView.vue
│ ├── components
│ │ ├── icons
│ │ │ ├── IconSupport.vue
│ │ │ ├── IconTooling.vue
│ │ │ ├── IconCommunity.vue
│ │ │ ├── IconDocumentation.vue
│ │ │ └── IconEcosystem.vue
│ │ ├── TabbabaleTextarea.vue
│ │ ├── HelloWorld.vue
│ │ ├── WelcomeItem.vue
│ │ └── TheWelcome.vue
│ ├── router
│ │ └── index.js
│ └── App.vue
├── .eslintrc.cjs
├── index.html
├── .gitignore
├── vite.config.js
├── package.json
├── README.md
└── package-lock.json
├── .idea
└── .gitignore
├── .gitignore
└── LICENSE
/README.md:
--------------------------------------------------------------------------------
1 | # Full-Vue-Project
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/YasinDehfuli/Vue-js-learn/HEAD/Vue-Learn-Part-2/public/favicon.ico
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": [
3 | "Vue.volar",
4 | "Vue.vscode-typescript-vue-plugin",
5 | "dbaeumer.vscode-eslint",
6 | "esbenp.prettier-vscode"
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/prettierrc",
3 | "semi": false,
4 | "tabWidth": 2,
5 | "singleQuote": true,
6 | "printWidth": 100,
7 | "trailingComma": "none"
8 | }
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/mixins/flash.js:
--------------------------------------------------------------------------------
1 | import swal from 'sweetalert'
2 | export default {
3 |
4 | methods:{
5 | flash (message){
6 | return swal('title' ,message, 'success');
7 | }
8 | }
9 |
10 | }
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/main.js:
--------------------------------------------------------------------------------
1 | import './assets/main.css'
2 |
3 | import { createApp } from 'vue'
4 | import App from './App.vue'
5 | import router from './router'
6 |
7 | const app = createApp(App)
8 |
9 | app.use(router)
10 |
11 | app.mount('#app')
12 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/assets/logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/composables/useFlash.js:
--------------------------------------------------------------------------------
1 | import flash from "@/mixins/flash";
2 | import swal from "sweetalert";
3 | export function useFlash(){
4 |
5 | function flash(title ,message, level = 'success'){
6 | return swal(title ,message, level );
7 | }
8 |
9 | return {flash};
10 |
11 | }
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/views/HomeView.vue:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/icons/IconSupport.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/views/AboutView.vue:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | /* eslint-env node */
2 | require('@rushstack/eslint-patch/modern-module-resolution')
3 |
4 | module.exports = {
5 | root: true,
6 | 'extends': [
7 | 'plugin:vue/vue3-essential',
8 | 'eslint:recommended',
9 | '@vue/eslint-config-prettier/skip-formatting'
10 | ],
11 | parserOptions: {
12 | ecmaVersion: 'latest'
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Vite App
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/views/TextArea.vue:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/.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 | .DS_Store
12 | dist
13 | dist-ssr
14 | coverage
15 | *.local
16 |
17 | /cypress/videos/
18 | /cypress/screenshots/
19 |
20 | # Editor directories and files
21 | .vscode/*
22 | !.vscode/extensions.json
23 | .idea
24 | *.suo
25 | *.ntvs*
26 | *.njsproj
27 | *.sln
28 | *.sw?
29 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/vite.config.js:
--------------------------------------------------------------------------------
1 | import { fileURLToPath, URL } from 'node:url'
2 |
3 | import { defineConfig } from 'vite'
4 | import vue from '@vitejs/plugin-vue'
5 |
6 | // https://vitejs.dev/config/
7 | export default defineConfig({
8 | plugins: [
9 | vue({
10 | reactivityTransform: true,
11 | }),
12 | ],
13 | resolve: {
14 | alias: {
15 | '@': fileURLToPath(new URL('./src', import.meta.url))
16 | }
17 | }
18 | })
19 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/views/FormView.vue:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 | What is your favorite food ?
15 |
16 | Whats Your Age ?
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/assets/main.css:
--------------------------------------------------------------------------------
1 | @import './base.css';
2 |
3 | #app {
4 | max-width: 1280px;
5 | margin: 0 auto;
6 | padding: 2rem;
7 |
8 | font-weight: normal;
9 | }
10 |
11 | a,
12 | .green {
13 | text-decoration: none;
14 | color: hsla(160, 100%, 37%, 1);
15 | transition: 0.4s;
16 | }
17 |
18 | @media (hover: hover) {
19 | a:hover {
20 | background-color: hsla(160, 100%, 37%, 0.2);
21 | }
22 | }
23 |
24 | @media (min-width: 1024px) {
25 | body {
26 | display: flex;
27 | place-items: center;
28 | }
29 |
30 | #app {
31 | display: grid;
32 | grid-template-columns: 1fr 1fr;
33 | padding: 0 2rem;
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/composables/useStorage.js:
--------------------------------------------------------------------------------
1 | import {ref, watch} from "vue";
2 |
3 | export function useStorage(key,val = null) {
4 |
5 |
6 | let storedVal = read()
7 |
8 | if (storedVal) {
9 | val = ref(storedVal);
10 | } else {
11 | val = ref(val)
12 | write()
13 | }
14 |
15 |
16 | watch(val, write, {deep : true});
17 |
18 | function read(){
19 | return JSON.parse(localStorage.getItem(key));
20 | }
21 |
22 | function write() {
23 | if (val.value === null || val.value === '') {
24 | localStorage.removeItem(key)
25 | } else {
26 | localStorage.setItem(key, JSON.stringify(val.value));
27 | }
28 | }
29 |
30 |
31 | return val;
32 | }
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "vue-learn-part-2",
3 | "version": "0.0.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "vite",
7 | "build": "vite build",
8 | "preview": "vite preview",
9 | "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
10 | "format": "prettier --write src/"
11 | },
12 | "dependencies": {
13 | "vue": "^3.3.4",
14 | "vue-router": "^4.2.4"
15 | },
16 | "devDependencies": {
17 | "@rushstack/eslint-patch": "^1.3.3",
18 | "@vitejs/plugin-vue": "^4.3.4",
19 | "@vue/eslint-config-prettier": "^8.0.0",
20 | "eslint": "^8.49.0",
21 | "eslint-plugin-vue": "^9.17.0",
22 | "prettier": "^3.0.3",
23 | "sweetalert": "^2.1.2",
24 | "vite": "^4.4.9"
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/router/index.js:
--------------------------------------------------------------------------------
1 | import { createRouter, createWebHistory } from 'vue-router'
2 | import HomeView from '../views/HomeView.vue'
3 | import FormView from "@/views/FormView.vue";
4 |
5 | const router = createRouter({
6 | history: createWebHistory(import.meta.env.BASE_URL),
7 | routes: [
8 | {
9 | path: '/',
10 | name: 'home',
11 | component: HomeView
12 | },
13 | {
14 | path: '/about',
15 | name: 'about',
16 | component: () => import('../views/AboutView.vue')
17 | },
18 | {
19 | path: '/form',
20 | name: 'form',
21 | component: () => import('../views/FormView.vue')
22 | },
23 | {
24 | path: '/textarea',
25 | name: 'textarea',
26 | component: () => import('../views/TextArea.vue')
27 | },
28 | ]
29 | })
30 |
31 | export default router
32 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/README.md:
--------------------------------------------------------------------------------
1 | # Vue-Learn-Part-2
2 |
3 | This template should help get you started developing with Vue 3 in Vite.
4 |
5 | ## Recommended IDE Setup
6 |
7 | [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8 |
9 | ## Customize configuration
10 |
11 | See [Vite Configuration Reference](https://vitejs.dev/config/).
12 |
13 | ## Project Setup
14 |
15 | ```sh
16 | npm install
17 | ```
18 |
19 | ### Compile and Hot-Reload for Development
20 |
21 | ```sh
22 | npm run dev
23 | ```
24 |
25 | ### Compile and Minify for Production
26 |
27 | ```sh
28 | npm run build
29 | ```
30 |
31 | ### Lint with [ESLint](https://eslint.org/)
32 |
33 | ```sh
34 | npm run lint
35 | ```
36 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/TabbabaleTextarea.vue:
--------------------------------------------------------------------------------
1 |
2 |
25 |
26 |
27 |
28 |
29 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/HelloWorld.vue:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
{{ msg }}
13 |
14 | You’ve successfully created a project with
15 | Vite +
16 | Vue 3.
17 |
18 |
19 |
20 |
21 |
45 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/icons/IconTooling.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
20 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/icons/IconCommunity.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/icons/IconDocumentation.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/WelcomeItem.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
87 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/App.vue:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
21 |
22 |
23 |
24 |
25 |
88 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/icons/IconEcosystem.vue:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | lerna-debug.log*
8 |
9 | # Diagnostic reports (https://nodejs.org/api/report.html)
10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11 |
12 | # Runtime data
13 | pids
14 | *.pid
15 | *.seed
16 | *.pid.lock
17 |
18 | # Directory for instrumented libs generated by jscoverage/JSCover
19 | lib-cov
20 |
21 | # Coverage directory used by tools like istanbul
22 | coverage
23 | *.lcov
24 |
25 | # nyc test coverage
26 | .nyc_output
27 |
28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29 | .grunt
30 |
31 | # Bower dependency directory (https://bower.io/)
32 | bower_components
33 |
34 | # node-waf configuration
35 | .lock-wscript
36 |
37 | # Compiled binary addons (https://nodejs.org/api/addons.html)
38 | build/Release
39 |
40 | # Dependency directories
41 | node_modules/
42 | jspm_packages/
43 |
44 | # TypeScript v1 declaration files
45 | typings/
46 |
47 | # TypeScript cache
48 | *.tsbuildinfo
49 |
50 | # Optional npm cache directory
51 | .npm
52 |
53 | # Optional eslint cache
54 | .eslintcache
55 |
56 | # Microbundle cache
57 | .rpt2_cache/
58 | .rts2_cache_cjs/
59 | .rts2_cache_es/
60 | .rts2_cache_umd/
61 |
62 | # Optional REPL history
63 | .node_repl_history
64 |
65 | # Output of 'npm pack'
66 | *.tgz
67 |
68 | # Yarn Integrity file
69 | .yarn-integrity
70 |
71 | # dotenv environment variables file
72 | .env
73 | .env.test
74 |
75 | # parcel-bundler cache (https://parceljs.org/)
76 | .cache
77 |
78 | # Next.js build output
79 | .next
80 |
81 | # Nuxt.js build / generate output
82 | .nuxt
83 | dist
84 |
85 | # Gatsby files
86 | .cache/
87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js
88 | # https://nextjs.org/blog/next-9-1#public-directory-support
89 | # public
90 |
91 | # vuepress build output
92 | .vuepress/dist
93 |
94 | # Serverless directories
95 | .serverless/
96 |
97 | # FuseBox cache
98 | .fusebox/
99 |
100 | # DynamoDB Local files
101 | .dynamodb/
102 |
103 | # TernJS port file
104 | .tern-port
105 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/assets/base.css:
--------------------------------------------------------------------------------
1 | /* color palette from */
2 | :root {
3 | --vt-c-white: #ffffff;
4 | --vt-c-white-soft: #f8f8f8;
5 | --vt-c-white-mute: #f2f2f2;
6 |
7 | --vt-c-black: #181818;
8 | --vt-c-black-soft: #222222;
9 | --vt-c-black-mute: #282828;
10 |
11 | --vt-c-indigo: #2c3e50;
12 |
13 | --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
14 | --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
15 | --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
16 | --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);
17 |
18 | --vt-c-text-light-1: var(--vt-c-indigo);
19 | --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
20 | --vt-c-text-dark-1: var(--vt-c-white);
21 | --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
22 | }
23 |
24 | /* semantic color variables for this project */
25 | :root {
26 | --color-background: var(--vt-c-white);
27 | --color-background-soft: var(--vt-c-white-soft);
28 | --color-background-mute: var(--vt-c-white-mute);
29 |
30 | --color-border: var(--vt-c-divider-light-2);
31 | --color-border-hover: var(--vt-c-divider-light-1);
32 |
33 | --color-heading: var(--vt-c-text-light-1);
34 | --color-text: var(--vt-c-text-light-1);
35 |
36 | --section-gap: 160px;
37 | }
38 |
39 | @media (prefers-color-scheme: dark) {
40 | :root {
41 | --color-background: var(--vt-c-black);
42 | --color-background-soft: var(--vt-c-black-soft);
43 | --color-background-mute: var(--vt-c-black-mute);
44 |
45 | --color-border: var(--vt-c-divider-dark-2);
46 | --color-border-hover: var(--vt-c-divider-dark-1);
47 |
48 | --color-heading: var(--vt-c-text-dark-1);
49 | --color-text: var(--vt-c-text-dark-2);
50 | }
51 | }
52 |
53 | *,
54 | *::before,
55 | *::after {
56 | box-sizing: border-box;
57 | margin: 0;
58 | font-weight: normal;
59 | }
60 |
61 | body {
62 | min-height: 100vh;
63 | color: var(--color-text);
64 | background: var(--color-background);
65 | transition:
66 | color 0.5s,
67 | background-color 0.5s;
68 | line-height: 1.6;
69 | font-family:
70 | Inter,
71 | -apple-system,
72 | BlinkMacSystemFont,
73 | 'Segoe UI',
74 | Roboto,
75 | Oxygen,
76 | Ubuntu,
77 | Cantarell,
78 | 'Fira Sans',
79 | 'Droid Sans',
80 | 'Helvetica Neue',
81 | sans-serif;
82 | font-size: 15px;
83 | text-rendering: optimizeLegibility;
84 | -webkit-font-smoothing: antialiased;
85 | -moz-osx-font-smoothing: grayscale;
86 | }
87 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/src/components/TheWelcome.vue:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | Documentation
16 |
17 | Vue’s
18 | official documentation
19 | provides you with all information you need to get started.
20 |
21 |
22 |
23 |
24 |
25 |
26 | Tooling
27 |
28 | This project is served and bundled with
29 | Vite. The
30 | recommended IDE setup is
31 | VSCode +
32 | Volar. If
33 | you need to test your components and web pages, check out
34 | Cypress and
35 | Cypress Component Testing.
38 |
39 |
40 |
41 | More instructions are available in README.md.
42 |
43 |
44 |
45 |
46 |
47 |
48 | Ecosystem
49 |
50 | Get official tools and libraries for your project:
51 | Pinia,
52 | Vue Router,
53 | Vue Test Utils, and
54 | Vue Dev Tools. If
55 | you need more resources, we suggest paying
56 | Awesome Vue
57 | a visit.
58 |
59 |
60 |
61 |
62 |
63 |
64 | Community
65 |
66 | Got stuck? Ask your question on
67 | Vue Land, our official
68 | Discord server, or
69 | StackOverflow. You should also subscribe to
72 | our mailing list and follow
73 | the official
74 | @vuejs
75 | twitter account for latest news in the Vue world.
76 |
77 |
78 |
79 |
80 |
81 |
82 | Support Vue
83 |
84 | As an independent project, Vue relies on community backing for its sustainability. You can help
85 | us by
86 | becoming a sponsor.
87 |
88 |
89 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/Vue-Learn-Part-2/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "vue-learn-part-2",
3 | "version": "0.0.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "vue-learn-part-2",
9 | "version": "0.0.0",
10 | "dependencies": {
11 | "vue": "^3.3.4",
12 | "vue-router": "^4.2.4"
13 | },
14 | "devDependencies": {
15 | "@rushstack/eslint-patch": "^1.3.3",
16 | "@vitejs/plugin-vue": "^4.3.4",
17 | "@vue/eslint-config-prettier": "^8.0.0",
18 | "eslint": "^8.49.0",
19 | "eslint-plugin-vue": "^9.17.0",
20 | "prettier": "^3.0.3",
21 | "sweetalert": "^2.1.2",
22 | "vite": "^4.4.9"
23 | }
24 | },
25 | "node_modules/@aashutoshrathi/word-wrap": {
26 | "version": "1.2.6",
27 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
28 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
29 | "dev": true,
30 | "engines": {
31 | "node": ">=0.10.0"
32 | }
33 | },
34 | "node_modules/@babel/parser": {
35 | "version": "7.23.0",
36 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
37 | "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
38 | "bin": {
39 | "parser": "bin/babel-parser.js"
40 | },
41 | "engines": {
42 | "node": ">=6.0.0"
43 | }
44 | },
45 | "node_modules/@esbuild/android-arm": {
46 | "version": "0.18.20",
47 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
48 | "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
49 | "cpu": [
50 | "arm"
51 | ],
52 | "dev": true,
53 | "optional": true,
54 | "os": [
55 | "android"
56 | ],
57 | "engines": {
58 | "node": ">=12"
59 | }
60 | },
61 | "node_modules/@esbuild/android-arm64": {
62 | "version": "0.18.20",
63 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
64 | "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
65 | "cpu": [
66 | "arm64"
67 | ],
68 | "dev": true,
69 | "optional": true,
70 | "os": [
71 | "android"
72 | ],
73 | "engines": {
74 | "node": ">=12"
75 | }
76 | },
77 | "node_modules/@esbuild/android-x64": {
78 | "version": "0.18.20",
79 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
80 | "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
81 | "cpu": [
82 | "x64"
83 | ],
84 | "dev": true,
85 | "optional": true,
86 | "os": [
87 | "android"
88 | ],
89 | "engines": {
90 | "node": ">=12"
91 | }
92 | },
93 | "node_modules/@esbuild/darwin-arm64": {
94 | "version": "0.18.20",
95 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
96 | "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
97 | "cpu": [
98 | "arm64"
99 | ],
100 | "dev": true,
101 | "optional": true,
102 | "os": [
103 | "darwin"
104 | ],
105 | "engines": {
106 | "node": ">=12"
107 | }
108 | },
109 | "node_modules/@esbuild/darwin-x64": {
110 | "version": "0.18.20",
111 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz",
112 | "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
113 | "cpu": [
114 | "x64"
115 | ],
116 | "dev": true,
117 | "optional": true,
118 | "os": [
119 | "darwin"
120 | ],
121 | "engines": {
122 | "node": ">=12"
123 | }
124 | },
125 | "node_modules/@esbuild/freebsd-arm64": {
126 | "version": "0.18.20",
127 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
128 | "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
129 | "cpu": [
130 | "arm64"
131 | ],
132 | "dev": true,
133 | "optional": true,
134 | "os": [
135 | "freebsd"
136 | ],
137 | "engines": {
138 | "node": ">=12"
139 | }
140 | },
141 | "node_modules/@esbuild/freebsd-x64": {
142 | "version": "0.18.20",
143 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
144 | "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
145 | "cpu": [
146 | "x64"
147 | ],
148 | "dev": true,
149 | "optional": true,
150 | "os": [
151 | "freebsd"
152 | ],
153 | "engines": {
154 | "node": ">=12"
155 | }
156 | },
157 | "node_modules/@esbuild/linux-arm": {
158 | "version": "0.18.20",
159 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
160 | "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
161 | "cpu": [
162 | "arm"
163 | ],
164 | "dev": true,
165 | "optional": true,
166 | "os": [
167 | "linux"
168 | ],
169 | "engines": {
170 | "node": ">=12"
171 | }
172 | },
173 | "node_modules/@esbuild/linux-arm64": {
174 | "version": "0.18.20",
175 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
176 | "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
177 | "cpu": [
178 | "arm64"
179 | ],
180 | "dev": true,
181 | "optional": true,
182 | "os": [
183 | "linux"
184 | ],
185 | "engines": {
186 | "node": ">=12"
187 | }
188 | },
189 | "node_modules/@esbuild/linux-ia32": {
190 | "version": "0.18.20",
191 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
192 | "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
193 | "cpu": [
194 | "ia32"
195 | ],
196 | "dev": true,
197 | "optional": true,
198 | "os": [
199 | "linux"
200 | ],
201 | "engines": {
202 | "node": ">=12"
203 | }
204 | },
205 | "node_modules/@esbuild/linux-loong64": {
206 | "version": "0.18.20",
207 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
208 | "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
209 | "cpu": [
210 | "loong64"
211 | ],
212 | "dev": true,
213 | "optional": true,
214 | "os": [
215 | "linux"
216 | ],
217 | "engines": {
218 | "node": ">=12"
219 | }
220 | },
221 | "node_modules/@esbuild/linux-mips64el": {
222 | "version": "0.18.20",
223 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
224 | "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
225 | "cpu": [
226 | "mips64el"
227 | ],
228 | "dev": true,
229 | "optional": true,
230 | "os": [
231 | "linux"
232 | ],
233 | "engines": {
234 | "node": ">=12"
235 | }
236 | },
237 | "node_modules/@esbuild/linux-ppc64": {
238 | "version": "0.18.20",
239 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
240 | "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
241 | "cpu": [
242 | "ppc64"
243 | ],
244 | "dev": true,
245 | "optional": true,
246 | "os": [
247 | "linux"
248 | ],
249 | "engines": {
250 | "node": ">=12"
251 | }
252 | },
253 | "node_modules/@esbuild/linux-riscv64": {
254 | "version": "0.18.20",
255 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
256 | "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
257 | "cpu": [
258 | "riscv64"
259 | ],
260 | "dev": true,
261 | "optional": true,
262 | "os": [
263 | "linux"
264 | ],
265 | "engines": {
266 | "node": ">=12"
267 | }
268 | },
269 | "node_modules/@esbuild/linux-s390x": {
270 | "version": "0.18.20",
271 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
272 | "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
273 | "cpu": [
274 | "s390x"
275 | ],
276 | "dev": true,
277 | "optional": true,
278 | "os": [
279 | "linux"
280 | ],
281 | "engines": {
282 | "node": ">=12"
283 | }
284 | },
285 | "node_modules/@esbuild/linux-x64": {
286 | "version": "0.18.20",
287 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
288 | "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
289 | "cpu": [
290 | "x64"
291 | ],
292 | "dev": true,
293 | "optional": true,
294 | "os": [
295 | "linux"
296 | ],
297 | "engines": {
298 | "node": ">=12"
299 | }
300 | },
301 | "node_modules/@esbuild/netbsd-x64": {
302 | "version": "0.18.20",
303 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
304 | "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
305 | "cpu": [
306 | "x64"
307 | ],
308 | "dev": true,
309 | "optional": true,
310 | "os": [
311 | "netbsd"
312 | ],
313 | "engines": {
314 | "node": ">=12"
315 | }
316 | },
317 | "node_modules/@esbuild/openbsd-x64": {
318 | "version": "0.18.20",
319 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
320 | "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
321 | "cpu": [
322 | "x64"
323 | ],
324 | "dev": true,
325 | "optional": true,
326 | "os": [
327 | "openbsd"
328 | ],
329 | "engines": {
330 | "node": ">=12"
331 | }
332 | },
333 | "node_modules/@esbuild/sunos-x64": {
334 | "version": "0.18.20",
335 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
336 | "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
337 | "cpu": [
338 | "x64"
339 | ],
340 | "dev": true,
341 | "optional": true,
342 | "os": [
343 | "sunos"
344 | ],
345 | "engines": {
346 | "node": ">=12"
347 | }
348 | },
349 | "node_modules/@esbuild/win32-arm64": {
350 | "version": "0.18.20",
351 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
352 | "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
353 | "cpu": [
354 | "arm64"
355 | ],
356 | "dev": true,
357 | "optional": true,
358 | "os": [
359 | "win32"
360 | ],
361 | "engines": {
362 | "node": ">=12"
363 | }
364 | },
365 | "node_modules/@esbuild/win32-ia32": {
366 | "version": "0.18.20",
367 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
368 | "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
369 | "cpu": [
370 | "ia32"
371 | ],
372 | "dev": true,
373 | "optional": true,
374 | "os": [
375 | "win32"
376 | ],
377 | "engines": {
378 | "node": ">=12"
379 | }
380 | },
381 | "node_modules/@esbuild/win32-x64": {
382 | "version": "0.18.20",
383 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
384 | "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
385 | "cpu": [
386 | "x64"
387 | ],
388 | "dev": true,
389 | "optional": true,
390 | "os": [
391 | "win32"
392 | ],
393 | "engines": {
394 | "node": ">=12"
395 | }
396 | },
397 | "node_modules/@eslint-community/eslint-utils": {
398 | "version": "4.4.0",
399 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
400 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
401 | "dev": true,
402 | "dependencies": {
403 | "eslint-visitor-keys": "^3.3.0"
404 | },
405 | "engines": {
406 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
407 | },
408 | "peerDependencies": {
409 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
410 | }
411 | },
412 | "node_modules/@eslint-community/regexpp": {
413 | "version": "4.9.1",
414 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.1.tgz",
415 | "integrity": "sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==",
416 | "dev": true,
417 | "engines": {
418 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
419 | }
420 | },
421 | "node_modules/@eslint/eslintrc": {
422 | "version": "2.1.2",
423 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz",
424 | "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==",
425 | "dev": true,
426 | "dependencies": {
427 | "ajv": "^6.12.4",
428 | "debug": "^4.3.2",
429 | "espree": "^9.6.0",
430 | "globals": "^13.19.0",
431 | "ignore": "^5.2.0",
432 | "import-fresh": "^3.2.1",
433 | "js-yaml": "^4.1.0",
434 | "minimatch": "^3.1.2",
435 | "strip-json-comments": "^3.1.1"
436 | },
437 | "engines": {
438 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
439 | },
440 | "funding": {
441 | "url": "https://opencollective.com/eslint"
442 | }
443 | },
444 | "node_modules/@eslint/js": {
445 | "version": "8.51.0",
446 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.51.0.tgz",
447 | "integrity": "sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==",
448 | "dev": true,
449 | "engines": {
450 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
451 | }
452 | },
453 | "node_modules/@humanwhocodes/config-array": {
454 | "version": "0.11.11",
455 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz",
456 | "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==",
457 | "dev": true,
458 | "dependencies": {
459 | "@humanwhocodes/object-schema": "^1.2.1",
460 | "debug": "^4.1.1",
461 | "minimatch": "^3.0.5"
462 | },
463 | "engines": {
464 | "node": ">=10.10.0"
465 | }
466 | },
467 | "node_modules/@humanwhocodes/module-importer": {
468 | "version": "1.0.1",
469 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
470 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
471 | "dev": true,
472 | "engines": {
473 | "node": ">=12.22"
474 | },
475 | "funding": {
476 | "type": "github",
477 | "url": "https://github.com/sponsors/nzakas"
478 | }
479 | },
480 | "node_modules/@humanwhocodes/object-schema": {
481 | "version": "1.2.1",
482 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
483 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
484 | "dev": true
485 | },
486 | "node_modules/@jridgewell/sourcemap-codec": {
487 | "version": "1.4.15",
488 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
489 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
490 | },
491 | "node_modules/@nodelib/fs.scandir": {
492 | "version": "2.1.5",
493 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
494 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
495 | "dev": true,
496 | "dependencies": {
497 | "@nodelib/fs.stat": "2.0.5",
498 | "run-parallel": "^1.1.9"
499 | },
500 | "engines": {
501 | "node": ">= 8"
502 | }
503 | },
504 | "node_modules/@nodelib/fs.stat": {
505 | "version": "2.0.5",
506 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
507 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
508 | "dev": true,
509 | "engines": {
510 | "node": ">= 8"
511 | }
512 | },
513 | "node_modules/@nodelib/fs.walk": {
514 | "version": "1.2.8",
515 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
516 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
517 | "dev": true,
518 | "dependencies": {
519 | "@nodelib/fs.scandir": "2.1.5",
520 | "fastq": "^1.6.0"
521 | },
522 | "engines": {
523 | "node": ">= 8"
524 | }
525 | },
526 | "node_modules/@pkgr/utils": {
527 | "version": "2.4.2",
528 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz",
529 | "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==",
530 | "dev": true,
531 | "dependencies": {
532 | "cross-spawn": "^7.0.3",
533 | "fast-glob": "^3.3.0",
534 | "is-glob": "^4.0.3",
535 | "open": "^9.1.0",
536 | "picocolors": "^1.0.0",
537 | "tslib": "^2.6.0"
538 | },
539 | "engines": {
540 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
541 | },
542 | "funding": {
543 | "url": "https://opencollective.com/unts"
544 | }
545 | },
546 | "node_modules/@rushstack/eslint-patch": {
547 | "version": "1.5.1",
548 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz",
549 | "integrity": "sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==",
550 | "dev": true
551 | },
552 | "node_modules/@vitejs/plugin-vue": {
553 | "version": "4.4.0",
554 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-4.4.0.tgz",
555 | "integrity": "sha512-xdguqb+VUwiRpSg+nsc2HtbAUSGak25DXYvpQQi4RVU1Xq1uworyoH/md9Rfd8zMmPR/pSghr309QNcftUVseg==",
556 | "dev": true,
557 | "engines": {
558 | "node": "^14.18.0 || >=16.0.0"
559 | },
560 | "peerDependencies": {
561 | "vite": "^4.0.0",
562 | "vue": "^3.2.25"
563 | }
564 | },
565 | "node_modules/@vue/compiler-core": {
566 | "version": "3.3.4",
567 | "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz",
568 | "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==",
569 | "dependencies": {
570 | "@babel/parser": "^7.21.3",
571 | "@vue/shared": "3.3.4",
572 | "estree-walker": "^2.0.2",
573 | "source-map-js": "^1.0.2"
574 | }
575 | },
576 | "node_modules/@vue/compiler-dom": {
577 | "version": "3.3.4",
578 | "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz",
579 | "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==",
580 | "dependencies": {
581 | "@vue/compiler-core": "3.3.4",
582 | "@vue/shared": "3.3.4"
583 | }
584 | },
585 | "node_modules/@vue/compiler-sfc": {
586 | "version": "3.3.4",
587 | "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz",
588 | "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==",
589 | "dependencies": {
590 | "@babel/parser": "^7.20.15",
591 | "@vue/compiler-core": "3.3.4",
592 | "@vue/compiler-dom": "3.3.4",
593 | "@vue/compiler-ssr": "3.3.4",
594 | "@vue/reactivity-transform": "3.3.4",
595 | "@vue/shared": "3.3.4",
596 | "estree-walker": "^2.0.2",
597 | "magic-string": "^0.30.0",
598 | "postcss": "^8.1.10",
599 | "source-map-js": "^1.0.2"
600 | }
601 | },
602 | "node_modules/@vue/compiler-ssr": {
603 | "version": "3.3.4",
604 | "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz",
605 | "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==",
606 | "dependencies": {
607 | "@vue/compiler-dom": "3.3.4",
608 | "@vue/shared": "3.3.4"
609 | }
610 | },
611 | "node_modules/@vue/devtools-api": {
612 | "version": "6.5.1",
613 | "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.5.1.tgz",
614 | "integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA=="
615 | },
616 | "node_modules/@vue/eslint-config-prettier": {
617 | "version": "8.0.0",
618 | "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-8.0.0.tgz",
619 | "integrity": "sha512-55dPqtC4PM/yBjhAr+yEw6+7KzzdkBuLmnhBrDfp4I48+wy+Giqqj9yUr5T2uD/BkBROjjmqnLZmXRdOx/VtQg==",
620 | "dev": true,
621 | "dependencies": {
622 | "eslint-config-prettier": "^8.8.0",
623 | "eslint-plugin-prettier": "^5.0.0"
624 | },
625 | "peerDependencies": {
626 | "eslint": ">= 8.0.0",
627 | "prettier": ">= 3.0.0"
628 | }
629 | },
630 | "node_modules/@vue/reactivity": {
631 | "version": "3.3.4",
632 | "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz",
633 | "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==",
634 | "dependencies": {
635 | "@vue/shared": "3.3.4"
636 | }
637 | },
638 | "node_modules/@vue/reactivity-transform": {
639 | "version": "3.3.4",
640 | "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz",
641 | "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==",
642 | "dependencies": {
643 | "@babel/parser": "^7.20.15",
644 | "@vue/compiler-core": "3.3.4",
645 | "@vue/shared": "3.3.4",
646 | "estree-walker": "^2.0.2",
647 | "magic-string": "^0.30.0"
648 | }
649 | },
650 | "node_modules/@vue/runtime-core": {
651 | "version": "3.3.4",
652 | "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz",
653 | "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==",
654 | "dependencies": {
655 | "@vue/reactivity": "3.3.4",
656 | "@vue/shared": "3.3.4"
657 | }
658 | },
659 | "node_modules/@vue/runtime-dom": {
660 | "version": "3.3.4",
661 | "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz",
662 | "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==",
663 | "dependencies": {
664 | "@vue/runtime-core": "3.3.4",
665 | "@vue/shared": "3.3.4",
666 | "csstype": "^3.1.1"
667 | }
668 | },
669 | "node_modules/@vue/server-renderer": {
670 | "version": "3.3.4",
671 | "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz",
672 | "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==",
673 | "dependencies": {
674 | "@vue/compiler-ssr": "3.3.4",
675 | "@vue/shared": "3.3.4"
676 | },
677 | "peerDependencies": {
678 | "vue": "3.3.4"
679 | }
680 | },
681 | "node_modules/@vue/shared": {
682 | "version": "3.3.4",
683 | "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz",
684 | "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ=="
685 | },
686 | "node_modules/acorn": {
687 | "version": "8.10.0",
688 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
689 | "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
690 | "dev": true,
691 | "bin": {
692 | "acorn": "bin/acorn"
693 | },
694 | "engines": {
695 | "node": ">=0.4.0"
696 | }
697 | },
698 | "node_modules/acorn-jsx": {
699 | "version": "5.3.2",
700 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
701 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
702 | "dev": true,
703 | "peerDependencies": {
704 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
705 | }
706 | },
707 | "node_modules/ajv": {
708 | "version": "6.12.6",
709 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
710 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
711 | "dev": true,
712 | "dependencies": {
713 | "fast-deep-equal": "^3.1.1",
714 | "fast-json-stable-stringify": "^2.0.0",
715 | "json-schema-traverse": "^0.4.1",
716 | "uri-js": "^4.2.2"
717 | },
718 | "funding": {
719 | "type": "github",
720 | "url": "https://github.com/sponsors/epoberezkin"
721 | }
722 | },
723 | "node_modules/ansi-regex": {
724 | "version": "5.0.1",
725 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
726 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
727 | "dev": true,
728 | "engines": {
729 | "node": ">=8"
730 | }
731 | },
732 | "node_modules/ansi-styles": {
733 | "version": "4.3.0",
734 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
735 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
736 | "dev": true,
737 | "dependencies": {
738 | "color-convert": "^2.0.1"
739 | },
740 | "engines": {
741 | "node": ">=8"
742 | },
743 | "funding": {
744 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
745 | }
746 | },
747 | "node_modules/argparse": {
748 | "version": "2.0.1",
749 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
750 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
751 | "dev": true
752 | },
753 | "node_modules/balanced-match": {
754 | "version": "1.0.2",
755 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
756 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
757 | "dev": true
758 | },
759 | "node_modules/big-integer": {
760 | "version": "1.6.51",
761 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz",
762 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==",
763 | "dev": true,
764 | "engines": {
765 | "node": ">=0.6"
766 | }
767 | },
768 | "node_modules/boolbase": {
769 | "version": "1.0.0",
770 | "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
771 | "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
772 | "dev": true
773 | },
774 | "node_modules/bplist-parser": {
775 | "version": "0.2.0",
776 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz",
777 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==",
778 | "dev": true,
779 | "dependencies": {
780 | "big-integer": "^1.6.44"
781 | },
782 | "engines": {
783 | "node": ">= 5.10.0"
784 | }
785 | },
786 | "node_modules/brace-expansion": {
787 | "version": "1.1.11",
788 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
789 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
790 | "dev": true,
791 | "dependencies": {
792 | "balanced-match": "^1.0.0",
793 | "concat-map": "0.0.1"
794 | }
795 | },
796 | "node_modules/braces": {
797 | "version": "3.0.2",
798 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
799 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
800 | "dev": true,
801 | "dependencies": {
802 | "fill-range": "^7.0.1"
803 | },
804 | "engines": {
805 | "node": ">=8"
806 | }
807 | },
808 | "node_modules/bundle-name": {
809 | "version": "3.0.0",
810 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz",
811 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==",
812 | "dev": true,
813 | "dependencies": {
814 | "run-applescript": "^5.0.0"
815 | },
816 | "engines": {
817 | "node": ">=12"
818 | },
819 | "funding": {
820 | "url": "https://github.com/sponsors/sindresorhus"
821 | }
822 | },
823 | "node_modules/callsites": {
824 | "version": "3.1.0",
825 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
826 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
827 | "dev": true,
828 | "engines": {
829 | "node": ">=6"
830 | }
831 | },
832 | "node_modules/chalk": {
833 | "version": "4.1.2",
834 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
835 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
836 | "dev": true,
837 | "dependencies": {
838 | "ansi-styles": "^4.1.0",
839 | "supports-color": "^7.1.0"
840 | },
841 | "engines": {
842 | "node": ">=10"
843 | },
844 | "funding": {
845 | "url": "https://github.com/chalk/chalk?sponsor=1"
846 | }
847 | },
848 | "node_modules/color-convert": {
849 | "version": "2.0.1",
850 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
851 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
852 | "dev": true,
853 | "dependencies": {
854 | "color-name": "~1.1.4"
855 | },
856 | "engines": {
857 | "node": ">=7.0.0"
858 | }
859 | },
860 | "node_modules/color-name": {
861 | "version": "1.1.4",
862 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
863 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
864 | "dev": true
865 | },
866 | "node_modules/concat-map": {
867 | "version": "0.0.1",
868 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
869 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
870 | "dev": true
871 | },
872 | "node_modules/cross-spawn": {
873 | "version": "7.0.3",
874 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
875 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
876 | "dev": true,
877 | "dependencies": {
878 | "path-key": "^3.1.0",
879 | "shebang-command": "^2.0.0",
880 | "which": "^2.0.1"
881 | },
882 | "engines": {
883 | "node": ">= 8"
884 | }
885 | },
886 | "node_modules/cssesc": {
887 | "version": "3.0.0",
888 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
889 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
890 | "dev": true,
891 | "bin": {
892 | "cssesc": "bin/cssesc"
893 | },
894 | "engines": {
895 | "node": ">=4"
896 | }
897 | },
898 | "node_modules/csstype": {
899 | "version": "3.1.2",
900 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz",
901 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ=="
902 | },
903 | "node_modules/debug": {
904 | "version": "4.3.4",
905 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
906 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
907 | "dev": true,
908 | "dependencies": {
909 | "ms": "2.1.2"
910 | },
911 | "engines": {
912 | "node": ">=6.0"
913 | },
914 | "peerDependenciesMeta": {
915 | "supports-color": {
916 | "optional": true
917 | }
918 | }
919 | },
920 | "node_modules/deep-is": {
921 | "version": "0.1.4",
922 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
923 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
924 | "dev": true
925 | },
926 | "node_modules/default-browser": {
927 | "version": "4.0.0",
928 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz",
929 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==",
930 | "dev": true,
931 | "dependencies": {
932 | "bundle-name": "^3.0.0",
933 | "default-browser-id": "^3.0.0",
934 | "execa": "^7.1.1",
935 | "titleize": "^3.0.0"
936 | },
937 | "engines": {
938 | "node": ">=14.16"
939 | },
940 | "funding": {
941 | "url": "https://github.com/sponsors/sindresorhus"
942 | }
943 | },
944 | "node_modules/default-browser-id": {
945 | "version": "3.0.0",
946 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz",
947 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==",
948 | "dev": true,
949 | "dependencies": {
950 | "bplist-parser": "^0.2.0",
951 | "untildify": "^4.0.0"
952 | },
953 | "engines": {
954 | "node": ">=12"
955 | },
956 | "funding": {
957 | "url": "https://github.com/sponsors/sindresorhus"
958 | }
959 | },
960 | "node_modules/define-lazy-prop": {
961 | "version": "3.0.0",
962 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
963 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
964 | "dev": true,
965 | "engines": {
966 | "node": ">=12"
967 | },
968 | "funding": {
969 | "url": "https://github.com/sponsors/sindresorhus"
970 | }
971 | },
972 | "node_modules/doctrine": {
973 | "version": "3.0.0",
974 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
975 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
976 | "dev": true,
977 | "dependencies": {
978 | "esutils": "^2.0.2"
979 | },
980 | "engines": {
981 | "node": ">=6.0.0"
982 | }
983 | },
984 | "node_modules/es6-object-assign": {
985 | "version": "1.1.0",
986 | "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz",
987 | "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==",
988 | "dev": true
989 | },
990 | "node_modules/esbuild": {
991 | "version": "0.18.20",
992 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz",
993 | "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==",
994 | "dev": true,
995 | "hasInstallScript": true,
996 | "bin": {
997 | "esbuild": "bin/esbuild"
998 | },
999 | "engines": {
1000 | "node": ">=12"
1001 | },
1002 | "optionalDependencies": {
1003 | "@esbuild/android-arm": "0.18.20",
1004 | "@esbuild/android-arm64": "0.18.20",
1005 | "@esbuild/android-x64": "0.18.20",
1006 | "@esbuild/darwin-arm64": "0.18.20",
1007 | "@esbuild/darwin-x64": "0.18.20",
1008 | "@esbuild/freebsd-arm64": "0.18.20",
1009 | "@esbuild/freebsd-x64": "0.18.20",
1010 | "@esbuild/linux-arm": "0.18.20",
1011 | "@esbuild/linux-arm64": "0.18.20",
1012 | "@esbuild/linux-ia32": "0.18.20",
1013 | "@esbuild/linux-loong64": "0.18.20",
1014 | "@esbuild/linux-mips64el": "0.18.20",
1015 | "@esbuild/linux-ppc64": "0.18.20",
1016 | "@esbuild/linux-riscv64": "0.18.20",
1017 | "@esbuild/linux-s390x": "0.18.20",
1018 | "@esbuild/linux-x64": "0.18.20",
1019 | "@esbuild/netbsd-x64": "0.18.20",
1020 | "@esbuild/openbsd-x64": "0.18.20",
1021 | "@esbuild/sunos-x64": "0.18.20",
1022 | "@esbuild/win32-arm64": "0.18.20",
1023 | "@esbuild/win32-ia32": "0.18.20",
1024 | "@esbuild/win32-x64": "0.18.20"
1025 | }
1026 | },
1027 | "node_modules/escape-string-regexp": {
1028 | "version": "4.0.0",
1029 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1030 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1031 | "dev": true,
1032 | "engines": {
1033 | "node": ">=10"
1034 | },
1035 | "funding": {
1036 | "url": "https://github.com/sponsors/sindresorhus"
1037 | }
1038 | },
1039 | "node_modules/eslint": {
1040 | "version": "8.51.0",
1041 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.51.0.tgz",
1042 | "integrity": "sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==",
1043 | "dev": true,
1044 | "dependencies": {
1045 | "@eslint-community/eslint-utils": "^4.2.0",
1046 | "@eslint-community/regexpp": "^4.6.1",
1047 | "@eslint/eslintrc": "^2.1.2",
1048 | "@eslint/js": "8.51.0",
1049 | "@humanwhocodes/config-array": "^0.11.11",
1050 | "@humanwhocodes/module-importer": "^1.0.1",
1051 | "@nodelib/fs.walk": "^1.2.8",
1052 | "ajv": "^6.12.4",
1053 | "chalk": "^4.0.0",
1054 | "cross-spawn": "^7.0.2",
1055 | "debug": "^4.3.2",
1056 | "doctrine": "^3.0.0",
1057 | "escape-string-regexp": "^4.0.0",
1058 | "eslint-scope": "^7.2.2",
1059 | "eslint-visitor-keys": "^3.4.3",
1060 | "espree": "^9.6.1",
1061 | "esquery": "^1.4.2",
1062 | "esutils": "^2.0.2",
1063 | "fast-deep-equal": "^3.1.3",
1064 | "file-entry-cache": "^6.0.1",
1065 | "find-up": "^5.0.0",
1066 | "glob-parent": "^6.0.2",
1067 | "globals": "^13.19.0",
1068 | "graphemer": "^1.4.0",
1069 | "ignore": "^5.2.0",
1070 | "imurmurhash": "^0.1.4",
1071 | "is-glob": "^4.0.0",
1072 | "is-path-inside": "^3.0.3",
1073 | "js-yaml": "^4.1.0",
1074 | "json-stable-stringify-without-jsonify": "^1.0.1",
1075 | "levn": "^0.4.1",
1076 | "lodash.merge": "^4.6.2",
1077 | "minimatch": "^3.1.2",
1078 | "natural-compare": "^1.4.0",
1079 | "optionator": "^0.9.3",
1080 | "strip-ansi": "^6.0.1",
1081 | "text-table": "^0.2.0"
1082 | },
1083 | "bin": {
1084 | "eslint": "bin/eslint.js"
1085 | },
1086 | "engines": {
1087 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1088 | },
1089 | "funding": {
1090 | "url": "https://opencollective.com/eslint"
1091 | }
1092 | },
1093 | "node_modules/eslint-config-prettier": {
1094 | "version": "8.10.0",
1095 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz",
1096 | "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==",
1097 | "dev": true,
1098 | "bin": {
1099 | "eslint-config-prettier": "bin/cli.js"
1100 | },
1101 | "peerDependencies": {
1102 | "eslint": ">=7.0.0"
1103 | }
1104 | },
1105 | "node_modules/eslint-plugin-prettier": {
1106 | "version": "5.0.1",
1107 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz",
1108 | "integrity": "sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==",
1109 | "dev": true,
1110 | "dependencies": {
1111 | "prettier-linter-helpers": "^1.0.0",
1112 | "synckit": "^0.8.5"
1113 | },
1114 | "engines": {
1115 | "node": "^14.18.0 || >=16.0.0"
1116 | },
1117 | "funding": {
1118 | "url": "https://opencollective.com/prettier"
1119 | },
1120 | "peerDependencies": {
1121 | "@types/eslint": ">=8.0.0",
1122 | "eslint": ">=8.0.0",
1123 | "prettier": ">=3.0.0"
1124 | },
1125 | "peerDependenciesMeta": {
1126 | "@types/eslint": {
1127 | "optional": true
1128 | },
1129 | "eslint-config-prettier": {
1130 | "optional": true
1131 | }
1132 | }
1133 | },
1134 | "node_modules/eslint-plugin-vue": {
1135 | "version": "9.17.0",
1136 | "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.17.0.tgz",
1137 | "integrity": "sha512-r7Bp79pxQk9I5XDP0k2dpUC7Ots3OSWgvGZNu3BxmKK6Zg7NgVtcOB6OCna5Kb9oQwJPl5hq183WD0SY5tZtIQ==",
1138 | "dev": true,
1139 | "dependencies": {
1140 | "@eslint-community/eslint-utils": "^4.4.0",
1141 | "natural-compare": "^1.4.0",
1142 | "nth-check": "^2.1.1",
1143 | "postcss-selector-parser": "^6.0.13",
1144 | "semver": "^7.5.4",
1145 | "vue-eslint-parser": "^9.3.1",
1146 | "xml-name-validator": "^4.0.0"
1147 | },
1148 | "engines": {
1149 | "node": "^14.17.0 || >=16.0.0"
1150 | },
1151 | "peerDependencies": {
1152 | "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
1153 | }
1154 | },
1155 | "node_modules/eslint-scope": {
1156 | "version": "7.2.2",
1157 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
1158 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
1159 | "dev": true,
1160 | "dependencies": {
1161 | "esrecurse": "^4.3.0",
1162 | "estraverse": "^5.2.0"
1163 | },
1164 | "engines": {
1165 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1166 | },
1167 | "funding": {
1168 | "url": "https://opencollective.com/eslint"
1169 | }
1170 | },
1171 | "node_modules/eslint-visitor-keys": {
1172 | "version": "3.4.3",
1173 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
1174 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
1175 | "dev": true,
1176 | "engines": {
1177 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1178 | },
1179 | "funding": {
1180 | "url": "https://opencollective.com/eslint"
1181 | }
1182 | },
1183 | "node_modules/espree": {
1184 | "version": "9.6.1",
1185 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
1186 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
1187 | "dev": true,
1188 | "dependencies": {
1189 | "acorn": "^8.9.0",
1190 | "acorn-jsx": "^5.3.2",
1191 | "eslint-visitor-keys": "^3.4.1"
1192 | },
1193 | "engines": {
1194 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1195 | },
1196 | "funding": {
1197 | "url": "https://opencollective.com/eslint"
1198 | }
1199 | },
1200 | "node_modules/esquery": {
1201 | "version": "1.5.0",
1202 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
1203 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
1204 | "dev": true,
1205 | "dependencies": {
1206 | "estraverse": "^5.1.0"
1207 | },
1208 | "engines": {
1209 | "node": ">=0.10"
1210 | }
1211 | },
1212 | "node_modules/esrecurse": {
1213 | "version": "4.3.0",
1214 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1215 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1216 | "dev": true,
1217 | "dependencies": {
1218 | "estraverse": "^5.2.0"
1219 | },
1220 | "engines": {
1221 | "node": ">=4.0"
1222 | }
1223 | },
1224 | "node_modules/estraverse": {
1225 | "version": "5.3.0",
1226 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1227 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1228 | "dev": true,
1229 | "engines": {
1230 | "node": ">=4.0"
1231 | }
1232 | },
1233 | "node_modules/estree-walker": {
1234 | "version": "2.0.2",
1235 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
1236 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
1237 | },
1238 | "node_modules/esutils": {
1239 | "version": "2.0.3",
1240 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1241 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1242 | "dev": true,
1243 | "engines": {
1244 | "node": ">=0.10.0"
1245 | }
1246 | },
1247 | "node_modules/execa": {
1248 | "version": "7.2.0",
1249 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz",
1250 | "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==",
1251 | "dev": true,
1252 | "dependencies": {
1253 | "cross-spawn": "^7.0.3",
1254 | "get-stream": "^6.0.1",
1255 | "human-signals": "^4.3.0",
1256 | "is-stream": "^3.0.0",
1257 | "merge-stream": "^2.0.0",
1258 | "npm-run-path": "^5.1.0",
1259 | "onetime": "^6.0.0",
1260 | "signal-exit": "^3.0.7",
1261 | "strip-final-newline": "^3.0.0"
1262 | },
1263 | "engines": {
1264 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0"
1265 | },
1266 | "funding": {
1267 | "url": "https://github.com/sindresorhus/execa?sponsor=1"
1268 | }
1269 | },
1270 | "node_modules/fast-deep-equal": {
1271 | "version": "3.1.3",
1272 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1273 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1274 | "dev": true
1275 | },
1276 | "node_modules/fast-diff": {
1277 | "version": "1.3.0",
1278 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz",
1279 | "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==",
1280 | "dev": true
1281 | },
1282 | "node_modules/fast-glob": {
1283 | "version": "3.3.1",
1284 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz",
1285 | "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
1286 | "dev": true,
1287 | "dependencies": {
1288 | "@nodelib/fs.stat": "^2.0.2",
1289 | "@nodelib/fs.walk": "^1.2.3",
1290 | "glob-parent": "^5.1.2",
1291 | "merge2": "^1.3.0",
1292 | "micromatch": "^4.0.4"
1293 | },
1294 | "engines": {
1295 | "node": ">=8.6.0"
1296 | }
1297 | },
1298 | "node_modules/fast-glob/node_modules/glob-parent": {
1299 | "version": "5.1.2",
1300 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1301 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1302 | "dev": true,
1303 | "dependencies": {
1304 | "is-glob": "^4.0.1"
1305 | },
1306 | "engines": {
1307 | "node": ">= 6"
1308 | }
1309 | },
1310 | "node_modules/fast-json-stable-stringify": {
1311 | "version": "2.1.0",
1312 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1313 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1314 | "dev": true
1315 | },
1316 | "node_modules/fast-levenshtein": {
1317 | "version": "2.0.6",
1318 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1319 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1320 | "dev": true
1321 | },
1322 | "node_modules/fastq": {
1323 | "version": "1.15.0",
1324 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
1325 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
1326 | "dev": true,
1327 | "dependencies": {
1328 | "reusify": "^1.0.4"
1329 | }
1330 | },
1331 | "node_modules/file-entry-cache": {
1332 | "version": "6.0.1",
1333 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
1334 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
1335 | "dev": true,
1336 | "dependencies": {
1337 | "flat-cache": "^3.0.4"
1338 | },
1339 | "engines": {
1340 | "node": "^10.12.0 || >=12.0.0"
1341 | }
1342 | },
1343 | "node_modules/fill-range": {
1344 | "version": "7.0.1",
1345 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
1346 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
1347 | "dev": true,
1348 | "dependencies": {
1349 | "to-regex-range": "^5.0.1"
1350 | },
1351 | "engines": {
1352 | "node": ">=8"
1353 | }
1354 | },
1355 | "node_modules/find-up": {
1356 | "version": "5.0.0",
1357 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1358 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1359 | "dev": true,
1360 | "dependencies": {
1361 | "locate-path": "^6.0.0",
1362 | "path-exists": "^4.0.0"
1363 | },
1364 | "engines": {
1365 | "node": ">=10"
1366 | },
1367 | "funding": {
1368 | "url": "https://github.com/sponsors/sindresorhus"
1369 | }
1370 | },
1371 | "node_modules/flat-cache": {
1372 | "version": "3.1.1",
1373 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz",
1374 | "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==",
1375 | "dev": true,
1376 | "dependencies": {
1377 | "flatted": "^3.2.9",
1378 | "keyv": "^4.5.3",
1379 | "rimraf": "^3.0.2"
1380 | },
1381 | "engines": {
1382 | "node": ">=12.0.0"
1383 | }
1384 | },
1385 | "node_modules/flatted": {
1386 | "version": "3.2.9",
1387 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz",
1388 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==",
1389 | "dev": true
1390 | },
1391 | "node_modules/fs.realpath": {
1392 | "version": "1.0.0",
1393 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1394 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
1395 | "dev": true
1396 | },
1397 | "node_modules/fsevents": {
1398 | "version": "2.3.3",
1399 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1400 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1401 | "dev": true,
1402 | "hasInstallScript": true,
1403 | "optional": true,
1404 | "os": [
1405 | "darwin"
1406 | ],
1407 | "engines": {
1408 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1409 | }
1410 | },
1411 | "node_modules/get-stream": {
1412 | "version": "6.0.1",
1413 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
1414 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
1415 | "dev": true,
1416 | "engines": {
1417 | "node": ">=10"
1418 | },
1419 | "funding": {
1420 | "url": "https://github.com/sponsors/sindresorhus"
1421 | }
1422 | },
1423 | "node_modules/glob": {
1424 | "version": "7.2.3",
1425 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
1426 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
1427 | "dev": true,
1428 | "dependencies": {
1429 | "fs.realpath": "^1.0.0",
1430 | "inflight": "^1.0.4",
1431 | "inherits": "2",
1432 | "minimatch": "^3.1.1",
1433 | "once": "^1.3.0",
1434 | "path-is-absolute": "^1.0.0"
1435 | },
1436 | "engines": {
1437 | "node": "*"
1438 | },
1439 | "funding": {
1440 | "url": "https://github.com/sponsors/isaacs"
1441 | }
1442 | },
1443 | "node_modules/glob-parent": {
1444 | "version": "6.0.2",
1445 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1446 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1447 | "dev": true,
1448 | "dependencies": {
1449 | "is-glob": "^4.0.3"
1450 | },
1451 | "engines": {
1452 | "node": ">=10.13.0"
1453 | }
1454 | },
1455 | "node_modules/globals": {
1456 | "version": "13.23.0",
1457 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz",
1458 | "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==",
1459 | "dev": true,
1460 | "dependencies": {
1461 | "type-fest": "^0.20.2"
1462 | },
1463 | "engines": {
1464 | "node": ">=8"
1465 | },
1466 | "funding": {
1467 | "url": "https://github.com/sponsors/sindresorhus"
1468 | }
1469 | },
1470 | "node_modules/graphemer": {
1471 | "version": "1.4.0",
1472 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
1473 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
1474 | "dev": true
1475 | },
1476 | "node_modules/has-flag": {
1477 | "version": "4.0.0",
1478 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1479 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1480 | "dev": true,
1481 | "engines": {
1482 | "node": ">=8"
1483 | }
1484 | },
1485 | "node_modules/human-signals": {
1486 | "version": "4.3.1",
1487 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz",
1488 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==",
1489 | "dev": true,
1490 | "engines": {
1491 | "node": ">=14.18.0"
1492 | }
1493 | },
1494 | "node_modules/ignore": {
1495 | "version": "5.2.4",
1496 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
1497 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
1498 | "dev": true,
1499 | "engines": {
1500 | "node": ">= 4"
1501 | }
1502 | },
1503 | "node_modules/import-fresh": {
1504 | "version": "3.3.0",
1505 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
1506 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
1507 | "dev": true,
1508 | "dependencies": {
1509 | "parent-module": "^1.0.0",
1510 | "resolve-from": "^4.0.0"
1511 | },
1512 | "engines": {
1513 | "node": ">=6"
1514 | },
1515 | "funding": {
1516 | "url": "https://github.com/sponsors/sindresorhus"
1517 | }
1518 | },
1519 | "node_modules/imurmurhash": {
1520 | "version": "0.1.4",
1521 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1522 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
1523 | "dev": true,
1524 | "engines": {
1525 | "node": ">=0.8.19"
1526 | }
1527 | },
1528 | "node_modules/inflight": {
1529 | "version": "1.0.6",
1530 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
1531 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
1532 | "dev": true,
1533 | "dependencies": {
1534 | "once": "^1.3.0",
1535 | "wrappy": "1"
1536 | }
1537 | },
1538 | "node_modules/inherits": {
1539 | "version": "2.0.4",
1540 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1541 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1542 | "dev": true
1543 | },
1544 | "node_modules/is-docker": {
1545 | "version": "3.0.0",
1546 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
1547 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
1548 | "dev": true,
1549 | "bin": {
1550 | "is-docker": "cli.js"
1551 | },
1552 | "engines": {
1553 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1554 | },
1555 | "funding": {
1556 | "url": "https://github.com/sponsors/sindresorhus"
1557 | }
1558 | },
1559 | "node_modules/is-extglob": {
1560 | "version": "2.1.1",
1561 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1562 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1563 | "dev": true,
1564 | "engines": {
1565 | "node": ">=0.10.0"
1566 | }
1567 | },
1568 | "node_modules/is-glob": {
1569 | "version": "4.0.3",
1570 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1571 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1572 | "dev": true,
1573 | "dependencies": {
1574 | "is-extglob": "^2.1.1"
1575 | },
1576 | "engines": {
1577 | "node": ">=0.10.0"
1578 | }
1579 | },
1580 | "node_modules/is-inside-container": {
1581 | "version": "1.0.0",
1582 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
1583 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
1584 | "dev": true,
1585 | "dependencies": {
1586 | "is-docker": "^3.0.0"
1587 | },
1588 | "bin": {
1589 | "is-inside-container": "cli.js"
1590 | },
1591 | "engines": {
1592 | "node": ">=14.16"
1593 | },
1594 | "funding": {
1595 | "url": "https://github.com/sponsors/sindresorhus"
1596 | }
1597 | },
1598 | "node_modules/is-number": {
1599 | "version": "7.0.0",
1600 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1601 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1602 | "dev": true,
1603 | "engines": {
1604 | "node": ">=0.12.0"
1605 | }
1606 | },
1607 | "node_modules/is-path-inside": {
1608 | "version": "3.0.3",
1609 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
1610 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
1611 | "dev": true,
1612 | "engines": {
1613 | "node": ">=8"
1614 | }
1615 | },
1616 | "node_modules/is-stream": {
1617 | "version": "3.0.0",
1618 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
1619 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
1620 | "dev": true,
1621 | "engines": {
1622 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1623 | },
1624 | "funding": {
1625 | "url": "https://github.com/sponsors/sindresorhus"
1626 | }
1627 | },
1628 | "node_modules/is-wsl": {
1629 | "version": "2.2.0",
1630 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
1631 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
1632 | "dev": true,
1633 | "dependencies": {
1634 | "is-docker": "^2.0.0"
1635 | },
1636 | "engines": {
1637 | "node": ">=8"
1638 | }
1639 | },
1640 | "node_modules/is-wsl/node_modules/is-docker": {
1641 | "version": "2.2.1",
1642 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
1643 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
1644 | "dev": true,
1645 | "bin": {
1646 | "is-docker": "cli.js"
1647 | },
1648 | "engines": {
1649 | "node": ">=8"
1650 | },
1651 | "funding": {
1652 | "url": "https://github.com/sponsors/sindresorhus"
1653 | }
1654 | },
1655 | "node_modules/isexe": {
1656 | "version": "2.0.0",
1657 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1658 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1659 | "dev": true
1660 | },
1661 | "node_modules/js-yaml": {
1662 | "version": "4.1.0",
1663 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
1664 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
1665 | "dev": true,
1666 | "dependencies": {
1667 | "argparse": "^2.0.1"
1668 | },
1669 | "bin": {
1670 | "js-yaml": "bin/js-yaml.js"
1671 | }
1672 | },
1673 | "node_modules/json-buffer": {
1674 | "version": "3.0.1",
1675 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
1676 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
1677 | "dev": true
1678 | },
1679 | "node_modules/json-schema-traverse": {
1680 | "version": "0.4.1",
1681 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1682 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1683 | "dev": true
1684 | },
1685 | "node_modules/json-stable-stringify-without-jsonify": {
1686 | "version": "1.0.1",
1687 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1688 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
1689 | "dev": true
1690 | },
1691 | "node_modules/keyv": {
1692 | "version": "4.5.4",
1693 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
1694 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
1695 | "dev": true,
1696 | "dependencies": {
1697 | "json-buffer": "3.0.1"
1698 | }
1699 | },
1700 | "node_modules/levn": {
1701 | "version": "0.4.1",
1702 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
1703 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1704 | "dev": true,
1705 | "dependencies": {
1706 | "prelude-ls": "^1.2.1",
1707 | "type-check": "~0.4.0"
1708 | },
1709 | "engines": {
1710 | "node": ">= 0.8.0"
1711 | }
1712 | },
1713 | "node_modules/locate-path": {
1714 | "version": "6.0.0",
1715 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
1716 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
1717 | "dev": true,
1718 | "dependencies": {
1719 | "p-locate": "^5.0.0"
1720 | },
1721 | "engines": {
1722 | "node": ">=10"
1723 | },
1724 | "funding": {
1725 | "url": "https://github.com/sponsors/sindresorhus"
1726 | }
1727 | },
1728 | "node_modules/lodash": {
1729 | "version": "4.17.21",
1730 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
1731 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
1732 | "dev": true
1733 | },
1734 | "node_modules/lodash.merge": {
1735 | "version": "4.6.2",
1736 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
1737 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
1738 | "dev": true
1739 | },
1740 | "node_modules/lru-cache": {
1741 | "version": "6.0.0",
1742 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
1743 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
1744 | "dev": true,
1745 | "dependencies": {
1746 | "yallist": "^4.0.0"
1747 | },
1748 | "engines": {
1749 | "node": ">=10"
1750 | }
1751 | },
1752 | "node_modules/magic-string": {
1753 | "version": "0.30.5",
1754 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz",
1755 | "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==",
1756 | "dependencies": {
1757 | "@jridgewell/sourcemap-codec": "^1.4.15"
1758 | },
1759 | "engines": {
1760 | "node": ">=12"
1761 | }
1762 | },
1763 | "node_modules/merge-stream": {
1764 | "version": "2.0.0",
1765 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
1766 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
1767 | "dev": true
1768 | },
1769 | "node_modules/merge2": {
1770 | "version": "1.4.1",
1771 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
1772 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
1773 | "dev": true,
1774 | "engines": {
1775 | "node": ">= 8"
1776 | }
1777 | },
1778 | "node_modules/micromatch": {
1779 | "version": "4.0.5",
1780 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
1781 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
1782 | "dev": true,
1783 | "dependencies": {
1784 | "braces": "^3.0.2",
1785 | "picomatch": "^2.3.1"
1786 | },
1787 | "engines": {
1788 | "node": ">=8.6"
1789 | }
1790 | },
1791 | "node_modules/mimic-fn": {
1792 | "version": "4.0.0",
1793 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
1794 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
1795 | "dev": true,
1796 | "engines": {
1797 | "node": ">=12"
1798 | },
1799 | "funding": {
1800 | "url": "https://github.com/sponsors/sindresorhus"
1801 | }
1802 | },
1803 | "node_modules/minimatch": {
1804 | "version": "3.1.2",
1805 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
1806 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
1807 | "dev": true,
1808 | "dependencies": {
1809 | "brace-expansion": "^1.1.7"
1810 | },
1811 | "engines": {
1812 | "node": "*"
1813 | }
1814 | },
1815 | "node_modules/ms": {
1816 | "version": "2.1.2",
1817 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
1818 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
1819 | "dev": true
1820 | },
1821 | "node_modules/nanoid": {
1822 | "version": "3.3.6",
1823 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
1824 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
1825 | "funding": [
1826 | {
1827 | "type": "github",
1828 | "url": "https://github.com/sponsors/ai"
1829 | }
1830 | ],
1831 | "bin": {
1832 | "nanoid": "bin/nanoid.cjs"
1833 | },
1834 | "engines": {
1835 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1836 | }
1837 | },
1838 | "node_modules/natural-compare": {
1839 | "version": "1.4.0",
1840 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
1841 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
1842 | "dev": true
1843 | },
1844 | "node_modules/npm-run-path": {
1845 | "version": "5.1.0",
1846 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz",
1847 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==",
1848 | "dev": true,
1849 | "dependencies": {
1850 | "path-key": "^4.0.0"
1851 | },
1852 | "engines": {
1853 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1854 | },
1855 | "funding": {
1856 | "url": "https://github.com/sponsors/sindresorhus"
1857 | }
1858 | },
1859 | "node_modules/npm-run-path/node_modules/path-key": {
1860 | "version": "4.0.0",
1861 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
1862 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
1863 | "dev": true,
1864 | "engines": {
1865 | "node": ">=12"
1866 | },
1867 | "funding": {
1868 | "url": "https://github.com/sponsors/sindresorhus"
1869 | }
1870 | },
1871 | "node_modules/nth-check": {
1872 | "version": "2.1.1",
1873 | "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
1874 | "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
1875 | "dev": true,
1876 | "dependencies": {
1877 | "boolbase": "^1.0.0"
1878 | },
1879 | "funding": {
1880 | "url": "https://github.com/fb55/nth-check?sponsor=1"
1881 | }
1882 | },
1883 | "node_modules/once": {
1884 | "version": "1.4.0",
1885 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1886 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
1887 | "dev": true,
1888 | "dependencies": {
1889 | "wrappy": "1"
1890 | }
1891 | },
1892 | "node_modules/onetime": {
1893 | "version": "6.0.0",
1894 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
1895 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
1896 | "dev": true,
1897 | "dependencies": {
1898 | "mimic-fn": "^4.0.0"
1899 | },
1900 | "engines": {
1901 | "node": ">=12"
1902 | },
1903 | "funding": {
1904 | "url": "https://github.com/sponsors/sindresorhus"
1905 | }
1906 | },
1907 | "node_modules/open": {
1908 | "version": "9.1.0",
1909 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz",
1910 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==",
1911 | "dev": true,
1912 | "dependencies": {
1913 | "default-browser": "^4.0.0",
1914 | "define-lazy-prop": "^3.0.0",
1915 | "is-inside-container": "^1.0.0",
1916 | "is-wsl": "^2.2.0"
1917 | },
1918 | "engines": {
1919 | "node": ">=14.16"
1920 | },
1921 | "funding": {
1922 | "url": "https://github.com/sponsors/sindresorhus"
1923 | }
1924 | },
1925 | "node_modules/optionator": {
1926 | "version": "0.9.3",
1927 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
1928 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
1929 | "dev": true,
1930 | "dependencies": {
1931 | "@aashutoshrathi/word-wrap": "^1.2.3",
1932 | "deep-is": "^0.1.3",
1933 | "fast-levenshtein": "^2.0.6",
1934 | "levn": "^0.4.1",
1935 | "prelude-ls": "^1.2.1",
1936 | "type-check": "^0.4.0"
1937 | },
1938 | "engines": {
1939 | "node": ">= 0.8.0"
1940 | }
1941 | },
1942 | "node_modules/p-limit": {
1943 | "version": "3.1.0",
1944 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
1945 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
1946 | "dev": true,
1947 | "dependencies": {
1948 | "yocto-queue": "^0.1.0"
1949 | },
1950 | "engines": {
1951 | "node": ">=10"
1952 | },
1953 | "funding": {
1954 | "url": "https://github.com/sponsors/sindresorhus"
1955 | }
1956 | },
1957 | "node_modules/p-locate": {
1958 | "version": "5.0.0",
1959 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
1960 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
1961 | "dev": true,
1962 | "dependencies": {
1963 | "p-limit": "^3.0.2"
1964 | },
1965 | "engines": {
1966 | "node": ">=10"
1967 | },
1968 | "funding": {
1969 | "url": "https://github.com/sponsors/sindresorhus"
1970 | }
1971 | },
1972 | "node_modules/parent-module": {
1973 | "version": "1.0.1",
1974 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
1975 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
1976 | "dev": true,
1977 | "dependencies": {
1978 | "callsites": "^3.0.0"
1979 | },
1980 | "engines": {
1981 | "node": ">=6"
1982 | }
1983 | },
1984 | "node_modules/path-exists": {
1985 | "version": "4.0.0",
1986 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
1987 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
1988 | "dev": true,
1989 | "engines": {
1990 | "node": ">=8"
1991 | }
1992 | },
1993 | "node_modules/path-is-absolute": {
1994 | "version": "1.0.1",
1995 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
1996 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
1997 | "dev": true,
1998 | "engines": {
1999 | "node": ">=0.10.0"
2000 | }
2001 | },
2002 | "node_modules/path-key": {
2003 | "version": "3.1.1",
2004 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2005 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2006 | "dev": true,
2007 | "engines": {
2008 | "node": ">=8"
2009 | }
2010 | },
2011 | "node_modules/picocolors": {
2012 | "version": "1.0.0",
2013 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
2014 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
2015 | },
2016 | "node_modules/picomatch": {
2017 | "version": "2.3.1",
2018 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2019 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2020 | "dev": true,
2021 | "engines": {
2022 | "node": ">=8.6"
2023 | },
2024 | "funding": {
2025 | "url": "https://github.com/sponsors/jonschlinkert"
2026 | }
2027 | },
2028 | "node_modules/postcss": {
2029 | "version": "8.4.31",
2030 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
2031 | "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
2032 | "funding": [
2033 | {
2034 | "type": "opencollective",
2035 | "url": "https://opencollective.com/postcss/"
2036 | },
2037 | {
2038 | "type": "tidelift",
2039 | "url": "https://tidelift.com/funding/github/npm/postcss"
2040 | },
2041 | {
2042 | "type": "github",
2043 | "url": "https://github.com/sponsors/ai"
2044 | }
2045 | ],
2046 | "dependencies": {
2047 | "nanoid": "^3.3.6",
2048 | "picocolors": "^1.0.0",
2049 | "source-map-js": "^1.0.2"
2050 | },
2051 | "engines": {
2052 | "node": "^10 || ^12 || >=14"
2053 | }
2054 | },
2055 | "node_modules/postcss-selector-parser": {
2056 | "version": "6.0.13",
2057 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz",
2058 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==",
2059 | "dev": true,
2060 | "dependencies": {
2061 | "cssesc": "^3.0.0",
2062 | "util-deprecate": "^1.0.2"
2063 | },
2064 | "engines": {
2065 | "node": ">=4"
2066 | }
2067 | },
2068 | "node_modules/prelude-ls": {
2069 | "version": "1.2.1",
2070 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2071 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2072 | "dev": true,
2073 | "engines": {
2074 | "node": ">= 0.8.0"
2075 | }
2076 | },
2077 | "node_modules/prettier": {
2078 | "version": "3.0.3",
2079 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz",
2080 | "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==",
2081 | "dev": true,
2082 | "bin": {
2083 | "prettier": "bin/prettier.cjs"
2084 | },
2085 | "engines": {
2086 | "node": ">=14"
2087 | },
2088 | "funding": {
2089 | "url": "https://github.com/prettier/prettier?sponsor=1"
2090 | }
2091 | },
2092 | "node_modules/prettier-linter-helpers": {
2093 | "version": "1.0.0",
2094 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
2095 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
2096 | "dev": true,
2097 | "dependencies": {
2098 | "fast-diff": "^1.1.2"
2099 | },
2100 | "engines": {
2101 | "node": ">=6.0.0"
2102 | }
2103 | },
2104 | "node_modules/promise-polyfill": {
2105 | "version": "6.1.0",
2106 | "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-6.1.0.tgz",
2107 | "integrity": "sha512-g0LWaH0gFsxovsU7R5LrrhHhWAWiHRnh1GPrhXnPgYsDkIqjRYUYSZEsej/wtleDrz5xVSIDbeKfidztp2XHFQ==",
2108 | "dev": true
2109 | },
2110 | "node_modules/punycode": {
2111 | "version": "2.3.0",
2112 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
2113 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
2114 | "dev": true,
2115 | "engines": {
2116 | "node": ">=6"
2117 | }
2118 | },
2119 | "node_modules/queue-microtask": {
2120 | "version": "1.2.3",
2121 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
2122 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
2123 | "dev": true,
2124 | "funding": [
2125 | {
2126 | "type": "github",
2127 | "url": "https://github.com/sponsors/feross"
2128 | },
2129 | {
2130 | "type": "patreon",
2131 | "url": "https://www.patreon.com/feross"
2132 | },
2133 | {
2134 | "type": "consulting",
2135 | "url": "https://feross.org/support"
2136 | }
2137 | ]
2138 | },
2139 | "node_modules/resolve-from": {
2140 | "version": "4.0.0",
2141 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
2142 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2143 | "dev": true,
2144 | "engines": {
2145 | "node": ">=4"
2146 | }
2147 | },
2148 | "node_modules/reusify": {
2149 | "version": "1.0.4",
2150 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
2151 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
2152 | "dev": true,
2153 | "engines": {
2154 | "iojs": ">=1.0.0",
2155 | "node": ">=0.10.0"
2156 | }
2157 | },
2158 | "node_modules/rimraf": {
2159 | "version": "3.0.2",
2160 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
2161 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
2162 | "dev": true,
2163 | "dependencies": {
2164 | "glob": "^7.1.3"
2165 | },
2166 | "bin": {
2167 | "rimraf": "bin.js"
2168 | },
2169 | "funding": {
2170 | "url": "https://github.com/sponsors/isaacs"
2171 | }
2172 | },
2173 | "node_modules/rollup": {
2174 | "version": "3.29.4",
2175 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz",
2176 | "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==",
2177 | "dev": true,
2178 | "bin": {
2179 | "rollup": "dist/bin/rollup"
2180 | },
2181 | "engines": {
2182 | "node": ">=14.18.0",
2183 | "npm": ">=8.0.0"
2184 | },
2185 | "optionalDependencies": {
2186 | "fsevents": "~2.3.2"
2187 | }
2188 | },
2189 | "node_modules/run-applescript": {
2190 | "version": "5.0.0",
2191 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz",
2192 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==",
2193 | "dev": true,
2194 | "dependencies": {
2195 | "execa": "^5.0.0"
2196 | },
2197 | "engines": {
2198 | "node": ">=12"
2199 | },
2200 | "funding": {
2201 | "url": "https://github.com/sponsors/sindresorhus"
2202 | }
2203 | },
2204 | "node_modules/run-applescript/node_modules/execa": {
2205 | "version": "5.1.1",
2206 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
2207 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
2208 | "dev": true,
2209 | "dependencies": {
2210 | "cross-spawn": "^7.0.3",
2211 | "get-stream": "^6.0.0",
2212 | "human-signals": "^2.1.0",
2213 | "is-stream": "^2.0.0",
2214 | "merge-stream": "^2.0.0",
2215 | "npm-run-path": "^4.0.1",
2216 | "onetime": "^5.1.2",
2217 | "signal-exit": "^3.0.3",
2218 | "strip-final-newline": "^2.0.0"
2219 | },
2220 | "engines": {
2221 | "node": ">=10"
2222 | },
2223 | "funding": {
2224 | "url": "https://github.com/sindresorhus/execa?sponsor=1"
2225 | }
2226 | },
2227 | "node_modules/run-applescript/node_modules/human-signals": {
2228 | "version": "2.1.0",
2229 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
2230 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
2231 | "dev": true,
2232 | "engines": {
2233 | "node": ">=10.17.0"
2234 | }
2235 | },
2236 | "node_modules/run-applescript/node_modules/is-stream": {
2237 | "version": "2.0.1",
2238 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
2239 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
2240 | "dev": true,
2241 | "engines": {
2242 | "node": ">=8"
2243 | },
2244 | "funding": {
2245 | "url": "https://github.com/sponsors/sindresorhus"
2246 | }
2247 | },
2248 | "node_modules/run-applescript/node_modules/mimic-fn": {
2249 | "version": "2.1.0",
2250 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
2251 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
2252 | "dev": true,
2253 | "engines": {
2254 | "node": ">=6"
2255 | }
2256 | },
2257 | "node_modules/run-applescript/node_modules/npm-run-path": {
2258 | "version": "4.0.1",
2259 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
2260 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
2261 | "dev": true,
2262 | "dependencies": {
2263 | "path-key": "^3.0.0"
2264 | },
2265 | "engines": {
2266 | "node": ">=8"
2267 | }
2268 | },
2269 | "node_modules/run-applescript/node_modules/onetime": {
2270 | "version": "5.1.2",
2271 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
2272 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
2273 | "dev": true,
2274 | "dependencies": {
2275 | "mimic-fn": "^2.1.0"
2276 | },
2277 | "engines": {
2278 | "node": ">=6"
2279 | },
2280 | "funding": {
2281 | "url": "https://github.com/sponsors/sindresorhus"
2282 | }
2283 | },
2284 | "node_modules/run-applescript/node_modules/strip-final-newline": {
2285 | "version": "2.0.0",
2286 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
2287 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
2288 | "dev": true,
2289 | "engines": {
2290 | "node": ">=6"
2291 | }
2292 | },
2293 | "node_modules/run-parallel": {
2294 | "version": "1.2.0",
2295 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
2296 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
2297 | "dev": true,
2298 | "funding": [
2299 | {
2300 | "type": "github",
2301 | "url": "https://github.com/sponsors/feross"
2302 | },
2303 | {
2304 | "type": "patreon",
2305 | "url": "https://www.patreon.com/feross"
2306 | },
2307 | {
2308 | "type": "consulting",
2309 | "url": "https://feross.org/support"
2310 | }
2311 | ],
2312 | "dependencies": {
2313 | "queue-microtask": "^1.2.2"
2314 | }
2315 | },
2316 | "node_modules/semver": {
2317 | "version": "7.5.4",
2318 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
2319 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
2320 | "dev": true,
2321 | "dependencies": {
2322 | "lru-cache": "^6.0.0"
2323 | },
2324 | "bin": {
2325 | "semver": "bin/semver.js"
2326 | },
2327 | "engines": {
2328 | "node": ">=10"
2329 | }
2330 | },
2331 | "node_modules/shebang-command": {
2332 | "version": "2.0.0",
2333 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2334 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2335 | "dev": true,
2336 | "dependencies": {
2337 | "shebang-regex": "^3.0.0"
2338 | },
2339 | "engines": {
2340 | "node": ">=8"
2341 | }
2342 | },
2343 | "node_modules/shebang-regex": {
2344 | "version": "3.0.0",
2345 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2346 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2347 | "dev": true,
2348 | "engines": {
2349 | "node": ">=8"
2350 | }
2351 | },
2352 | "node_modules/signal-exit": {
2353 | "version": "3.0.7",
2354 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
2355 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
2356 | "dev": true
2357 | },
2358 | "node_modules/source-map-js": {
2359 | "version": "1.0.2",
2360 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
2361 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
2362 | "engines": {
2363 | "node": ">=0.10.0"
2364 | }
2365 | },
2366 | "node_modules/strip-ansi": {
2367 | "version": "6.0.1",
2368 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2369 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2370 | "dev": true,
2371 | "dependencies": {
2372 | "ansi-regex": "^5.0.1"
2373 | },
2374 | "engines": {
2375 | "node": ">=8"
2376 | }
2377 | },
2378 | "node_modules/strip-final-newline": {
2379 | "version": "3.0.0",
2380 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
2381 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
2382 | "dev": true,
2383 | "engines": {
2384 | "node": ">=12"
2385 | },
2386 | "funding": {
2387 | "url": "https://github.com/sponsors/sindresorhus"
2388 | }
2389 | },
2390 | "node_modules/strip-json-comments": {
2391 | "version": "3.1.1",
2392 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
2393 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
2394 | "dev": true,
2395 | "engines": {
2396 | "node": ">=8"
2397 | },
2398 | "funding": {
2399 | "url": "https://github.com/sponsors/sindresorhus"
2400 | }
2401 | },
2402 | "node_modules/supports-color": {
2403 | "version": "7.2.0",
2404 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2405 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2406 | "dev": true,
2407 | "dependencies": {
2408 | "has-flag": "^4.0.0"
2409 | },
2410 | "engines": {
2411 | "node": ">=8"
2412 | }
2413 | },
2414 | "node_modules/sweetalert": {
2415 | "version": "2.1.2",
2416 | "resolved": "https://registry.npmjs.org/sweetalert/-/sweetalert-2.1.2.tgz",
2417 | "integrity": "sha512-iWx7X4anRBNDa/a+AdTmvAzQtkN1+s4j/JJRWlHpYE8Qimkohs8/XnFcWeYHH2lMA8LRCa5tj2d244If3S/hzA==",
2418 | "dev": true,
2419 | "dependencies": {
2420 | "es6-object-assign": "^1.1.0",
2421 | "promise-polyfill": "^6.0.2"
2422 | }
2423 | },
2424 | "node_modules/synckit": {
2425 | "version": "0.8.5",
2426 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz",
2427 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==",
2428 | "dev": true,
2429 | "dependencies": {
2430 | "@pkgr/utils": "^2.3.1",
2431 | "tslib": "^2.5.0"
2432 | },
2433 | "engines": {
2434 | "node": "^14.18.0 || >=16.0.0"
2435 | },
2436 | "funding": {
2437 | "url": "https://opencollective.com/unts"
2438 | }
2439 | },
2440 | "node_modules/text-table": {
2441 | "version": "0.2.0",
2442 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
2443 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
2444 | "dev": true
2445 | },
2446 | "node_modules/titleize": {
2447 | "version": "3.0.0",
2448 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz",
2449 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==",
2450 | "dev": true,
2451 | "engines": {
2452 | "node": ">=12"
2453 | },
2454 | "funding": {
2455 | "url": "https://github.com/sponsors/sindresorhus"
2456 | }
2457 | },
2458 | "node_modules/to-regex-range": {
2459 | "version": "5.0.1",
2460 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2461 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2462 | "dev": true,
2463 | "dependencies": {
2464 | "is-number": "^7.0.0"
2465 | },
2466 | "engines": {
2467 | "node": ">=8.0"
2468 | }
2469 | },
2470 | "node_modules/tslib": {
2471 | "version": "2.6.2",
2472 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
2473 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==",
2474 | "dev": true
2475 | },
2476 | "node_modules/type-check": {
2477 | "version": "0.4.0",
2478 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2479 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2480 | "dev": true,
2481 | "dependencies": {
2482 | "prelude-ls": "^1.2.1"
2483 | },
2484 | "engines": {
2485 | "node": ">= 0.8.0"
2486 | }
2487 | },
2488 | "node_modules/type-fest": {
2489 | "version": "0.20.2",
2490 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
2491 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
2492 | "dev": true,
2493 | "engines": {
2494 | "node": ">=10"
2495 | },
2496 | "funding": {
2497 | "url": "https://github.com/sponsors/sindresorhus"
2498 | }
2499 | },
2500 | "node_modules/untildify": {
2501 | "version": "4.0.0",
2502 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
2503 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
2504 | "dev": true,
2505 | "engines": {
2506 | "node": ">=8"
2507 | }
2508 | },
2509 | "node_modules/uri-js": {
2510 | "version": "4.4.1",
2511 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2512 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2513 | "dev": true,
2514 | "dependencies": {
2515 | "punycode": "^2.1.0"
2516 | }
2517 | },
2518 | "node_modules/util-deprecate": {
2519 | "version": "1.0.2",
2520 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
2521 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2522 | "dev": true
2523 | },
2524 | "node_modules/vite": {
2525 | "version": "4.4.11",
2526 | "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.11.tgz",
2527 | "integrity": "sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==",
2528 | "dev": true,
2529 | "dependencies": {
2530 | "esbuild": "^0.18.10",
2531 | "postcss": "^8.4.27",
2532 | "rollup": "^3.27.1"
2533 | },
2534 | "bin": {
2535 | "vite": "bin/vite.js"
2536 | },
2537 | "engines": {
2538 | "node": "^14.18.0 || >=16.0.0"
2539 | },
2540 | "funding": {
2541 | "url": "https://github.com/vitejs/vite?sponsor=1"
2542 | },
2543 | "optionalDependencies": {
2544 | "fsevents": "~2.3.2"
2545 | },
2546 | "peerDependencies": {
2547 | "@types/node": ">= 14",
2548 | "less": "*",
2549 | "lightningcss": "^1.21.0",
2550 | "sass": "*",
2551 | "stylus": "*",
2552 | "sugarss": "*",
2553 | "terser": "^5.4.0"
2554 | },
2555 | "peerDependenciesMeta": {
2556 | "@types/node": {
2557 | "optional": true
2558 | },
2559 | "less": {
2560 | "optional": true
2561 | },
2562 | "lightningcss": {
2563 | "optional": true
2564 | },
2565 | "sass": {
2566 | "optional": true
2567 | },
2568 | "stylus": {
2569 | "optional": true
2570 | },
2571 | "sugarss": {
2572 | "optional": true
2573 | },
2574 | "terser": {
2575 | "optional": true
2576 | }
2577 | }
2578 | },
2579 | "node_modules/vue": {
2580 | "version": "3.3.4",
2581 | "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz",
2582 | "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==",
2583 | "dependencies": {
2584 | "@vue/compiler-dom": "3.3.4",
2585 | "@vue/compiler-sfc": "3.3.4",
2586 | "@vue/runtime-dom": "3.3.4",
2587 | "@vue/server-renderer": "3.3.4",
2588 | "@vue/shared": "3.3.4"
2589 | }
2590 | },
2591 | "node_modules/vue-eslint-parser": {
2592 | "version": "9.3.2",
2593 | "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.3.2.tgz",
2594 | "integrity": "sha512-q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBjg==",
2595 | "dev": true,
2596 | "dependencies": {
2597 | "debug": "^4.3.4",
2598 | "eslint-scope": "^7.1.1",
2599 | "eslint-visitor-keys": "^3.3.0",
2600 | "espree": "^9.3.1",
2601 | "esquery": "^1.4.0",
2602 | "lodash": "^4.17.21",
2603 | "semver": "^7.3.6"
2604 | },
2605 | "engines": {
2606 | "node": "^14.17.0 || >=16.0.0"
2607 | },
2608 | "funding": {
2609 | "url": "https://github.com/sponsors/mysticatea"
2610 | },
2611 | "peerDependencies": {
2612 | "eslint": ">=6.0.0"
2613 | }
2614 | },
2615 | "node_modules/vue-router": {
2616 | "version": "4.2.5",
2617 | "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.2.5.tgz",
2618 | "integrity": "sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==",
2619 | "dependencies": {
2620 | "@vue/devtools-api": "^6.5.0"
2621 | },
2622 | "funding": {
2623 | "url": "https://github.com/sponsors/posva"
2624 | },
2625 | "peerDependencies": {
2626 | "vue": "^3.2.0"
2627 | }
2628 | },
2629 | "node_modules/which": {
2630 | "version": "2.0.2",
2631 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2632 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2633 | "dev": true,
2634 | "dependencies": {
2635 | "isexe": "^2.0.0"
2636 | },
2637 | "bin": {
2638 | "node-which": "bin/node-which"
2639 | },
2640 | "engines": {
2641 | "node": ">= 8"
2642 | }
2643 | },
2644 | "node_modules/wrappy": {
2645 | "version": "1.0.2",
2646 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
2647 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
2648 | "dev": true
2649 | },
2650 | "node_modules/xml-name-validator": {
2651 | "version": "4.0.0",
2652 | "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz",
2653 | "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==",
2654 | "dev": true,
2655 | "engines": {
2656 | "node": ">=12"
2657 | }
2658 | },
2659 | "node_modules/yallist": {
2660 | "version": "4.0.0",
2661 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
2662 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
2663 | "dev": true
2664 | },
2665 | "node_modules/yocto-queue": {
2666 | "version": "0.1.0",
2667 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
2668 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
2669 | "dev": true,
2670 | "engines": {
2671 | "node": ">=10"
2672 | },
2673 | "funding": {
2674 | "url": "https://github.com/sponsors/sindresorhus"
2675 | }
2676 | }
2677 | }
2678 | }
2679 |
--------------------------------------------------------------------------------