student life social platform

Merge branch 'main' into lebihae/housekeeping

+631 -2434
+6 -1
.vscode/tasks.json
··· 69 69 "dependsOrder": "sequence" 70 70 }, 71 71 { 72 + "label": "Watch .env", 73 + "type": "shell", 74 + "command": "yarn dev:env" 75 + }, 76 + { 72 77 "label": "Develop", 73 - "dependsOn": ["Develop API", "Develop App"], 78 + "dependsOn": ["Develop API", "Develop App", "Watch .env"], 74 79 "dependsOrder": "parallel", 75 80 "problemMatcher": [] 76 81 }
+8 -6
CONTRIBUTING.md
··· 27 27 git clone https://git.inpt.fr/churros/churros.git 28 28 ``` 29 29 30 - > **NOTE:** Si vous utilisez VS Code, vous pouvez ouvrir le projet dans VS Code et lancher la tache "Setup environment" (<kbbd>Ctrl+Shift+P</kbd> puis taper "Run Task" et sélectionner "Setup environment"). C'est l'équivalent des commandes ci-dessous. 30 + > **NOTE:** Si vous utilisez VS Code, vous pouvez ouvrir le projet dans VS Code et lancer la tache "Setup environment" (<kbbd>Ctrl+Shift+P</kbd> puis taper "Run Task" et sélectionner "Setup environment"). C'est l'équivalent des commandes ci-dessous. 31 31 32 32 2. Installer les dépendances (Volta s'occupera de Node et Yarn pour vous et installera automatiquement les bonnes versions au lancement de cette commande) 33 33 ··· 65 65 yarn dev 66 66 ``` 67 67 68 + On peut aussi lancer `yarn dev:env` pour automatiquement mettre à jour le `.env` de chaque paquet quand on modifie le `.env` à la racine. 69 + 68 70 - Ou (c'est mieux), démarrer dans 2 terminaux indépendants les serveurs de dev de l'API et de l'application: 69 71 70 72 1. ··· 73 75 docker compose up -d 74 76 ``` 75 77 76 - 2. | Terminal 1 | Terminal 2 | 77 - | --------------- | --------------- | 78 - | `yarn @api dev` | `yarn @app dev` | 78 + 2. | Terminal 1 | Terminal 2 | Terminal 3 | 79 + | --------------- | --------------- | -------------- | 80 + | `yarn @api dev` | `yarn @app dev` | `yarn dev:env` | 79 81 80 - (sur VSCode: Run Task puis Develop) 82 + (sur VSCode: Run Task puis Develop fait cela pour vous) 81 83 82 84 Note que le faux serveur LDAP de l'école ne fonctionnera pas (il faut le lancer dans encore un autre terminal), mais ça ne pose pas de problème si l'on ne développe pas la partie inscriptions. 83 85 ··· 95 97 96 98 ## Développement 97 99 98 - [Voir le wiki](https://git.inpt.fr/churros/churros/-/wikis) pour se familiariser avec l'architecture du projet. 100 + [Voir le wiki](https://git.inpt.fr/churros/wiki) pour se familiariser avec l'architecture du projet. 99 101 100 102 ### Résolution de problèmes 101 103
+5 -1
package.json
··· 12 12 "@typescript-eslint/eslint-plugin": "^8.16.0", 13 13 "@typescript-eslint/parser": "^8.16.0", 14 14 "changesets-gitlab": "^0.12.1", 15 + "chokidar": "^4.0.1", 16 + "concurrently": "^9.0.1", 15 17 "dotenv-cli": "^7.4.4", 16 18 "dotenv-parser-serializer": "patch:dotenv-parser-serializer@npm%3A1.0.2#~/.yarn/patches/dotenv-parser-serializer-npm-1.0.2-e32bb8ac9d.patch", 17 19 "eslint": "^8.57.1", 18 20 "eslint-config-prettier": "^9.1.0", 19 21 "eslint-plugin-svelte": "^2.46.0", 20 22 "eslint-plugin-unicorn": "^56.0.1", 23 + "execa": "^9.4.1", 21 24 "husky": "^9.1.7", 22 25 "kleur": "^4.1.5", 23 26 "lint-staged": "^15.2.10", ··· 28 31 "prettier-plugin-jsdoc": "^1.3.0", 29 32 "prettier-plugin-organize-imports": "^4.1.0", 30 33 "prettier-plugin-svelte": "^3.3.2", 31 - "stylelint": "^16.10.0", 34 + "stylelint": "^16.11.0", 32 35 "stylelint-config-html": "^1.1.0", 33 36 "stylelint-config-prettier": "^9.0.5", 34 37 "stylelint-config-recess-order": "^5.1.1", ··· 48 51 "check": "yarn cp-env && yarn generate-buildinfo --stub && yarn workspaces foreach --exclude @churros/docs --interlaced --topological-dev -Apv run check", 49 52 "cp-env": "test -f .env || cp .env.example .env && cp .env packages/api/ && cp .env packages/app/ && cp .env packages/db/", 50 53 "pre:dev": "yarn sync-with-example-dotenv && yarn cp-env && docker compose up -d", 54 + "dev:env": "yarn tsx scripts/watch-env.ts", 51 55 "dev": "yarn pre:dev && yarn dotenv -- yarn workspaces foreach -Apiv run dev", 52 56 "format": "prettier . --write --ignore-unknown", 53 57 "lint": "eslint . --cache=true & stylelint '**/*.{css,scss,svelte}' &",
+3
packages/api/.gitignore
··· 1 + src/lib/index.ts 2 + src/lib/**/index.ts 3 + src/modules/**/index.ts
+11 -7
packages/api/package.json
··· 12 12 "@pothos/core": "4.3.0", 13 13 "@pothos/plugin-complexity": "^4.1.0", 14 14 "@pothos/plugin-dataloader": "^4.3.0", 15 - "@pothos/plugin-directives": "^4.1.0", 15 + "@pothos/plugin-directives": "^4.2.0", 16 16 "@pothos/plugin-errors": "^4.2.0", 17 - "@pothos/plugin-prisma": "^4.3.1", 17 + "@pothos/plugin-prisma": "^4.4.0", 18 18 "@pothos/plugin-relay": "^4.3.0", 19 19 "@pothos/plugin-scope-auth": "^4.1.1", 20 20 "@pothos/plugin-simple-objects": "^4.1.0", ··· 164 164 "@types/ws": "^8.5.13", 165 165 "@vizdom/vizdom-ts-node": "^0.1.17", 166 166 "barrelsby": "^2.8.1", 167 + "chokidar": "^4.0.1", 168 + "concurrently": "^9.0.1", 167 169 "graphinx": "^0.12.1" 168 170 }, 169 171 "imports": { ··· 174 176 "scripts": { 175 177 "format-at": "prettier --write --ignore-unknown", 176 178 "format": "yarn format-at .", 177 - "build": "run-s \"build:*\"", 179 + "build": "run-s barrelize \"build:*\"", 178 180 "prisma": "yarn workspace @churros/db run prisma", 179 181 "build:prisma": "yarn workspace @churros/db run generate", 180 182 "build:changelog": "run-s copy-changelog", 181 183 "build:typenames": "tsx ./scripts/update-id-prefix-to-typename-map.ts", 182 - "build:barrelize": "run-s barrelize", 183 184 "build:api": "tsc", 184 185 "build:post": "tsx ./src/post-build.ts", 185 186 "check": "yarn build", 186 187 "copy-changelog": "cp ../../CHANGELOG.md ./static/CHANGELOG.md", 187 188 "clean": "git clean -Xdf .", 188 - "dev": "NODE_ENV=development tsx watch --conditions=development --clear-screen=false ./src/index.ts", 189 + "dev": "concurrently --kill-others --handle-input --names api,barrels,typenames,mails --prefix-colors reset,dim,dim,dim \"yarn dev:api\" \"yarn dev:barrels\" \"yarn dev:typenames\" \"yarn dev:mails\"", 190 + "dev:api": "NODE_ENV=development tsx watch --conditions=development --clear-screen=false ./src/index.ts", 189 191 "migrate-old-data": "cd scripts && yarn tsc import-old-data.ts --lib es2021,DOM --module es2022 --target es2022 --moduleResolution node --allowSyntheticDefaultImports && yarn node import-old-data.js", 190 192 "start": "node ./build/src/index.js", 191 - "barrelize": "tsx scripts/generate-barrelsby-config.ts && echo Running barrelsby && barrelsby --config barrelsby.config.json && tsx scripts/fix-extensionless-barrel-imports.ts && echo Formatting barrels for consistency && yarn format-at ./src/modules/**/index.ts --log-level silent", 193 + "barrelize": "tsx scripts/generate-barrelsby-config.ts && echo Running barrelsby && barrelsby --config barrelsby.config.json && tsx scripts/fix-extensionless-barrel-imports.ts", 192 194 "new-module": "tsx ./scripts/new-module.ts", 193 195 "add-search-support": "tsx ./scripts/add-search-support.ts", 194 196 "modules-import-graph": "tsx ./scripts/modules-import-graph.ts --exclude global --svg", 195 197 "migration": "yarn run -T migration", 196 - "watch-barrels": "nodemon --exec 'yarn barrelize' --watch src/modules -e ts --ignore 'src/modules/**/index.ts'", 198 + "dev:barrels": "tsx ./scripts/watch-barrels.ts", 199 + "dev:typenames": "tsx ./scripts/watch-id-prefixes.ts", 200 + "dev:mails": "tsx ./scripts/watch-mail-templates.ts", 197 201 "test:hurl": "echo Logging in… && http post :4000/graphql query='mutation { login(email: \"versairea\", password: \"a\") { ...on MutationLoginSuccess { data { token } } } }' | jq -r .data.login.data.token | xargs -I@ hurl --parallel --test --variable token=@ --variable host=http://localhost:4000 --glob src/modules/*/tests/*.hurl", 198 202 "test": "run-s \"test:*\"", 199 203 "housekeep": "docker run --network host -it curlimages/curl:latest -X POST -H 'Content-Type: application/json' -d '{\"query\":\"mutation RunHousekeeper($token: String!, $events: Int!, $users: Int!) { housekeep(token: $token, expiredEventsDaysThreshold: $events, expiredUsersDaysThreshold: $users) { __typename ...on Error {message} } }\", \"operationName\":\"RunHousekeeper\", \"variables\": {\"token\": \"housekeeper\", \"events\": 30, \"users\": 1825}}' http://localhost:4000/graphql"
+1 -1
packages/api/scripts/generate-barrelsby-config.ts
··· 76 76 */ 77 77 78 78 // organize-imports-ignore 79 - ${existsSync(`${modulePath}/types/index.ts`) ? `export * from './types/index.js';\n` : ''}${existsSync(`${modulePath}/resolvers/index.ts`) ? `export * from './resolvers/index.js';\n\n` : ''}`; 79 + ${existsSync(`${modulePath}/types/`) ? `export * from './types/index.js';\n` : ''}${existsSync(`${modulePath}/resolvers/`) ? `export * from './resolvers/index.js';\n\n` : ''}`; 80 80 81 81 writeFileSync(`${modulePath}/index.ts`, moduleIndexContent); 82 82
+2
packages/api/scripts/update-id-prefix-to-typename-map.ts
··· 1 + import { execa } from 'execa'; 1 2 import { execSync } from 'node:child_process'; 2 3 import { readFileSync, writeFileSync } from 'node:fs'; 3 4 import path from 'node:path'; ··· 71 72 } 72 73 73 74 writeFileSync(writeTo, writeToLines.join('\n')); 75 + execa('yarn', ['prettier', '--write', writeTo], { stdio: 'inherit' }); 74 76 } 75 77 76 78 updateInFile('../src/lib/global-id.ts', true);
+22
packages/api/scripts/watch-barrels.ts
··· 1 + import { watch } from 'chokidar'; 2 + import { execa } from 'execa'; 3 + 4 + const watcher = watch('src/modules/', { 5 + persistent: true, 6 + ignoreInitial: true, 7 + }); 8 + 9 + watcher.on('add', (path) => { 10 + if (path.endsWith('index.ts')) return; 11 + console.log(`New file ${path}: barrelizing`); 12 + execa('yarn', ['barrelize'], { 13 + stdio: 'inherit', 14 + }); 15 + }); 16 + watcher.on('unlink', (path) => { 17 + if (path.endsWith('index.ts')) return; 18 + console.log(`File ${path} removed: barrelizing`); 19 + execa('yarn', ['barrelize'], { 20 + stdio: 'inherit', 21 + }); 22 + });
+11
packages/api/scripts/watch-id-prefixes.ts
··· 1 + import { watch } from 'chokidar'; 2 + import { execa } from 'execa'; 3 + 4 + watch('../db/prisma/schema.prisma', { 5 + persistent: true, 6 + }).on('change', (path) => { 7 + console.log(`Prisma schema (at ${path}) changed, re-generating ID prefix to typenames map`); 8 + execa('yarn', ['build:typenames'], { 9 + stdio: 'inherit', 10 + }); 11 + });
+19
packages/api/scripts/watch-mail-templates.ts
··· 1 + import { watch } from 'chokidar'; 2 + import { execa } from 'execa'; 3 + 4 + const watcher = watch('src/mail-templates/', { 5 + persistent: true, 6 + ignoreInitial: true, 7 + ignored: 'src/mail-templates/props.ts', 8 + }); 9 + 10 + function buildMailTemplates(path: string) { 11 + console.log(path, 'Mail templates changed, re-building mail templates type file'); 12 + execa('yarn', ['tsx', 'scripts/update-mail-templates-type.ts'], { 13 + stdio: 'inherit', 14 + }); 15 + } 16 + 17 + watcher.on('add', buildMailTemplates); 18 + watcher.on('change', buildMailTemplates); 19 + watcher.on('unlink', buildMailTemplates);
-9
packages/api/src/modules/announcements/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js';
-10
packages/api/src/modules/announcements/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mutation.delete-announcement.js'; 6 - export * from './mutation.upsert-announcement.js'; 7 - export * from './query.announcement.js'; 8 - export * from './query.announcements-now.js'; 9 - export * from './query.announcements.js'; 10 - export * from './user.can-manage-announcements.js';
-5
packages/api/src/modules/announcements/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './announcement.js';
-11
packages/api/src/modules/changelogs/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-8
packages/api/src/modules/changelogs/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mutation.acknowledge-changelog.js'; 6 - export * from './query.changelog.js'; 7 - export * from './query.combined-changelog.js'; 8 - export * from './query.upcoming-changelog.js';
-7
packages/api/src/modules/changelogs/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './changelog-release.js'; 6 - export * from './release-change.js'; 7 - export * from './release-changes-maps.js';
-5
packages/api/src/modules/changelogs/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './changelogs.js';
-9
packages/api/src/modules/comments/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js';
-8
packages/api/src/modules/comments/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './comment.replies.js'; 6 - export * from './document.comments.js'; 7 - export * from './mutation.delete-comment.js'; 8 - export * from './mutation.upsert-comment.js';
-7
packages/api/src/modules/comments/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './comment.js'; 6 - export * from './commentable.js'; 7 - export * from './comments-connection.js';
-11
packages/api/src/modules/curriculum/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-15
packages/api/src/modules/curriculum/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './major.subjects.js'; 6 - export * from './major.teaching-units.js'; 7 - export * from './minor.teaching-units.js'; 8 - export * from './mutation.update-subjects-exam-dates.js'; 9 - export * from './query.major.js'; 10 - export * from './query.majors.js'; 11 - export * from './query.minor.js'; 12 - export * from './query.minors.js'; 13 - export * from './query.subject.js'; 14 - export * from './query.subjects.js'; 15 - export * from './subject.documents.js';
-8
packages/api/src/modules/curriculum/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './major.js'; 6 - export * from './minor.js'; 7 - export * from './subject.js'; 8 - export * from './teaching-unit.js';
-5
packages/api/src/modules/curriculum/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './ade.js';
-11
packages/api/src/modules/documents/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-13
packages/api/src/modules/documents/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mutation.delete-document-file.js'; 6 - export * from './mutation.delete-document.js'; 7 - export * from './mutation.merge-documents.js'; 8 - export * from './mutation.set-document-file-is-solution.js'; 9 - export * from './mutation.upload-document-file.js'; 10 - export * from './mutation.upsert-document.js'; 11 - export * from './query.document.js'; 12 - export * from './query.documents.js'; 13 - export * from './query.search-documents.js';
-7
packages/api/src/modules/documents/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './document-search-result.js'; 6 - export * from './document-type.js'; 7 - export * from './document.js';
-5
packages/api/src/modules/documents/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './paths.js';
-11
packages/api/src/modules/events/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-9
packages/api/src/modules/events/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './notifications.js'; 6 - export * from './permissions.js'; 7 - export * from './places.js'; 8 - export * from './powerlevels.js'; 9 - export * from './recurrence.js';
-11
packages/api/src/modules/forms/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-36
packages/api/src/modules/forms/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './event.forms.js'; 6 - export * from './form-section.next-section.js'; 7 - export * from './form.answer-count.js'; 8 - export * from './form.answers-by-user.js'; 9 - export * from './form.answers-export.js'; 10 - export * from './form.answers.js'; 11 - export * from './form.linked-google-sheet-url.js'; 12 - export * from './form.my-answers.js'; 13 - export * from './form.search-answers.js'; 14 - export * from './group.forms.js'; 15 - export * from './mutation.answer-file-question.js'; 16 - export * from './mutation.answer-form-section.js'; 17 - export * from './mutation.create-linked-google-sheet.js'; 18 - export * from './mutation.mail-form-answers.js'; 19 - export * from './mutation.set-form-answers-checkbox.js'; 20 - export * from './mutation.upsert-form-section.js'; 21 - export * from './mutation.upsert-form.js'; 22 - export * from './mutation.upsert-question.js'; 23 - export * from './query.all-forms.js'; 24 - export * from './query.form-section.js'; 25 - export * from './query.form.js'; 26 - export * from './query.forms.js'; 27 - export * from './query.search-forms.js'; 28 - export * from './question-scale.answer-counts.js'; 29 - export * from './question-select-multiple.answer-counts.js'; 30 - export * from './question-select-one.answer-counts.js'; 31 - export * from './question.answers.js'; 32 - export * from './question.default-answer.js'; 33 - export * from './question.my-answer.js'; 34 - export * from './question.total-answers.js'; 35 - export * from './user.answered-forms.js'; 36 - export * from './user.partially-answered-forms.js';
-30
packages/api/src/modules/forms/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './answer-date.js'; 6 - export * from './answer-file-upload.js'; 7 - export * from './answer-input.js'; 8 - export * from './answer-long-text.js'; 9 - export * from './answer-number.js'; 10 - export * from './answer-scale.js'; 11 - export * from './answer-search-result.js'; 12 - export * from './answer-select-multiple.js'; 13 - export * from './answer-select-one.js'; 14 - export * from './answer-text.js'; 15 - export * from './answer-time.js'; 16 - export * from './answer.js'; 17 - export * from './answers-export-formats.js'; 18 - export * from './answers-of-user.js'; 19 - export * from './form-search-result.js'; 20 - export * from './form-section.js'; 21 - export * from './form.js'; 22 - export * from './question-file-upload.js'; 23 - export * from './question-kind.js'; 24 - export * from './question-option-input.js'; 25 - export * from './question-scalar.js'; 26 - export * from './question-scale-input.js'; 27 - export * from './question-scale.js'; 28 - export * from './question-select-multiple.js'; 29 - export * from './question-select-one.js'; 30 - export * from './question.js';
-8
packages/api/src/modules/forms/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './answers.js'; 6 - export * from './google-sheets.js'; 7 - export * from './paths.js'; 8 - export * from './permissions.js';
-11
packages/api/src/modules/gitlab/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-9
packages/api/src/modules/gitlab/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './issue.comments.js'; 6 - export * from './mutation.create-gitlab-issue.js'; 7 - export * from './query.code-contributors.js'; 8 - export * from './query.issue.js'; 9 - export * from './query.issues-by-user.js';
-7
packages/api/src/modules/gitlab/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './issue-comment.js'; 6 - export * from './issue-state.js'; 7 - export * from './issue.js';
-6
packages/api/src/modules/gitlab/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './gitlab-api.js'; 6 - export * from './labels.js';
-9
packages/api/src/modules/global/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js';
-26
packages/api/src/modules/global/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './color.js'; 6 - export * from './date-range-input.js'; 7 - export * from './date-time.js'; 8 - export * from './email.js'; 9 - export * from './errors.js'; 10 - export * from './file.js'; 11 - export * from './html.js'; 12 - export * from './local-id.js'; 13 - export * from './loose-url.js'; 14 - export * from './markdown.js'; 15 - export * from './phone-number.js'; 16 - export * from './pictured.js'; 17 - export * from './positive-int.js'; 18 - export * from './qr-code.js'; 19 - export * from './shareable.js'; 20 - export * from './short-string.js'; 21 - export * from './sort-direction.js'; 22 - export * from './string-to-int-mapping.js'; 23 - export * from './uid.js'; 24 - export * from './url.js'; 25 - export * from './visibility.js'; 26 - export * from './zod-error.js';
-11
packages/api/src/modules/groups/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-34
packages/api/src/modules/groups/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './group.ancestors.js'; 6 - export * from './group.members.js'; 7 - export * from './group.search-members.js'; 8 - export * from './mutation.add-group-member-v2.js'; 9 - export * from './mutation.add-group-member.js'; 10 - export * from './mutation.create-group-access-token.js'; 11 - export * from './mutation.create-group.js'; 12 - export * from './mutation.delete-group-member.js'; 13 - export * from './mutation.delete-group-picture.js'; 14 - export * from './mutation.delete-group.js'; 15 - export * from './mutation.self-join-group.js'; 16 - export * from './mutation.set-goup-room-open-state.js'; 17 - export * from './mutation.set-group-join-policy.js'; 18 - export * from './mutation.set-group-student-association.js'; 19 - export * from './mutation.set-group-type.js'; 20 - export * from './mutation.set-parent-group.js'; 21 - export * from './mutation.update-group-member.js'; 22 - export * from './mutation.update-group-picture.js'; 23 - export * from './mutation.update-group-profile.js'; 24 - export * from './mutation.upsert-group-member.js'; 25 - export * from './mutation.upsert-group.js'; 26 - export * from './query.group-member.js'; 27 - export * from './query.group-members-csv.js'; 28 - export * from './query.group.js'; 29 - export * from './query.groups.js'; 30 - export * from './query.search-groups.js'; 31 - export * from './user.can-add-members-to.js'; 32 - export * from './user.can-create-events-on.js'; 33 - export * from './user.can-create-posts-on.js'; 34 - export * from './user.groups.js';
-11
packages/api/src/modules/groups/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './group-member-input.js'; 6 - export * from './group-member-search-result.js'; 7 - export * from './group-member.js'; 8 - export * from './group-profile-input.js'; 9 - export * from './group-search-result.js'; 10 - export * from './group-type.js'; 11 - export * from './group.js';
-9
packages/api/src/modules/groups/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './contributions.js'; 6 - export * from './permissions.js'; 7 - export * from './sort.js'; 8 - export * from './tree.js'; 9 - export * from './uid.js';
-11
packages/api/src/modules/health-checks/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-5
packages/api/src/modules/health-checks/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './query.healthcheck.js';
-5
packages/api/src/modules/health-checks/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './health-check.js';
-5
packages/api/src/modules/health-checks/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './checks.js';
-11
packages/api/src/modules/links/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-9
packages/api/src/modules/links/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './link.computed-value.js'; 6 - export * from './link.url.js'; 7 - export * from './mutation.add-links.js'; 8 - export * from './mutation.delete-link.js'; 9 - export * from './mutation.update-link.js';
-7
packages/api/src/modules/links/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './has-links.js'; 6 - export * from './link-input.js'; 7 - export * from './link.js';
-6
packages/api/src/modules/links/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './computed-links.js'; 6 - export * from './permissions.js';
-9
packages/api/src/modules/logs/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js';
-5
packages/api/src/modules/logs/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './query.logs.js';
-5
packages/api/src/modules/logs/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './log-entry.js';
-8
packages/api/src/modules/mails/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './utils/index.js';
-5
packages/api/src/modules/mails/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mailing-lists.js';
-11
packages/api/src/modules/notifications/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-13
packages/api/src/modules/notifications/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mutation.send-notification.js'; 6 - export * from './mutation.subscribe-to-notifications.js'; 7 - export * from './mutation.test-notification.js'; 8 - export * from './mutation.unsubscribe-from-notifications.js'; 9 - export * from './query.notification-subscription.js'; 10 - export * from './query.notification-subscriptions.js'; 11 - export * from './query.notification.js'; 12 - export * from './query.notifications-send-count-for-article.js'; 13 - export * from './query.notifications.js';
-8
packages/api/src/modules/notifications/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './notification-channel.js'; 6 - export * from './notification-subscription-keys-input.js'; 7 - export * from './notification-subscription.js'; 8 - export * from './notification.js';
-9
packages/api/src/modules/notifications/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './count.js'; 6 - export * from './push-notification.js'; 7 - export * from './schedule.js'; 8 - export * from './send.js'; 9 - export * from './vapid.js';
-11
packages/api/src/modules/pages/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-15
packages/api/src/modules/pages/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './group.page.js'; 6 - export * from './group.pages-count.js'; 7 - export * from './group.pages.js'; 8 - export * from './mutation.add-file-to-page.js'; 9 - export * from './mutation.delete-page.js'; 10 - export * from './mutation.remove-file-from-page.js'; 11 - export * from './mutation.upsert-page.js'; 12 - export * from './query.page.js'; 13 - export * from './query.pages.js'; 14 - export * from './student-association.page.js'; 15 - export * from './student-association.pages.js';
-6
packages/api/src/modules/pages/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './page.js'; 6 - export * from './pages-connection.js';
-6
packages/api/src/modules/pages/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './paths.js'; 6 - export * from './permissions.js';
-11
packages/api/src/modules/payments/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-9
packages/api/src/modules/payments/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './lydia-account.js'; 6 - export * from './payment-method.js'; 7 - export * from './profits-breakdown.js'; 8 - export * from './promotion-type.js'; 9 - export * from './promotion.js';
-8
packages/api/src/modules/payments/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './lydia/index.js'; 6 - export * from './paypal/index.js'; 7 - export * from './permissions.js'; 8 - export * from './promotions.js';
-7
packages/api/src/modules/payments/utils/lydia/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './accounts.js'; 6 - export * from './pay.js'; 7 - export * from './transactions.js';
-6
packages/api/src/modules/payments/utils/paypal/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './pay.js'; 6 - export * from './transactions.js';
-8
packages/api/src/modules/pictures/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './resolvers/index.js';
-5
packages/api/src/modules/pictures/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mutation.set-picture.js';
-11
packages/api/src/modules/posts/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-17
packages/api/src/modules/posts/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './group.articles.js'; 6 - export * from './mutation.change-post-owner.js'; 7 - export * from './mutation.create-post.js'; 8 - export * from './mutation.delete-article-picture.js'; 9 - export * from './mutation.delete-article.js'; 10 - export * from './mutation.unlink-event-from-post.js'; 11 - export * from './mutation.update-article-picture.js'; 12 - export * from './mutation.upsert-article-v2.js'; 13 - export * from './mutation.upsert-article.js'; 14 - export * from './post.comments.js'; 15 - export * from './query.article.js'; 16 - export * from './query.homepage.js'; 17 - export * from './query.search-articles.js';
-7
packages/api/src/modules/posts/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './article-search-result.js'; 6 - export * from './article.js'; 7 - export * from './post-input.js';
-6
packages/api/src/modules/posts/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './notifications.js'; 6 - export * from './permissions.js';
-9
packages/api/src/modules/profiles/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js';
-5
packages/api/src/modules/profiles/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './query.profile.js';
-5
packages/api/src/modules/profiles/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './profile.js';
-11
packages/api/src/modules/reactions/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-15
packages/api/src/modules/reactions/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './event.my-reactions.js'; 6 - export * from './event.reaction-counts.js'; 7 - export * from './mutation.delete-reaction.js'; 8 - export * from './mutation.react.js'; 9 - export * from './mutation.toggle-reaction.js'; 10 - export * from './mutation.unreact.js'; 11 - export * from './mutation.upsert-reaction.js'; 12 - export * from './post.my-reactions.js'; 13 - export * from './post.reaction-counts.js'; 14 - export * from './query.reaction.js'; 15 - export * from './query.reactions.js';
-8
packages/api/src/modules/reactions/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './boolean-map.js'; 6 - export * from './counts.js'; 7 - export * from './reactable.js'; 8 - export * from './reaction.js';
-5
packages/api/src/modules/reactions/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './prisma.js';
-9
packages/api/src/modules/schools/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js';
-11
packages/api/src/modules/schools/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mutation.delete-school-picture.js'; 6 - export * from './mutation.update-school-picture.js'; 7 - export * from './mutation.update-school.js'; 8 - export * from './query.school-groups.js'; 9 - export * from './query.school.js'; 10 - export * from './query.schools.js'; 11 - export * from './user.schools.js';
-7
packages/api/src/modules/schools/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './school-group.js'; 6 - export * from './school-input.js'; 7 - export * from './school.js';
-9
packages/api/src/modules/search/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js';
-5
packages/api/src/modules/search/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './query.search.js';
-6
packages/api/src/modules/search/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './search-result.js'; 6 - export * from './searchable-resources.js';
-11
packages/api/src/modules/services/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-11
packages/api/src/modules/services/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mutation.delete-service.js'; 6 - export * from './mutation.upsert-service-v2.js'; 7 - export * from './mutation.upsert-service.js'; 8 - export * from './query.service.js'; 9 - export * from './query.services.js'; 10 - export * from './query.user-services.js'; 11 - export * from './student-association.can-create-services.js';
-8
packages/api/src/modules/services/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './logo-source-type.js'; 6 - export * from './service-input.js'; 7 - export * from './service-owner.js'; 8 - export * from './service.js';
-6
packages/api/src/modules/services/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './permissions.js'; 6 - export * from './pins.js';
-11
packages/api/src/modules/student-associations/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-18
packages/api/src/modules/student-associations/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './mutation.cancel-pending-contribution.js'; 6 - export * from './mutation.contribute.js'; 7 - export * from './mutation.delete-contribution.js'; 8 - export * from './mutation.mark-contribution-as-paid.js'; 9 - export * from './mutation.update-student-association-picture.js'; 10 - export * from './query.contribution-options.js'; 11 - export * from './query.student-association.js'; 12 - export * from './query.student-associations.js'; 13 - export * from './user.can-contribute-to.js'; 14 - export * from './user.can-create-groups-on.js'; 15 - export * from './user.contributes-to.js'; 16 - export * from './user.contributes-with.js'; 17 - export * from './user.contribution-options.js'; 18 - export * from './user.pending-contributions.js';
-6
packages/api/src/modules/student-associations/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './contribution-option.js'; 6 - export * from './student-association.js';
-5
packages/api/src/modules/student-associations/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './permissions.js';
-11
packages/api/src/modules/themes/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-11
packages/api/src/modules/themes/resolvers/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './group.can-create-themes.js'; 6 - export * from './mutation.block-theme.js'; 7 - export * from './mutation.set-theme-value.js'; 8 - export * from './mutation.set-theme-visibility.js'; 9 - export * from './mutation.upsert-theme.js'; 10 - export * from './query.autodeployed-theme.js'; 11 - export * from './query.themes.js';
-8
packages/api/src/modules/themes/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './theme-value.js'; 6 - export * from './theme-variable.js'; 7 - export * from './theme-variant.js'; 8 - export * from './theme.js';
-5
packages/api/src/modules/themes/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './permissions.js';
-11
packages/api/src/modules/ticketing/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-14
packages/api/src/modules/ticketing/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './boolean-constraint.js'; 6 - export * from './registration-search-result.js'; 7 - export * from './registration-verification-result.js'; 8 - export * from './registration-verification-state.js'; 9 - export * from './registration.js'; 10 - export * from './registrations-counts.js'; 11 - export * from './ticket-constraints-input.js'; 12 - export * from './ticket-counting-policy.js'; 13 - export * from './ticket-group.js'; 14 - export * from './ticket.js';
-9
packages/api/src/modules/ticketing/utils/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './beneficiaries.js'; 6 - export * from './permissions.js'; 7 - export * from './places.js'; 8 - export * from './tickets.js'; 9 - export * from './uid.js';
-11
packages/api/src/modules/users/index.ts
··· 1 - /** 2 - * @file generated by packages/api/scripts/generate-barrelsby-config.ts 3 - * The order of imports matters to Pothos, so we need to hardcode the import order, 4 - * barrelsby cannot do this, so we do it ourselves with a little bash scripting. 5 - */ 6 - 7 - // organize-imports-ignore 8 - export * from './types/index.js'; 9 - export * from './resolvers/index.js'; 10 - 11 - export * from './utils/index.js';
-18
packages/api/src/modules/users/types/index.ts
··· 1 - /** 2 - * @file Automatically generated by barrelsby. 3 - */ 4 - 5 - export * from './awaiting-validation-error.js'; 6 - export * from './bookmark.js'; 7 - export * from './credential-type.js'; 8 - export * from './credential.js'; 9 - export * from './email-change.js'; 10 - export * from './family-tree.js'; 11 - export * from './godparent-request.js'; 12 - export * from './password-reset.js'; 13 - export * from './quick-signup.js'; 14 - export * from './signup-completion-result.js'; 15 - export * from './user-candidate.js'; 16 - export * from './user-profile-input.js'; 17 - export * from './user-search-result.js'; 18 - export * from './user.js';
+4 -4
packages/app/package.json
··· 66 66 "@iconify-json/mdi": "^1.2.1", 67 67 "@iconify-json/simple-icons": "^1.2.13", 68 68 "@sveltejs/adapter-node": "^5.2.9", 69 - "@sveltejs/kit": "^2.8.5", 69 + "@sveltejs/kit": "^2.9.0", 70 70 "@types/blob-stream": "^0.1.33", 71 71 "@types/cookie": "^0.6.0", 72 72 "@types/cytoscape": "^3.21.8", ··· 95 95 "svelte-local-storage-store": "^0.6.4", 96 96 "svelte-preprocess": "^6.0.3", 97 97 "svelte-seo": "^1.6.1", 98 - "svelte-store2storage": "^1.0.0", 98 + "svelte-store2storage": "^2.0.0", 99 99 "sveltekit-search-params": "^3.0.0", 100 100 "tslib": "^2.8.1", 101 101 "tsx": "^4.19.2", 102 102 "typescript": "^5.7.2", 103 - "unplugin-icons": "^0.18.5", 103 + "unplugin-icons": "^0.20.2", 104 104 "vite": "5.4.11", 105 105 "vite-plugin-kit-routes": "^0.7.0", 106 106 "wait-port": "^1.1.0", ··· 108 108 "zod": "^3.23.8" 109 109 }, 110 110 "scripts": { 111 - "generate": "node src/scripts/generate-dotenv-service-worker.js && tsx src/scripts/generate-reserved-usernames-from-routes.ts && svelte-kit sync && yarn zeus && houdini generate", 111 + "generate": "svelte-kit sync && yarn zeus && houdini generate", 112 112 "build": "yarn generate && yarn verify --threshold warning && vite build", 113 113 "verify": "svelte-check --tsconfig ./tsconfig.json", 114 114 "check": "yarn generate && yarn verify",
+4 -4
packages/app/src/lib/ROUTES.ts
··· 8 8 /** 9 9 * PAGES 10 10 */ 11 - const PAGES = { 11 + export const PAGES = { 12 12 '/': `/`, 13 13 '/[uid=uid]': ( 14 14 uid: Parameters<typeof import('../params/uid.ts').match>[0], ··· 344 344 /** 345 345 * SERVERS 346 346 */ 347 - const SERVERS = { 347 + export const SERVERS = { 348 348 'GET /[entity=entity_handle]': ( 349 349 entity: Parameters<typeof import('../params/entity_handle.ts').match>[0], 350 350 params?: {}, ··· 404 404 /** 405 405 * ACTIONS 406 406 */ 407 - const ACTIONS = { 407 + export const ACTIONS = { 408 408 'default /login': `/login`, 409 409 }; 410 410 411 411 /** 412 412 * LINKS 413 413 */ 414 - const LINKS = {}; 414 + export const LINKS = {}; 415 415 416 416 type ParamValue = string | number | undefined; 417 417
+17 -49
packages/app/src/routes/check-uid/[uid]/+server.ts
··· 1 1 import { graphql, UIDIsAvailableStore } from '$houdini'; 2 + import { ACTIONS, PAGES, SERVERS } from '$lib/ROUTES.js'; 2 3 import { json } from '@sveltejs/kit'; 3 4 4 5 graphql(` ··· 11 12 // Users would still be able to register via the API directly, but their profile page would be inaccessible (using this webapp at least), so it'd be kind of a dumb thing to do 12 13 // We _may_ want to inject that code into the API too to fix this if we ever get an undesirable situation out of it 13 14 14 - // @generated by src/scripts/generate-reserved-usernames-from-routes.ts 15 - const additionalReservedUsernames = new Set([ 16 - '_component', 17 - 'check-uid', 18 - 'gdpr', 19 - 'markdown', 20 - 'signup', 21 - 'announcements', 22 - 'backrooms', 23 - 'bar-weeks', 24 - 'birthdays', 25 - 'bookings', 26 - 'changelog', 27 - 'claim-code', 28 - 'credits', 29 - 'documents', 30 - 'events', 31 - 'frappe', 32 - 'groups', 33 - 'help', 34 - 'login', 35 - 'logout', 36 - 'logs', 37 - 'more', 38 - 'notifications', 39 - 'posts', 40 - 'quick-signups', 41 - 'reports', 42 - 'schools', 43 - 'search', 44 - 'services', 45 - 'set-password', 46 - 'settings', 47 - 'signups', 48 - 'student-associations', 49 - 'users', 50 - 'validate-email', 51 - 'welcome', 52 - 'connect', 53 - 'health', 54 - 'kiosk', 55 - 'icons', 56 - 'logos', 57 - 'reactions', 58 - 'schools', 59 - 'student-associations', 60 - 'vendor', 61 - ]); 62 - // end @generated 15 + const additionalReservedUsernames = new Set( 16 + [ 17 + // PAGES: it's the path directly 18 + ...Object.keys(PAGES), 19 + // SERVERS: get only GET endpoints, extract the path 20 + ...Object.keys(SERVERS) 21 + .filter((endpoint) => endpoint.startsWith('GET ')) 22 + .map((endpoint) => endpoint.replace(/^GET /, '')), 23 + // ACTIONS: get the action's path (it's written as `actionName /path/to/action`) 24 + ...Object.keys(ACTIONS).map((action) => action.split(' ', 2)[1]), 25 + ] 26 + // Get the first segment of the path (all paths start with '/' so it's [1]) 27 + .map((path) => path.split('/')[1]) 28 + // Filter out dynamic segments 29 + .filter((fragment) => !fragment.includes('[')), 30 + ); 63 31 64 32 export const _RESERVED_USERNAMES = additionalReservedUsernames; 65 33
-28
packages/app/src/scripts/generate-dotenv-service-worker.js
··· 1 - import dotenv from 'dotenv'; 2 - import { readFileSync, writeFileSync } from 'node:fs'; 3 - import path from 'node:path'; 4 - 5 - const here = path.dirname(import.meta.url.replace(/^file:/, '')); 6 - 7 - dotenv.config({ 8 - path: path.join(here, '../../.env'), 9 - }); 10 - 11 - const filepath = path.join(here, '../service-worker.ts'); 12 - 13 - const literal = 14 - process.env.NODE_ENV === 'develoment' 15 - ? JSON.stringify('http://localhost:4000/storage') 16 - : // eslint-disable-next-line no-template-curly-in-string 17 - '`https://${sw.location.hostname}/storage`'; 18 - console.log(`Injecting PUBLIC_STORAGE_URL=${literal} into ${filepath}`); 19 - 20 - writeFileSync( 21 - filepath, 22 - readFileSync(filepath) 23 - .toString('utf8') 24 - .replaceAll( 25 - /^const\s+PUBLIC_STORAGE_URL\s+=.+$/gm, 26 - `const PUBLIC_STORAGE_URL = /* @generated */ ${literal}`, 27 - ), 28 - );
-48
packages/app/src/scripts/generate-reserved-usernames-from-routes.ts
··· 1 - import { readdirSync, readFileSync, statSync, writeFileSync } from 'node:fs'; 2 - import path from 'node:path'; 3 - 4 - const UID_REGEX_PATTERN = /^[\w-]{3,255}$/; 5 - 6 - function relativeToHere(filepath: string): string { 7 - return path.join(path.dirname(new URL(import.meta.url).pathname), filepath); 8 - } 9 - 10 - function subdirectoriesNames(dir: string): string[] { 11 - return readdirSync(dir).filter((file) => statSync(path.join(dir, file)).isDirectory()); 12 - } 13 - 14 - const routes = [ 15 - ...[ 16 - ...subdirectoriesNames('src/routes'), 17 - ...subdirectoriesNames('src/routes/(app)'), 18 - ...subdirectoriesNames('src/routes/(external)'), 19 - ].filter((r) => !/(\(.*\))|(\[.*])/.test(r)), 20 - ...readdirSync('static/'), 21 - ].filter((r) => UID_REGEX_PATTERN.test(r)); 22 - 23 - const LINE_MARKER_START = '// @generated by src/scripts/generate-reserved-usernames-from-routes.ts'; 24 - const LINE_MARKER_END = '// end @generated'; 25 - 26 - const targetFiles = [relativeToHere('../routes/check-uid/[uid]/+server.ts')]; 27 - 28 - await Promise.all( 29 - targetFiles.map(async (file) => { 30 - const content = readFileSync(file, 'utf8'); 31 - const lines = content.split('\n'); 32 - const start = lines.findIndex((line) => line.includes(LINE_MARKER_START)); 33 - const end = lines.findIndex((line) => line.includes(LINE_MARKER_END)); 34 - 35 - if (start === -1 || end === -1) 36 - throw new Error(`Could not find start or end markers in ${file}`); 37 - 38 - const newLines = [ 39 - ...lines.slice(0, start + 1), 40 - `const additionalReservedUsernames = new Set([`, 41 - ` ${routes.map((route) => `'${route.split('/')[0]}'`).join(',\n ')},`, 42 - `]);`, 43 - ...lines.slice(end), 44 - ]; 45 - 46 - writeFileSync(file, newLines.join('\n')); 47 - }), 48 - );
+1 -1
packages/app/src/service-worker.ts
··· 9 9 const sw = self as unknown as ServiceWorkerGlobalScope; 10 10 11 11 // can't import from $env/dynamic/public in service worker 12 - const PUBLIC_STORAGE_URL = /* @generated */ `https://${sw.location.hostname}/storage`; 12 + const PUBLIC_STORAGE_URL = `https://${sw.location.hostname}/storage`; 13 13 14 14 // Create a unique cache name for this deployment 15 15 const CACHE = `cache-${$serviceWorker.version}`;
+1
packages/app/vite.config.js
··· 68 68 format_short: true, 69 69 format: 'route(path)', 70 70 post_update_run: 'yarn format-at ./src/lib/ROUTES.ts', 71 + exportObjects: true, 71 72 PAGES: { 72 73 '/login': { 73 74 explicit_search_params: {
+1 -1
packages/db/package.json
··· 17 17 "devDependencies": { 18 18 "@faker-js/faker": "^9.2.0", 19 19 "@pothos/core": "^4.3.0", 20 - "@pothos/plugin-prisma": "^4.3.1", 20 + "@pothos/plugin-prisma": "^4.4.0", 21 21 "@prisma/client": "^5.22.0", 22 22 "graphql": "^16.9.0", 23 23 "ioredis": "^5.4.1",
+13
scripts/watch-env.ts
··· 1 + import { watch } from 'chokidar'; 2 + import { execa } from 'execa'; 3 + 4 + const watcher = watch('.env', { 5 + persistent: true, 6 + }); 7 + 8 + watcher.on('change', () => { 9 + console.log("Root .env file changed, copying to packages's .env files"); 10 + execa('yarn', ['cp-env'], { 11 + stdio: 'inherit', 12 + }); 13 + });
+502 -1347
yarn.lock
··· 51 51 languageName: node 52 52 linkType: hard 53 53 54 - "@antfu/install-pkg@npm:^0.1.1": 55 - version: 0.1.1 56 - resolution: "@antfu/install-pkg@npm:0.1.1" 54 + "@antfu/install-pkg@npm:^0.4.0": 55 + version: 0.4.1 56 + resolution: "@antfu/install-pkg@npm:0.4.1" 57 57 dependencies: 58 - execa: "npm:^5.1.1" 59 - find-up: "npm:^5.0.0" 60 - checksum: 10c0/ae3116cc0918765ad356901b9c8825340be27deac03eb4c8969377eab9731a3b41d96e920fa0b08adf91fba27a808d08c68852b110775ff79ba40481422cc8ba 58 + package-manager-detector: "npm:^0.2.0" 59 + tinyexec: "npm:^0.3.0" 60 + checksum: 10c0/af47a84e77f3f69077ec464e0a9e82791666693380fc8ed9867f388f5c0cd8421e2642b9deefc7d4adb7b8cfb9dd1a715b25f9a974d023b10779cad0885439ef 61 61 languageName: node 62 62 linkType: hard 63 63 64 - "@antfu/install-pkg@npm:^0.3.1": 65 - version: 0.3.3 66 - resolution: "@antfu/install-pkg@npm:0.3.3" 64 + "@antfu/install-pkg@npm:^0.5.0": 65 + version: 0.5.0 66 + resolution: "@antfu/install-pkg@npm:0.5.0" 67 67 dependencies: 68 - "@jsdevtools/ez-spawn": "npm:^3.0.4" 69 - checksum: 10c0/e0b3444d5bbc6b24f93896d18d2ad48b833fe9664c977275afd947246debfc3411c7e511efcee9ff9d0d9ea1ec85b1d67dee4f8c92ddda81a3fecb08d58b16e1 68 + package-manager-detector: "npm:^0.2.5" 69 + tinyexec: "npm:^0.3.1" 70 + checksum: 10c0/ed5e82e8f2706e5f34616626f0d63d0b7c0df4fa70cb515af7eda6728784cb6c79b2e1955e14f2c63daf0f92b536defbfc9bc62e41df0d99564e5ab52bb31a63 70 71 languageName: node 71 72 linkType: hard 72 73 73 - "@antfu/utils@npm:^0.7.10, @antfu/utils@npm:^0.7.7": 74 + "@antfu/utils@npm:^0.7.10": 74 75 version: 0.7.10 75 76 resolution: "@antfu/utils@npm:0.7.10" 76 77 checksum: 10c0/98991f66a4752ef097280b4235b27d961a13a2c67ef8e5b716a120eb9823958e20566516711204e2bfb08f0b935814b715f49ecd79c3b9b93ce32747ac297752 77 78 languageName: node 78 79 linkType: hard 79 80 80 - "@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.24.7": 81 - version: 7.24.7 82 - resolution: "@babel/code-frame@npm:7.24.7" 83 - dependencies: 84 - "@babel/highlight": "npm:^7.24.7" 85 - picocolors: "npm:^1.0.0" 86 - checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6 87 - languageName: node 88 - linkType: hard 89 - 90 - "@babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0": 81 + "@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0": 91 82 version: 7.26.2 92 83 resolution: "@babel/code-frame@npm:7.26.2" 93 84 dependencies: ··· 95 86 js-tokens: "npm:^4.0.0" 96 87 picocolors: "npm:^1.0.0" 97 88 checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8 98 - languageName: node 99 - linkType: hard 100 - 101 - "@babel/compat-data@npm:^7.25.2": 102 - version: 7.25.4 103 - resolution: "@babel/compat-data@npm:7.25.4" 104 - checksum: 10c0/50d79734d584a28c69d6f5b99adfaa064d0f41609a378aef04eb06accc5b44f8520e68549eba3a082478180957b7d5783f1bfb1672e4ae8574e797ce8bae79fa 105 89 languageName: node 106 90 linkType: hard 107 91 ··· 112 96 languageName: node 113 97 linkType: hard 114 98 115 - "@babel/core@npm:^7.18.5": 116 - version: 7.25.2 117 - resolution: "@babel/core@npm:7.25.2" 118 - dependencies: 119 - "@ampproject/remapping": "npm:^2.2.0" 120 - "@babel/code-frame": "npm:^7.24.7" 121 - "@babel/generator": "npm:^7.25.0" 122 - "@babel/helper-compilation-targets": "npm:^7.25.2" 123 - "@babel/helper-module-transforms": "npm:^7.25.2" 124 - "@babel/helpers": "npm:^7.25.0" 125 - "@babel/parser": "npm:^7.25.0" 126 - "@babel/template": "npm:^7.25.0" 127 - "@babel/traverse": "npm:^7.25.2" 128 - "@babel/types": "npm:^7.25.2" 129 - convert-source-map: "npm:^2.0.0" 130 - debug: "npm:^4.1.0" 131 - gensync: "npm:^1.0.0-beta.2" 132 - json5: "npm:^2.2.3" 133 - semver: "npm:^6.3.1" 134 - checksum: 10c0/a425fa40e73cb72b6464063a57c478bc2de9dbcc19c280f1b55a3d88b35d572e87e8594e7d7b4880331addb6faef641bbeb701b91b41b8806cd4deae5d74f401 135 - languageName: node 136 - linkType: hard 137 - 138 - "@babel/core@npm:^7.26.0": 99 + "@babel/core@npm:^7.18.5, @babel/core@npm:^7.26.0": 139 100 version: 7.26.0 140 101 resolution: "@babel/core@npm:7.26.0" 141 102 dependencies: ··· 158 119 languageName: node 159 120 linkType: hard 160 121 161 - "@babel/generator@npm:^7.25.0": 162 - version: 7.25.0 163 - resolution: "@babel/generator@npm:7.25.0" 164 - dependencies: 165 - "@babel/types": "npm:^7.25.0" 166 - "@jridgewell/gen-mapping": "npm:^0.3.5" 167 - "@jridgewell/trace-mapping": "npm:^0.3.25" 168 - jsesc: "npm:^2.5.1" 169 - checksum: 10c0/d0e2dfcdc8bdbb5dded34b705ceebf2e0bc1b06795a1530e64fb6a3ccf313c189db7f60c1616effae48114e1a25adc75855bc4496f3779a396b3377bae718ce7 170 - languageName: node 171 - linkType: hard 172 - 173 - "@babel/generator@npm:^7.25.4": 174 - version: 7.25.5 175 - resolution: "@babel/generator@npm:7.25.5" 176 - dependencies: 177 - "@babel/types": "npm:^7.25.4" 178 - "@jridgewell/gen-mapping": "npm:^0.3.5" 179 - "@jridgewell/trace-mapping": "npm:^0.3.25" 180 - jsesc: "npm:^2.5.1" 181 - checksum: 10c0/eb8af30c39476e4f4d6b953f355fcf092258291f78d65fb759b7d5e5e6fd521b5bfee64a4e2e4290279f0dcd25ccf8c49a61807828b99b5830d2b734506da1fd 182 - languageName: node 183 - linkType: hard 184 - 185 122 "@babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0": 186 123 version: 7.26.2 187 124 resolution: "@babel/generator@npm:7.26.2" ··· 195 132 languageName: node 196 133 linkType: hard 197 134 198 - "@babel/helper-compilation-targets@npm:^7.25.2": 199 - version: 7.25.2 200 - resolution: "@babel/helper-compilation-targets@npm:7.25.2" 201 - dependencies: 202 - "@babel/compat-data": "npm:^7.25.2" 203 - "@babel/helper-validator-option": "npm:^7.24.8" 204 - browserslist: "npm:^4.23.1" 205 - lru-cache: "npm:^5.1.1" 206 - semver: "npm:^6.3.1" 207 - checksum: 10c0/de10e986b5322c9f807350467dc845ec59df9e596a5926a3b5edbb4710d8e3b8009d4396690e70b88c3844fe8ec4042d61436dd4b92d1f5f75655cf43ab07e99 208 - languageName: node 209 - linkType: hard 210 - 211 135 "@babel/helper-compilation-targets@npm:^7.25.9": 212 136 version: 7.25.9 213 137 resolution: "@babel/helper-compilation-targets@npm:7.25.9" ··· 218 142 lru-cache: "npm:^5.1.1" 219 143 semver: "npm:^6.3.1" 220 144 checksum: 10c0/a6b26a1e4222e69ef8e62ee19374308f060b007828bc11c65025ecc9e814aba21ff2175d6d3f8bf53c863edd728ee8f94ba7870f8f90a37d39552ad9933a8aaa 221 - languageName: node 222 - linkType: hard 223 - 224 - "@babel/helper-module-imports@npm:^7.24.7": 225 - version: 7.24.7 226 - resolution: "@babel/helper-module-imports@npm:7.24.7" 227 - dependencies: 228 - "@babel/traverse": "npm:^7.24.7" 229 - "@babel/types": "npm:^7.24.7" 230 - checksum: 10c0/97c57db6c3eeaea31564286e328a9fb52b0313c5cfcc7eee4bc226aebcf0418ea5b6fe78673c0e4a774512ec6c86e309d0f326e99d2b37bfc16a25a032498af0 231 145 languageName: node 232 146 linkType: hard 233 147 ··· 241 155 languageName: node 242 156 linkType: hard 243 157 244 - "@babel/helper-module-transforms@npm:^7.25.2": 245 - version: 7.25.2 246 - resolution: "@babel/helper-module-transforms@npm:7.25.2" 247 - dependencies: 248 - "@babel/helper-module-imports": "npm:^7.24.7" 249 - "@babel/helper-simple-access": "npm:^7.24.7" 250 - "@babel/helper-validator-identifier": "npm:^7.24.7" 251 - "@babel/traverse": "npm:^7.25.2" 252 - peerDependencies: 253 - "@babel/core": ^7.0.0 254 - checksum: 10c0/adaa15970ace0aee5934b5a633789b5795b6229c6a9cf3e09a7e80aa33e478675eee807006a862aa9aa517935d81f88a6db8a9f5936e3a2a40ec75f8062bc329 255 - languageName: node 256 - linkType: hard 257 - 258 158 "@babel/helper-module-transforms@npm:^7.26.0": 259 159 version: 7.26.0 260 160 resolution: "@babel/helper-module-transforms@npm:7.26.0" ··· 268 168 languageName: node 269 169 linkType: hard 270 170 271 - "@babel/helper-simple-access@npm:^7.24.7": 272 - version: 7.24.7 273 - resolution: "@babel/helper-simple-access@npm:7.24.7" 274 - dependencies: 275 - "@babel/traverse": "npm:^7.24.7" 276 - "@babel/types": "npm:^7.24.7" 277 - checksum: 10c0/7230e419d59a85f93153415100a5faff23c133d7442c19e0cd070da1784d13cd29096ee6c5a5761065c44e8164f9f80e3a518c41a0256df39e38f7ad6744fed7 278 - languageName: node 279 - linkType: hard 280 - 281 - "@babel/helper-string-parser@npm:^7.24.8": 282 - version: 7.24.8 283 - resolution: "@babel/helper-string-parser@npm:7.24.8" 284 - checksum: 10c0/6361f72076c17fabf305e252bf6d580106429014b3ab3c1f5c4eb3e6d465536ea6b670cc0e9a637a77a9ad40454d3e41361a2909e70e305116a23d68ce094c08 285 - languageName: node 286 - linkType: hard 287 - 288 171 "@babel/helper-string-parser@npm:^7.25.9": 289 172 version: 7.25.9 290 173 resolution: "@babel/helper-string-parser@npm:7.25.9" ··· 292 175 languageName: node 293 176 linkType: hard 294 177 295 - "@babel/helper-validator-identifier@npm:^7.24.7": 296 - version: 7.24.7 297 - resolution: "@babel/helper-validator-identifier@npm:7.24.7" 298 - checksum: 10c0/87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651 299 - languageName: node 300 - linkType: hard 301 - 302 - "@babel/helper-validator-identifier@npm:^7.25.9": 178 + "@babel/helper-validator-identifier@npm:^7.24.7, @babel/helper-validator-identifier@npm:^7.25.9": 303 179 version: 7.25.9 304 180 resolution: "@babel/helper-validator-identifier@npm:7.25.9" 305 181 checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d 306 182 languageName: node 307 183 linkType: hard 308 184 309 - "@babel/helper-validator-option@npm:^7.24.8": 310 - version: 7.24.8 311 - resolution: "@babel/helper-validator-option@npm:7.24.8" 312 - checksum: 10c0/73db93a34ae89201351288bee7623eed81a54000779462a986105b54ffe82069e764afd15171a428b82e7c7a9b5fec10b5d5603b216317a414062edf5c67a21f 313 - languageName: node 314 - linkType: hard 315 - 316 185 "@babel/helper-validator-option@npm:^7.25.9": 317 186 version: 7.25.9 318 187 resolution: "@babel/helper-validator-option@npm:7.25.9" ··· 320 189 languageName: node 321 190 linkType: hard 322 191 323 - "@babel/helpers@npm:^7.25.0": 324 - version: 7.25.0 325 - resolution: "@babel/helpers@npm:7.25.0" 326 - dependencies: 327 - "@babel/template": "npm:^7.25.0" 328 - "@babel/types": "npm:^7.25.0" 329 - checksum: 10c0/b7fe007fc4194268abf70aa3810365085e290e6528dcb9fbbf7a765d43c74b6369ce0f99c5ccd2d44c413853099daa449c9a0123f0b212ac8d18643f2e8174b8 330 - languageName: node 331 - linkType: hard 332 - 333 192 "@babel/helpers@npm:^7.26.0": 334 193 version: 7.26.0 335 194 resolution: "@babel/helpers@npm:7.26.0" ··· 340 199 languageName: node 341 200 linkType: hard 342 201 343 - "@babel/highlight@npm:^7.24.7": 344 - version: 7.24.7 345 - resolution: "@babel/highlight@npm:7.24.7" 346 - dependencies: 347 - "@babel/helper-validator-identifier": "npm:^7.24.7" 348 - chalk: "npm:^2.4.2" 349 - js-tokens: "npm:^4.0.0" 350 - picocolors: "npm:^1.0.0" 351 - checksum: 10c0/674334c571d2bb9d1c89bdd87566383f59231e16bcdcf5bb7835babdf03c9ae585ca0887a7b25bdf78f303984af028df52831c7989fecebb5101cc132da9393a 352 - languageName: node 353 - linkType: hard 354 - 355 - "@babel/parser@npm:^7.21.9": 356 - version: 7.25.6 357 - resolution: "@babel/parser@npm:7.25.6" 358 - dependencies: 359 - "@babel/types": "npm:^7.25.6" 360 - bin: 361 - parser: ./bin/babel-parser.js 362 - checksum: 10c0/f88a0e895dbb096fd37c4527ea97d12b5fc013720602580a941ac3a339698872f0c911e318c292b184c36b5fbe23b612f05aff9d24071bc847c7b1c21552c41d 363 - languageName: node 364 - linkType: hard 365 - 366 - "@babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.0": 367 - version: 7.25.0 368 - resolution: "@babel/parser@npm:7.25.0" 369 - bin: 370 - parser: ./bin/babel-parser.js 371 - checksum: 10c0/4aecf13829fa6f4a66835429bd235458544d9cd14374b17c19bc7726f472727ca33f500e51e1298ddc72db93bdd77fcaa9ddc095200b0b792173069e6cf9742e 372 - languageName: node 373 - linkType: hard 374 - 375 - "@babel/parser@npm:^7.25.4": 376 - version: 7.25.4 377 - resolution: "@babel/parser@npm:7.25.4" 378 - dependencies: 379 - "@babel/types": "npm:^7.25.4" 380 - bin: 381 - parser: ./bin/babel-parser.js 382 - checksum: 10c0/bdada5662f15d1df11a7266ec3bc9bb769bf3637ecf3d051eafcfc8f576dcf5a3ac1007c5e059db4a1e1387db9ae9caad239fc4f79e4c2200930ed610e779993 383 - languageName: node 384 - linkType: hard 385 - 386 - "@babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2": 202 + "@babel/parser@npm:^7.21.9, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2": 387 203 version: 7.26.2 388 204 resolution: "@babel/parser@npm:7.26.2" 389 205 dependencies: ··· 403 219 languageName: node 404 220 linkType: hard 405 221 406 - "@babel/runtime@npm:^7.17.9, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.9": 407 - version: 7.25.0 408 - resolution: "@babel/runtime@npm:7.25.0" 409 - dependencies: 410 - regenerator-runtime: "npm:^0.14.0" 411 - checksum: 10c0/bd3faf246170826cef2071a94d7b47b49d532351360ecd17722d03f6713fd93a3eb3dbd9518faa778d5e8ccad7392a7a604e56bd37aaad3f3aa68d619ccd983d 412 - languageName: node 413 - linkType: hard 414 - 415 - "@babel/runtime@npm:^7.20.1, @babel/runtime@npm:^7.5.5": 222 + "@babel/runtime@npm:^7.17.9, @babel/runtime@npm:^7.20.1, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.5.5": 416 223 version: 7.25.4 417 224 resolution: "@babel/runtime@npm:7.25.4" 418 225 dependencies: ··· 421 228 languageName: node 422 229 linkType: hard 423 230 424 - "@babel/template@npm:^7.25.0": 425 - version: 7.25.0 426 - resolution: "@babel/template@npm:7.25.0" 427 - dependencies: 428 - "@babel/code-frame": "npm:^7.24.7" 429 - "@babel/parser": "npm:^7.25.0" 430 - "@babel/types": "npm:^7.25.0" 431 - checksum: 10c0/4e31afd873215744c016e02b04f43b9fa23205d6d0766fb2e93eb4091c60c1b88897936adb895fb04e3c23de98dfdcbe31bc98daaa1a4e0133f78bb948e1209b 432 - languageName: node 433 - linkType: hard 434 - 435 231 "@babel/template@npm:^7.25.9": 436 232 version: 7.25.9 437 233 resolution: "@babel/template@npm:7.25.9" ··· 443 239 languageName: node 444 240 linkType: hard 445 241 446 - "@babel/traverse@npm:^7.24.7": 447 - version: 7.25.1 448 - resolution: "@babel/traverse@npm:7.25.1" 449 - dependencies: 450 - "@babel/code-frame": "npm:^7.24.7" 451 - "@babel/generator": "npm:^7.25.0" 452 - "@babel/parser": "npm:^7.25.0" 453 - "@babel/template": "npm:^7.25.0" 454 - "@babel/types": "npm:^7.25.0" 455 - debug: "npm:^4.3.1" 456 - globals: "npm:^11.1.0" 457 - checksum: 10c0/d8ae766da109d026ea6e483b9732256410e0ac249929e366ff11cf64a40a53a64b6a7b6db502a77de81dcace1fcf530d7569ffd0ee6b727ef4eb343e5f68ef74 458 - languageName: node 459 - linkType: hard 460 - 461 - "@babel/traverse@npm:^7.25.2": 462 - version: 7.25.4 463 - resolution: "@babel/traverse@npm:7.25.4" 464 - dependencies: 465 - "@babel/code-frame": "npm:^7.24.7" 466 - "@babel/generator": "npm:^7.25.4" 467 - "@babel/parser": "npm:^7.25.4" 468 - "@babel/template": "npm:^7.25.0" 469 - "@babel/types": "npm:^7.25.4" 470 - debug: "npm:^4.3.1" 471 - globals: "npm:^11.1.0" 472 - checksum: 10c0/37c9b49b277e051fe499ef5f6f217370c4f648d6370564d70b5e6beb2da75bfda6d7dab1d39504d89e9245448f8959bc1a5880d2238840cdc3979b35338ed0f5 473 - languageName: node 474 - linkType: hard 475 - 476 242 "@babel/traverse@npm:^7.25.9": 477 243 version: 7.25.9 478 244 resolution: "@babel/traverse@npm:7.25.9" ··· 488 254 languageName: node 489 255 linkType: hard 490 256 491 - "@babel/types@npm:^7.21.5, @babel/types@npm:^7.25.6": 492 - version: 7.25.6 493 - resolution: "@babel/types@npm:7.25.6" 494 - dependencies: 495 - "@babel/helper-string-parser": "npm:^7.24.8" 496 - "@babel/helper-validator-identifier": "npm:^7.24.7" 497 - to-fast-properties: "npm:^2.0.0" 498 - checksum: 10c0/89d45fbee24e27a05dca2d08300a26b905bd384a480448823f6723c72d3a30327c517476389b7280ce8cb9a2c48ef8f47da7f9f6d326faf6f53fd6b68237bdc4 499 - languageName: node 500 - linkType: hard 501 - 502 - "@babel/types@npm:^7.24.7, @babel/types@npm:^7.25.0, @babel/types@npm:^7.8.3": 503 - version: 7.25.0 504 - resolution: "@babel/types@npm:7.25.0" 505 - dependencies: 506 - "@babel/helper-string-parser": "npm:^7.24.8" 507 - "@babel/helper-validator-identifier": "npm:^7.24.7" 508 - to-fast-properties: "npm:^2.0.0" 509 - checksum: 10c0/3b2087d72442d53944b5365c7082f120e5040b0333d4a82406187c19056261ae2a35e087f8408348baadf1dcd156dc74573ec151272191b4a22b564297473da1 510 - languageName: node 511 - linkType: hard 512 - 513 - "@babel/types@npm:^7.25.2, @babel/types@npm:^7.25.4": 514 - version: 7.25.4 515 - resolution: "@babel/types@npm:7.25.4" 516 - dependencies: 517 - "@babel/helper-string-parser": "npm:^7.24.8" 518 - "@babel/helper-validator-identifier": "npm:^7.24.7" 519 - to-fast-properties: "npm:^2.0.0" 520 - checksum: 10c0/9aa25dfcd89cc4e4dde3188091c34398a005a49e2c2b069d0367b41e1122c91e80fd92998c52a90f2fb500f7e897b6090ec8be263d9cb53d0d75c756f44419f2 521 - languageName: node 522 - linkType: hard 523 - 524 - "@babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0": 257 + "@babel/types@npm:^7.21.5, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0": 525 258 version: 7.26.0 526 259 resolution: "@babel/types@npm:7.26.0" 527 260 dependencies: ··· 546 279 linkType: hard 547 280 548 281 "@carbon/charts-svelte@npm:^1.22.3": 549 - version: 1.22.3 550 - resolution: "@carbon/charts-svelte@npm:1.22.3" 282 + version: 1.22.4 283 + resolution: "@carbon/charts-svelte@npm:1.22.4" 551 284 dependencies: 552 - "@carbon/charts": "npm:1.22.3" 285 + "@carbon/charts": "npm:1.22.4" 553 286 "@ibm/telemetry-js": "npm:^1.8.0" 554 287 peerDependencies: 555 288 svelte: ^4.0.0 || ^5.1.0 556 - checksum: 10c0/a433050b185fda162703c217e056c0e2be8d02e9256647e4f04989fa405e057bdef50942cd43d2a613ec8b91e65d2f4f0c99c0510ed94ec62f664e370aff3a0d 289 + checksum: 10c0/3ba7134fd4b41b62e2ced2bf49b1cdb946b4ff847d1099b71898603d2f1f9e08899edd976388487822ed41e954f0d7073dec30867e62860d16fc9152032b9f34 557 290 languageName: node 558 291 linkType: hard 559 292 560 - "@carbon/charts@npm:1.22.3": 561 - version: 1.22.3 562 - resolution: "@carbon/charts@npm:1.22.3" 293 + "@carbon/charts@npm:1.22.4": 294 + version: 1.22.4 295 + resolution: "@carbon/charts@npm:1.22.4" 563 296 dependencies: 564 297 "@carbon/colors": "npm:^11.28.0" 565 298 "@carbon/utils-position": "npm:^1.3.0" ··· 571 304 d3-cloud: "npm:^1.2.7" 572 305 d3-sankey: "npm:^0.12.3" 573 306 date-fns: "npm:^4.1.0" 574 - dompurify: "npm:^3.2.0" 307 + dompurify: "npm:^3.2.1" 575 308 html-to-image: "npm:^1.11.11" 576 309 lodash-es: "npm:^4.17.21" 577 310 topojson-client: "npm:^3.1.0" 578 311 tslib: "npm:^2.8.1" 579 - checksum: 10c0/68f7d7a42d05b74e6522280389d0f8e3944706cd13c3c0ed825a8ad35430d715f6037b3930facb5b096858281cb4ebf8c67a63511f85f67910acc04ae3554f5b 312 + checksum: 10c0/295474e17316e9cda73651dd997360e9ae015c70ae471d6a1cde5bf1f6f6f06b111931d5e4f4dd3d4f14cf8c3b90bc53139b927736c6053dcf9fb86c800c8f76 580 313 languageName: node 581 314 linkType: hard 582 315 ··· 977 710 "@pothos/core": "npm:4.3.0" 978 711 "@pothos/plugin-complexity": "npm:^4.1.0" 979 712 "@pothos/plugin-dataloader": "npm:^4.3.0" 980 - "@pothos/plugin-directives": "npm:^4.1.0" 713 + "@pothos/plugin-directives": "npm:^4.2.0" 981 714 "@pothos/plugin-errors": "npm:^4.2.0" 982 - "@pothos/plugin-prisma": "npm:^4.3.1" 715 + "@pothos/plugin-prisma": "npm:^4.4.0" 983 716 "@pothos/plugin-relay": "npm:^4.3.0" 984 717 "@pothos/plugin-scope-auth": "npm:^4.1.1" 985 718 "@pothos/plugin-simple-objects": "npm:^4.1.0" ··· 1031 764 barrelsby: "npm:^2.8.1" 1032 765 bunyan: "npm:^1.8.15" 1033 766 chalk: "npm:^5.3.0" 767 + chokidar: "npm:^4.0.1" 1034 768 cli: "npm:^1.0.1" 1035 769 cli-progress: "npm:^3.12.0" 1036 770 colord: "npm:^2.9.3" 771 + concurrently: "npm:^9.0.1" 1037 772 connect-redis: "npm:^7.1.1" 1038 773 cors: "npm:^2.8.5" 1039 774 croner: "npm:^8.1.2" ··· 1145 880 "@paypal/paypal-js": "npm:^8.1.2" 1146 881 "@sentry/sveltekit": "npm:^8.41.0" 1147 882 "@sveltejs/adapter-node": "npm:^5.2.9" 1148 - "@sveltejs/kit": "npm:^2.8.5" 883 + "@sveltejs/kit": "npm:^2.9.0" 1149 884 "@sveltejs/vite-plugin-svelte": "npm:^3.1.2" 1150 885 "@swc/core": "npm:^1.9.2" 1151 886 "@swc/wasm": "npm:^1.9.2" ··· 1218 953 svelte-local-storage-store: "npm:^0.6.4" 1219 954 svelte-preprocess: "npm:^6.0.3" 1220 955 svelte-seo: "npm:^1.6.1" 1221 - svelte-store2storage: "npm:^1.0.0" 956 + svelte-store2storage: "npm:^2.0.0" 1222 957 svelte-tenor: "npm:^0.2.0" 1223 958 sveltejs-tippy: "npm:^3.0.0" 1224 959 sveltekit-search-params: "npm:^3.0.0" ··· 1227 962 tsx: "npm:^4.19.2" 1228 963 typescript: "npm:^5.7.2" 1229 964 ua-parser-js: "npm:^2.0.0" 1230 - unplugin-icons: "npm:^0.18.5" 965 + unplugin-icons: "npm:^0.20.2" 1231 966 vaul-svelte: "npm:^0.3.2" 1232 967 vite: "npm:5.4.11" 1233 968 vite-plugin-kit-routes: "npm:^0.7.0" ··· 1245 980 dependencies: 1246 981 "@faker-js/faker": "npm:^9.2.0" 1247 982 "@pothos/core": "npm:^4.3.0" 1248 - "@pothos/plugin-prisma": "npm:^4.3.1" 983 + "@pothos/plugin-prisma": "npm:^4.4.0" 1249 984 "@prisma/client": "npm:^5.22.0" 1250 985 graphql: "npm:^16.9.0" 1251 986 ioredis: "npm:^5.4.1" ··· 1286 1021 languageName: unknown 1287 1022 linkType: soft 1288 1023 1289 - "@clack/core@npm:0.3.5": 1024 + "@clack/core@npm:0.3.5, @clack/core@npm:^0.3.2, @clack/core@npm:^0.3.3": 1290 1025 version: 0.3.5 1291 1026 resolution: "@clack/core@npm:0.3.5" 1292 1027 dependencies: ··· 1296 1031 languageName: node 1297 1032 linkType: hard 1298 1033 1299 - "@clack/core@npm:^0.3.2, @clack/core@npm:^0.3.3": 1300 - version: 0.3.4 1301 - resolution: "@clack/core@npm:0.3.4" 1302 - dependencies: 1303 - picocolors: "npm:^1.0.0" 1304 - sisteransi: "npm:^1.0.5" 1305 - checksum: 10c0/2531c18885da676510c339b94906e2071bce538c6ea14c36df425d99de2bdb8fe317f9795461811fc6fe233bb3e653b030a3975eb1da9997cac09dcd53f43068 1306 - languageName: node 1307 - linkType: hard 1308 - 1309 1034 "@clack/prompts@npm:^0.6.3": 1310 1035 version: 0.6.3 1311 1036 resolution: "@clack/prompts@npm:0.6.3" ··· 1541 1266 languageName: node 1542 1267 linkType: hard 1543 1268 1544 - "@csstools/css-parser-algorithms@npm:^3.0.1": 1545 - version: 3.0.1 1546 - resolution: "@csstools/css-parser-algorithms@npm:3.0.1" 1269 + "@csstools/css-parser-algorithms@npm:^3.0.4": 1270 + version: 3.0.4 1271 + resolution: "@csstools/css-parser-algorithms@npm:3.0.4" 1547 1272 peerDependencies: 1548 - "@csstools/css-tokenizer": ^3.0.1 1549 - checksum: 10c0/064c6d519197b5af43bbf5efe8f4cdbd361b006113aa82160d637e925b50c643a52d33d512ca01c63042d952d723a2a10798231a714668356b76668fb11294e3 1273 + "@csstools/css-tokenizer": ^3.0.3 1274 + checksum: 10c0/d411f07765e14eede17bccc6bd4f90ff303694df09aabfede3fd104b2dfacfd4fe3697cd25ddad14684c850328f3f9420ebfa9f78380892492974db24ae47dbd 1550 1275 languageName: node 1551 1276 linkType: hard 1552 1277 1553 - "@csstools/css-tokenizer@npm:^3.0.1": 1554 - version: 3.0.1 1555 - resolution: "@csstools/css-tokenizer@npm:3.0.1" 1556 - checksum: 10c0/c9ed4373e5731b5375ea9791590081019c04e95f08b46b272977e5e7b8c3d560affc62e82263cb8def1df1e57f0673140e7e16a14a5e7be04e6a234be088d1d3 1278 + "@csstools/css-tokenizer@npm:^3.0.3": 1279 + version: 3.0.3 1280 + resolution: "@csstools/css-tokenizer@npm:3.0.3" 1281 + checksum: 10c0/c31bf410e1244b942e71798e37c54639d040cb59e0121b21712b40015fced2b0fb1ffe588434c5f8923c9cd0017cfc1c1c8f3921abc94c96edf471aac2eba5e5 1557 1282 languageName: node 1558 1283 linkType: hard 1559 1284 1560 - "@csstools/media-query-list-parser@npm:^3.0.1": 1561 - version: 3.0.1 1562 - resolution: "@csstools/media-query-list-parser@npm:3.0.1" 1285 + "@csstools/media-query-list-parser@npm:^4.0.2": 1286 + version: 4.0.2 1287 + resolution: "@csstools/media-query-list-parser@npm:4.0.2" 1563 1288 peerDependencies: 1564 - "@csstools/css-parser-algorithms": ^3.0.1 1565 - "@csstools/css-tokenizer": ^3.0.1 1566 - checksum: 10c0/fca1935cabf9fb94128da87f72c34aa2cfce8eb0beba4c78d685c7b42aaba3521067710afc6905b7347fc41fe53947536ce15a7ef3387b48763d8f7d71778d5e 1289 + "@csstools/css-parser-algorithms": ^3.0.4 1290 + "@csstools/css-tokenizer": ^3.0.3 1291 + checksum: 10c0/5d008a70f5d4fd96224066a433f5cdefa76cfd78a74416a20d6d5b2bb1bc8282b140e8373015d807d4dadb91daf3deb73eb13f853ec4e0479d0cb92e80c6f20d 1567 1292 languageName: node 1568 1293 linkType: hard 1569 1294 1570 - "@csstools/selector-specificity@npm:^4.0.0": 1571 - version: 4.0.0 1572 - resolution: "@csstools/selector-specificity@npm:4.0.0" 1295 + "@csstools/selector-specificity@npm:^5.0.0": 1296 + version: 5.0.0 1297 + resolution: "@csstools/selector-specificity@npm:5.0.0" 1573 1298 peerDependencies: 1574 - postcss-selector-parser: ^6.1.0 1575 - checksum: 10c0/6f4d4ecfdcd37f950100de8ffe0b4c1b1cc8c004aab2c2ebaa5c3e2bca2412d15b17d4628435f47a62d2c56db41bcbf985cb9c69e74b89964d48e421e93e75ba 1299 + postcss-selector-parser: ^7.0.0 1300 + checksum: 10c0/186b444cabcdcdeb553bfe021f80c58bfe9ef38dcc444f2b1f34a5aab9be063ab4e753022b2d5792049c041c28cfbb78e4b707ec398459300e402030d35c07eb 1576 1301 languageName: node 1577 1302 linkType: hard 1578 1303 ··· 1629 1354 languageName: node 1630 1355 linkType: hard 1631 1356 1632 - "@envelop/core@npm:^5.0.1": 1633 - version: 5.0.1 1634 - resolution: "@envelop/core@npm:5.0.1" 1635 - dependencies: 1636 - "@envelop/types": "npm:5.0.0" 1637 - tslib: "npm:^2.5.0" 1638 - checksum: 10c0/26bcad627d2959e5dadb7ad0f1d158ba8227e45e721c2112808633124228ed49ee4f8cbb498d57447c4730bfcb9734ebd0fa3e377d2f6dde6b4eb506fc96a568 1639 - languageName: node 1640 - linkType: hard 1641 - 1642 - "@envelop/core@npm:^5.0.2": 1357 + "@envelop/core@npm:^5.0.1, @envelop/core@npm:^5.0.2": 1643 1358 version: 5.0.2 1644 1359 resolution: "@envelop/core@npm:5.0.2" 1645 1360 dependencies: ··· 2358 2073 linkType: hard 2359 2074 2360 2075 "@graphql-tools/executor@npm:^1.0.0": 2361 - version: 1.3.0 2362 - resolution: "@graphql-tools/executor@npm:1.3.0" 2076 + version: 1.3.4 2077 + resolution: "@graphql-tools/executor@npm:1.3.4" 2363 2078 dependencies: 2364 - "@graphql-tools/utils": "npm:^10.2.3" 2079 + "@graphql-tools/utils": "npm:^10.6.0" 2365 2080 "@graphql-typed-document-node/core": "npm:3.2.0" 2366 2081 "@repeaterjs/repeater": "npm:^3.0.4" 2367 2082 tslib: "npm:^2.4.0" 2368 2083 value-or-promise: "npm:^1.0.12" 2369 2084 peerDependencies: 2370 2085 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 2371 - checksum: 10c0/0e4ec4bcd7ba3f4d0053ae59117fa0367ee9444839f2c0568058494abfa1b4196e53aa738c88cb68a02f30d0a73827578f7f5cb7125a874063a4f1331cd98d62 2086 + checksum: 10c0/87fa2c254c7bc1eb27c03e4f0c994aa5c8037ed95bb3900566bd0fd0e52af1918862da9a133126e8e27957b79544bada0086046fa3ba9b26b9843ff17996e5c1 2372 2087 languageName: node 2373 2088 linkType: hard 2374 2089 2375 - "@graphql-tools/executor@npm:^1.3.3": 2090 + "@graphql-tools/executor@npm:^1.3.5": 2376 2091 version: 1.3.5 2377 2092 resolution: "@graphql-tools/executor@npm:1.3.5" 2378 2093 dependencies: ··· 2411 2126 languageName: node 2412 2127 linkType: hard 2413 2128 2414 - "@graphql-tools/schema@npm:^10.0.0, @graphql-tools/schema@npm:^10.0.4": 2129 + "@graphql-tools/merge@npm:^9.0.11": 2130 + version: 9.0.11 2131 + resolution: "@graphql-tools/merge@npm:9.0.11" 2132 + dependencies: 2133 + "@graphql-tools/utils": "npm:^10.6.1" 2134 + tslib: "npm:^2.4.0" 2135 + peerDependencies: 2136 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 2137 + checksum: 10c0/51df1cf3d6fd97d2468ed6359f2e60e8e69a0fa10e1090bdd6c0b6ec45da3c4b9eafae750144e6e84f85cc5ee0a23d05f07cb72b26a8f6fcba92c2c37938a8b7 2138 + languageName: node 2139 + linkType: hard 2140 + 2141 + "@graphql-tools/schema@npm:^10.0.0": 2415 2142 version: 10.0.4 2416 2143 resolution: "@graphql-tools/schema@npm:10.0.4" 2417 2144 dependencies: ··· 2425 2152 languageName: node 2426 2153 linkType: hard 2427 2154 2155 + "@graphql-tools/schema@npm:^10.0.10": 2156 + version: 10.0.10 2157 + resolution: "@graphql-tools/schema@npm:10.0.10" 2158 + dependencies: 2159 + "@graphql-tools/merge": "npm:^9.0.11" 2160 + "@graphql-tools/utils": "npm:^10.6.1" 2161 + tslib: "npm:^2.4.0" 2162 + value-or-promise: "npm:^1.0.12" 2163 + peerDependencies: 2164 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 2165 + checksum: 10c0/bb74e9b2eca491c23bb7893d92ffa5acd94bd2177d06f962403b8869d4929992c28eec13f3dd3b32d7d450ce8a436b4e2f4ca95911ed4d2946e5777d9ce81695 2166 + languageName: node 2167 + linkType: hard 2168 + 2428 2169 "@graphql-tools/schema@npm:^9.0.18, @graphql-tools/schema@npm:^9.0.4": 2429 2170 version: 9.0.19 2430 2171 resolution: "@graphql-tools/schema@npm:9.0.19" ··· 2450 2191 peerDependencies: 2451 2192 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 2452 2193 checksum: 10c0/006d499d87eb5ee4680c43b6848de8a84e51c948d1ca18f98a062a405cf79472b14b93b97a77a1416d7e635f82e60583d432b3c0c2eaaf29eee322e18b8f651f 2194 + languageName: node 2195 + linkType: hard 2196 + 2197 + "@graphql-tools/utils@npm:^10.6.0": 2198 + version: 10.6.0 2199 + resolution: "@graphql-tools/utils@npm:10.6.0" 2200 + dependencies: 2201 + "@graphql-typed-document-node/core": "npm:^3.1.1" 2202 + cross-inspect: "npm:1.0.1" 2203 + dset: "npm:^3.1.2" 2204 + tslib: "npm:^2.4.0" 2205 + peerDependencies: 2206 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 2207 + checksum: 10c0/948318f577a6debc12388ca55ad00215ea7f06d71d2b65413b743dac2657f4be1b16d50cdd699482a950317d5d29980aba0b3cfc10e0f489113ac3afbf122ce2 2453 2208 languageName: node 2454 2209 linkType: hard 2455 2210 ··· 2656 2411 languageName: node 2657 2412 linkType: hard 2658 2413 2659 - "@ibm/telemetry-js@npm:^1.5.0, @ibm/telemetry-js@npm:^1.5.1": 2660 - version: 1.6.0 2661 - resolution: "@ibm/telemetry-js@npm:1.6.0" 2662 - bin: 2663 - ibmtelemetry: dist/collect.js 2664 - checksum: 10c0/29b2d321b97218b4c3b19dc4a6dbccb88655dd5a9941c71a2974bd5f387532098dd4a791690e378b9e42b4f09e7b1ef349d370e9ef9ff834485d112405cea328 2665 - languageName: node 2666 - linkType: hard 2667 - 2668 - "@ibm/telemetry-js@npm:^1.8.0": 2414 + "@ibm/telemetry-js@npm:^1.5.0, @ibm/telemetry-js@npm:^1.5.1, @ibm/telemetry-js@npm:^1.8.0": 2669 2415 version: 1.8.0 2670 2416 resolution: "@ibm/telemetry-js@npm:1.8.0" 2671 2417 bin: ··· 2726 2472 languageName: node 2727 2473 linkType: hard 2728 2474 2729 - "@iconify/utils@npm:^2.1.22": 2730 - version: 2.1.29 2731 - resolution: "@iconify/utils@npm:2.1.29" 2475 + "@iconify/utils@npm:^2.1.33": 2476 + version: 2.1.33 2477 + resolution: "@iconify/utils@npm:2.1.33" 2732 2478 dependencies: 2733 - "@antfu/install-pkg": "npm:^0.1.1" 2479 + "@antfu/install-pkg": "npm:^0.4.0" 2734 2480 "@antfu/utils": "npm:^0.7.10" 2735 2481 "@iconify/types": "npm:^2.0.0" 2736 - debug: "npm:^4.3.5" 2482 + debug: "npm:^4.3.6" 2737 2483 kolorist: "npm:^1.8.0" 2738 2484 local-pkg: "npm:^0.5.0" 2739 2485 mlly: "npm:^1.7.1" 2740 - checksum: 10c0/1a1720a66d620479fe3509b2fe8320906d81baba83fa0aa51929b759e274d8f464b665f40f46edd1571d38719ca46671fa9fc778d79953bfd54b96bd4b6cc33c 2486 + checksum: 10c0/86faf1abee78ba75cbb7d8cdd454f7a8da11d46913a8108c4c1f49243870ef787a2ef00e574e1cfff0f70e1f7bbe4ced2ffc7436baf95bfd66e52802e187bc13 2741 2487 languageName: node 2742 2488 linkType: hard 2743 2489 ··· 3040 2786 languageName: node 3041 2787 linkType: hard 3042 2788 3043 - "@jsdevtools/ez-spawn@npm:^3.0.4": 3044 - version: 3.0.4 3045 - resolution: "@jsdevtools/ez-spawn@npm:3.0.4" 3046 - dependencies: 3047 - call-me-maybe: "npm:^1.0.1" 3048 - cross-spawn: "npm:^7.0.3" 3049 - string-argv: "npm:^0.3.1" 3050 - type-detect: "npm:^4.0.8" 3051 - checksum: 10c0/fb56f99c4d09ccaeace4ebaecfa31ab1ff90517d5ca51dbd624f4b9ab489eee469504ab33a12a2bc8b5f0a35ee61e139cc087b242ad7947c61674454cb41c75e 3052 - languageName: node 3053 - linkType: hard 3054 - 3055 2789 "@kamilkisiela/fast-url-parser@npm:^1.1.4": 3056 2790 version: 1.1.4 3057 2791 resolution: "@kamilkisiela/fast-url-parser@npm:1.1.4" ··· 3059 2793 languageName: node 3060 2794 linkType: hard 3061 2795 3062 - "@kitql/helpers@npm:0.8.10": 2796 + "@kitql/helpers@npm:0.8.10, @kitql/helpers@npm:^0.8.2": 3063 2797 version: 0.8.10 3064 2798 resolution: "@kitql/helpers@npm:0.8.10" 3065 2799 dependencies: 3066 2800 esm-env: "npm:^1.0.0" 3067 2801 checksum: 10c0/2dd8b95003ec37add384e05828e734ad924c2955d24f98ecc4e983e3129393a61c083af0763fba2aef949fe620af2f4b5f6866ebaefbf6db3f53a39314a93fb0 3068 - languageName: node 3069 - linkType: hard 3070 - 3071 - "@kitql/helpers@npm:^0.8.2": 3072 - version: 0.8.9 3073 - resolution: "@kitql/helpers@npm:0.8.9" 3074 - dependencies: 3075 - esm-env: "npm:^1.0.0" 3076 - checksum: 10c0/ebb6003ad5bcea7f6c1db0275576a215f2513cbea810d63dcd91436f03d2f67a4d46f11561122ced91a8f7cf1c2a22881028c3d80cd5b95f3bb03c89d504a3f8 3077 2802 languageName: node 3078 2803 linkType: hard 3079 2804 ··· 4072 3797 languageName: node 4073 3798 linkType: hard 4074 3799 4075 - "@pothos/plugin-directives@npm:^4.1.0": 4076 - version: 4.1.0 4077 - resolution: "@pothos/plugin-directives@npm:4.1.0" 3800 + "@pothos/plugin-directives@npm:^4.2.0": 3801 + version: 4.2.0 3802 + resolution: "@pothos/plugin-directives@npm:4.2.0" 4078 3803 peerDependencies: 4079 3804 graphql: ">=16.6.0" 4080 - checksum: 10c0/275373fee605612f5599cb5dcb59ac4af3c09070b3b899339f4b1430a881387e34de0c615cbb914ee0694853c6d0b9e6b1dfb44b3c02b8fc0e1ff21c1d614a76 3805 + checksum: 10c0/cdffcb982a81cb452af0abc0f8917457d10fbbfa7a4315974cc229c3d1c8433f02af9be05d21ca2374fda27e76707b18e1dc69122b8fb5f02c9615608eaf4902 4081 3806 languageName: node 4082 3807 linkType: hard 4083 3808 ··· 4091 3816 languageName: node 4092 3817 linkType: hard 4093 3818 4094 - "@pothos/plugin-prisma@npm:^4.3.1": 4095 - version: 4.3.1 4096 - resolution: "@pothos/plugin-prisma@npm:4.3.1" 3819 + "@pothos/plugin-prisma@npm:^4.4.0": 3820 + version: 4.4.0 3821 + resolution: "@pothos/plugin-prisma@npm:4.4.0" 4097 3822 dependencies: 4098 - "@prisma/generator-helper": "npm:^5.19.1" 3823 + "@prisma/generator-helper": "npm:^6.0.0" 4099 3824 peerDependencies: 4100 3825 "@pothos/core": "*" 4101 3826 "@prisma/client": "*" ··· 4103 3828 typescript: ">=4.7.2" 4104 3829 bin: 4105 3830 prisma-pothos-types: bin/generator.js 4106 - checksum: 10c0/307290f3ee20f86ad381eb83f76d9ba7e307af791189e5c52c5da2b285beff707599a3765daa7a50d991aa6834e78632011047bfa67bebdd1581c9415a0125c7 3831 + checksum: 10c0/e493bd67c182d94de04c859875a2618bc5121456b6c7bb4f9e208855fecc7e8cba8e3acde5c8c0e7aeaffeb6763bab62fa1e3b1eb54c6cae1f8581e7686e0753 4107 3832 languageName: node 4108 3833 linkType: hard 4109 3834 ··· 4197 3922 languageName: node 4198 3923 linkType: hard 4199 3924 3925 + "@prisma/debug@npm:6.0.0": 3926 + version: 6.0.0 3927 + resolution: "@prisma/debug@npm:6.0.0" 3928 + checksum: 10c0/2adb1fe906ee12b0f39787ca9db39d6026e9611d9350a5b667a45bf3b6e5fa08d6f5d9a937286287eecb1a824292d156c093d3ae26c7db1a64fc3be3d085eadb 3929 + languageName: node 3930 + linkType: hard 3931 + 4200 3932 "@prisma/engines-version@npm:5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2": 4201 3933 version: 5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2 4202 3934 resolution: "@prisma/engines-version@npm:5.22.0-44.605197351a3c8bdd595af2d2a9bc3025bca48ea2" ··· 4227 3959 languageName: node 4228 3960 linkType: hard 4229 3961 4230 - "@prisma/generator-helper@npm:^5.19.1": 4231 - version: 5.22.0 4232 - resolution: "@prisma/generator-helper@npm:5.22.0" 3962 + "@prisma/generator-helper@npm:^6.0.0": 3963 + version: 6.0.0 3964 + resolution: "@prisma/generator-helper@npm:6.0.0" 4233 3965 dependencies: 4234 - "@prisma/debug": "npm:5.22.0" 4235 - checksum: 10c0/d7a6a6f66330b38aea76cd148b1bbdf43e373f6401e8edabaebc12db81abc35712386c97f1178d97d1655905a4ff822000b902c407ead986565984555b9893d0 3966 + "@prisma/debug": "npm:6.0.0" 3967 + checksum: 10c0/7cf9b5d0e41f64deaf8893d8b9397ecfea17f09f9622cba2b27d463a007e9a5e691b92519ecc0f760670cdaf59fdd46affe6677d39187149954892a9f926bfdc 4236 3968 languageName: node 4237 3969 linkType: hard 4238 3970 ··· 4411 4143 languageName: node 4412 4144 linkType: hard 4413 4145 4414 - "@rollup/rollup-android-arm-eabi@npm:4.19.1": 4415 - version: 4.19.1 4416 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.19.1" 4417 - conditions: os=android & cpu=arm 4418 - languageName: node 4419 - linkType: hard 4420 - 4421 4146 "@rollup/rollup-android-arm-eabi@npm:4.24.0": 4422 4147 version: 4.24.0 4423 4148 resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.0" ··· 4425 4150 languageName: node 4426 4151 linkType: hard 4427 4152 4428 - "@rollup/rollup-android-arm64@npm:4.19.1": 4429 - version: 4.19.1 4430 - resolution: "@rollup/rollup-android-arm64@npm:4.19.1" 4431 - conditions: os=android & cpu=arm64 4432 - languageName: node 4433 - linkType: hard 4434 - 4435 4153 "@rollup/rollup-android-arm64@npm:4.24.0": 4436 4154 version: 4.24.0 4437 4155 resolution: "@rollup/rollup-android-arm64@npm:4.24.0" ··· 4439 4157 languageName: node 4440 4158 linkType: hard 4441 4159 4442 - "@rollup/rollup-darwin-arm64@npm:4.19.1": 4443 - version: 4.19.1 4444 - resolution: "@rollup/rollup-darwin-arm64@npm:4.19.1" 4445 - conditions: os=darwin & cpu=arm64 4446 - languageName: node 4447 - linkType: hard 4448 - 4449 4160 "@rollup/rollup-darwin-arm64@npm:4.24.0": 4450 4161 version: 4.24.0 4451 4162 resolution: "@rollup/rollup-darwin-arm64@npm:4.24.0" ··· 4453 4164 languageName: node 4454 4165 linkType: hard 4455 4166 4456 - "@rollup/rollup-darwin-x64@npm:4.19.1": 4457 - version: 4.19.1 4458 - resolution: "@rollup/rollup-darwin-x64@npm:4.19.1" 4459 - conditions: os=darwin & cpu=x64 4460 - languageName: node 4461 - linkType: hard 4462 - 4463 4167 "@rollup/rollup-darwin-x64@npm:4.24.0": 4464 4168 version: 4.24.0 4465 4169 resolution: "@rollup/rollup-darwin-x64@npm:4.24.0" 4466 4170 conditions: os=darwin & cpu=x64 4467 - languageName: node 4468 - linkType: hard 4469 - 4470 - "@rollup/rollup-linux-arm-gnueabihf@npm:4.19.1": 4471 - version: 4.19.1 4472 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.19.1" 4473 - conditions: os=linux & cpu=arm & libc=glibc 4474 4171 languageName: node 4475 4172 linkType: hard 4476 4173 ··· 4481 4178 languageName: node 4482 4179 linkType: hard 4483 4180 4484 - "@rollup/rollup-linux-arm-musleabihf@npm:4.19.1": 4485 - version: 4.19.1 4486 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.19.1" 4487 - conditions: os=linux & cpu=arm & libc=musl 4488 - languageName: node 4489 - linkType: hard 4490 - 4491 4181 "@rollup/rollup-linux-arm-musleabihf@npm:4.24.0": 4492 4182 version: 4.24.0 4493 4183 resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.0" ··· 4495 4185 languageName: node 4496 4186 linkType: hard 4497 4187 4498 - "@rollup/rollup-linux-arm64-gnu@npm:4.19.1": 4499 - version: 4.19.1 4500 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.19.1" 4501 - conditions: os=linux & cpu=arm64 & libc=glibc 4502 - languageName: node 4503 - linkType: hard 4504 - 4505 4188 "@rollup/rollup-linux-arm64-gnu@npm:4.24.0": 4506 4189 version: 4.24.0 4507 4190 resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.0" ··· 4509 4192 languageName: node 4510 4193 linkType: hard 4511 4194 4512 - "@rollup/rollup-linux-arm64-musl@npm:4.19.1": 4513 - version: 4.19.1 4514 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.19.1" 4515 - conditions: os=linux & cpu=arm64 & libc=musl 4516 - languageName: node 4517 - linkType: hard 4518 - 4519 4195 "@rollup/rollup-linux-arm64-musl@npm:4.24.0": 4520 4196 version: 4.24.0 4521 4197 resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.0" ··· 4523 4199 languageName: node 4524 4200 linkType: hard 4525 4201 4526 - "@rollup/rollup-linux-powerpc64le-gnu@npm:4.19.1": 4527 - version: 4.19.1 4528 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.19.1" 4529 - conditions: os=linux & cpu=ppc64 & libc=glibc 4530 - languageName: node 4531 - linkType: hard 4532 - 4533 4202 "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.0": 4534 4203 version: 4.24.0 4535 4204 resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.0" ··· 4537 4206 languageName: node 4538 4207 linkType: hard 4539 4208 4540 - "@rollup/rollup-linux-riscv64-gnu@npm:4.19.1": 4541 - version: 4.19.1 4542 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.19.1" 4543 - conditions: os=linux & cpu=riscv64 & libc=glibc 4544 - languageName: node 4545 - linkType: hard 4546 - 4547 4209 "@rollup/rollup-linux-riscv64-gnu@npm:4.24.0": 4548 4210 version: 4.24.0 4549 4211 resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.0" ··· 4551 4213 languageName: node 4552 4214 linkType: hard 4553 4215 4554 - "@rollup/rollup-linux-s390x-gnu@npm:4.19.1": 4555 - version: 4.19.1 4556 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.19.1" 4557 - conditions: os=linux & cpu=s390x & libc=glibc 4558 - languageName: node 4559 - linkType: hard 4560 - 4561 4216 "@rollup/rollup-linux-s390x-gnu@npm:4.24.0": 4562 4217 version: 4.24.0 4563 4218 resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.0" ··· 4565 4220 languageName: node 4566 4221 linkType: hard 4567 4222 4568 - "@rollup/rollup-linux-x64-gnu@npm:4.19.1": 4569 - version: 4.19.1 4570 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.19.1" 4571 - conditions: os=linux & cpu=x64 & libc=glibc 4572 - languageName: node 4573 - linkType: hard 4574 - 4575 4223 "@rollup/rollup-linux-x64-gnu@npm:4.24.0": 4576 4224 version: 4.24.0 4577 4225 resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.0" ··· 4579 4227 languageName: node 4580 4228 linkType: hard 4581 4229 4582 - "@rollup/rollup-linux-x64-musl@npm:4.19.1": 4583 - version: 4.19.1 4584 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.19.1" 4585 - conditions: os=linux & cpu=x64 & libc=musl 4586 - languageName: node 4587 - linkType: hard 4588 - 4589 4230 "@rollup/rollup-linux-x64-musl@npm:4.24.0": 4590 4231 version: 4.24.0 4591 4232 resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.0" ··· 4593 4234 languageName: node 4594 4235 linkType: hard 4595 4236 4596 - "@rollup/rollup-win32-arm64-msvc@npm:4.19.1": 4597 - version: 4.19.1 4598 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.19.1" 4599 - conditions: os=win32 & cpu=arm64 4600 - languageName: node 4601 - linkType: hard 4602 - 4603 4237 "@rollup/rollup-win32-arm64-msvc@npm:4.24.0": 4604 4238 version: 4.24.0 4605 4239 resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.0" ··· 4607 4241 languageName: node 4608 4242 linkType: hard 4609 4243 4610 - "@rollup/rollup-win32-ia32-msvc@npm:4.19.1": 4611 - version: 4.19.1 4612 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.19.1" 4613 - conditions: os=win32 & cpu=ia32 4614 - languageName: node 4615 - linkType: hard 4616 - 4617 4244 "@rollup/rollup-win32-ia32-msvc@npm:4.24.0": 4618 4245 version: 4.24.0 4619 4246 resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.0" 4620 4247 conditions: os=win32 & cpu=ia32 4621 - languageName: node 4622 - linkType: hard 4623 - 4624 - "@rollup/rollup-win32-x64-msvc@npm:4.19.1": 4625 - version: 4.19.1 4626 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.19.1" 4627 - conditions: os=win32 & cpu=x64 4628 4248 languageName: node 4629 4249 linkType: hard 4630 4250 ··· 4742 4362 languageName: node 4743 4363 linkType: hard 4744 4364 4745 - "@sentry/cli-darwin@npm:2.38.2": 4746 - version: 2.38.2 4747 - resolution: "@sentry/cli-darwin@npm:2.38.2" 4365 + "@sentry/cli-darwin@npm:2.39.0": 4366 + version: 2.39.0 4367 + resolution: "@sentry/cli-darwin@npm:2.39.0" 4748 4368 conditions: os=darwin 4749 4369 languageName: node 4750 4370 linkType: hard 4751 4371 4752 - "@sentry/cli-linux-arm64@npm:2.38.2": 4753 - version: 2.38.2 4754 - resolution: "@sentry/cli-linux-arm64@npm:2.38.2" 4372 + "@sentry/cli-linux-arm64@npm:2.39.0": 4373 + version: 2.39.0 4374 + resolution: "@sentry/cli-linux-arm64@npm:2.39.0" 4755 4375 conditions: (os=linux | os=freebsd) & cpu=arm64 4756 4376 languageName: node 4757 4377 linkType: hard 4758 4378 4759 - "@sentry/cli-linux-arm@npm:2.38.2": 4760 - version: 2.38.2 4761 - resolution: "@sentry/cli-linux-arm@npm:2.38.2" 4379 + "@sentry/cli-linux-arm@npm:2.39.0": 4380 + version: 2.39.0 4381 + resolution: "@sentry/cli-linux-arm@npm:2.39.0" 4762 4382 conditions: (os=linux | os=freebsd) & cpu=arm 4763 4383 languageName: node 4764 4384 linkType: hard 4765 4385 4766 - "@sentry/cli-linux-i686@npm:2.38.2": 4767 - version: 2.38.2 4768 - resolution: "@sentry/cli-linux-i686@npm:2.38.2" 4386 + "@sentry/cli-linux-i686@npm:2.39.0": 4387 + version: 2.39.0 4388 + resolution: "@sentry/cli-linux-i686@npm:2.39.0" 4769 4389 conditions: (os=linux | os=freebsd) & (cpu=x86 | cpu=ia32) 4770 4390 languageName: node 4771 4391 linkType: hard 4772 4392 4773 - "@sentry/cli-linux-x64@npm:2.38.2": 4774 - version: 2.38.2 4775 - resolution: "@sentry/cli-linux-x64@npm:2.38.2" 4393 + "@sentry/cli-linux-x64@npm:2.39.0": 4394 + version: 2.39.0 4395 + resolution: "@sentry/cli-linux-x64@npm:2.39.0" 4776 4396 conditions: (os=linux | os=freebsd) & cpu=x64 4777 4397 languageName: node 4778 4398 linkType: hard 4779 4399 4780 - "@sentry/cli-win32-i686@npm:2.38.2": 4781 - version: 2.38.2 4782 - resolution: "@sentry/cli-win32-i686@npm:2.38.2" 4400 + "@sentry/cli-win32-i686@npm:2.39.0": 4401 + version: 2.39.0 4402 + resolution: "@sentry/cli-win32-i686@npm:2.39.0" 4783 4403 conditions: os=win32 & (cpu=x86 | cpu=ia32) 4784 4404 languageName: node 4785 4405 linkType: hard 4786 4406 4787 - "@sentry/cli-win32-x64@npm:2.38.2": 4788 - version: 2.38.2 4789 - resolution: "@sentry/cli-win32-x64@npm:2.38.2" 4407 + "@sentry/cli-win32-x64@npm:2.39.0": 4408 + version: 2.39.0 4409 + resolution: "@sentry/cli-win32-x64@npm:2.39.0" 4790 4410 conditions: os=win32 & cpu=x64 4791 4411 languageName: node 4792 4412 linkType: hard 4793 4413 4794 4414 "@sentry/cli@npm:^2.36.1": 4795 - version: 2.38.2 4796 - resolution: "@sentry/cli@npm:2.38.2" 4415 + version: 2.39.0 4416 + resolution: "@sentry/cli@npm:2.39.0" 4797 4417 dependencies: 4798 - "@sentry/cli-darwin": "npm:2.38.2" 4799 - "@sentry/cli-linux-arm": "npm:2.38.2" 4800 - "@sentry/cli-linux-arm64": "npm:2.38.2" 4801 - "@sentry/cli-linux-i686": "npm:2.38.2" 4802 - "@sentry/cli-linux-x64": "npm:2.38.2" 4803 - "@sentry/cli-win32-i686": "npm:2.38.2" 4804 - "@sentry/cli-win32-x64": "npm:2.38.2" 4418 + "@sentry/cli-darwin": "npm:2.39.0" 4419 + "@sentry/cli-linux-arm": "npm:2.39.0" 4420 + "@sentry/cli-linux-arm64": "npm:2.39.0" 4421 + "@sentry/cli-linux-i686": "npm:2.39.0" 4422 + "@sentry/cli-linux-x64": "npm:2.39.0" 4423 + "@sentry/cli-win32-i686": "npm:2.39.0" 4424 + "@sentry/cli-win32-x64": "npm:2.39.0" 4805 4425 https-proxy-agent: "npm:^5.0.0" 4806 4426 node-fetch: "npm:^2.6.7" 4807 4427 progress: "npm:^2.0.3" ··· 4824 4444 optional: true 4825 4445 bin: 4826 4446 sentry-cli: bin/sentry-cli 4827 - checksum: 10c0/c23b820ec8a64b27ef40ef4d2c3621dfc36284e7952d7921954448cb8165fb37e546cfd31386359bca72888c98f91520226b1fa4392fb3b0b15c7f73e4ae4574 4447 + checksum: 10c0/ee861ee7553c5c1ffad916781205190921b3ccc93c401a1ddf81a2a2ef200ec7266920cb99a20e22be8bf9677dffb49bedc782c7b3b190dcf4a3b0a8690c0c47 4828 4448 languageName: node 4829 4449 linkType: hard 4830 4450 ··· 5056 4676 languageName: node 5057 4677 linkType: hard 5058 4678 5059 - "@sveltejs/kit@npm:^2.5.3, @sveltejs/kit@npm:^2.8.5": 5060 - version: 2.8.5 5061 - resolution: "@sveltejs/kit@npm:2.8.5" 4679 + "@sveltejs/kit@npm:^2.5.3": 4680 + version: 2.8.4 4681 + resolution: "@sveltejs/kit@npm:2.8.4" 5062 4682 dependencies: 5063 4683 "@types/cookie": "npm:^0.6.0" 5064 4684 cookie: "npm:^0.6.0" ··· 5078 4698 vite: ^5.0.3 5079 4699 bin: 5080 4700 svelte-kit: svelte-kit.js 5081 - checksum: 10c0/0c60b409f8a52ff37c22cfa61434afd51866e5359cc5625b6944704bcf6c6dcc0646680d68a6025dc144d215c2fc81862d19e29eeb5b11b9a10316da36401940 4701 + checksum: 10c0/f60cdb54e32cf94773c210515deada52f98d473b52f9046beb438fb04699a33cd02ef3b8f8180b6b03241844427bdece5c1caa35782e2f9300a93adccb9170f2 5082 4702 languageName: node 5083 4703 linkType: hard 5084 4704 5085 - "@sveltejs/vite-plugin-svelte-inspector@npm:^2.1.0": 5086 - version: 2.1.0 5087 - resolution: "@sveltejs/vite-plugin-svelte-inspector@npm:2.1.0" 4705 + "@sveltejs/kit@npm:^2.9.0": 4706 + version: 2.9.0 4707 + resolution: "@sveltejs/kit@npm:2.9.0" 5088 4708 dependencies: 5089 - debug: "npm:^4.3.4" 4709 + "@types/cookie": "npm:^0.6.0" 4710 + cookie: "npm:^0.6.0" 4711 + devalue: "npm:^5.1.0" 4712 + esm-env: "npm:^1.2.1" 4713 + import-meta-resolve: "npm:^4.1.0" 4714 + kleur: "npm:^4.1.5" 4715 + magic-string: "npm:^0.30.5" 4716 + mrmime: "npm:^2.0.0" 4717 + sade: "npm:^1.8.1" 4718 + set-cookie-parser: "npm:^2.6.0" 4719 + sirv: "npm:^3.0.0" 4720 + tiny-glob: "npm:^0.2.9" 5090 4721 peerDependencies: 5091 - "@sveltejs/vite-plugin-svelte": ^3.0.0 4722 + "@sveltejs/vite-plugin-svelte": ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 5092 4723 svelte: ^4.0.0 || ^5.0.0-next.0 5093 - vite: ^5.0.0 5094 - checksum: 10c0/da2d161691958bcb83d72634bd7d259fa07553af3cf71c2b9959feeccd6a9c58b08495cc5a936f6f0f5deb21aec4ad8b54ef8d9530510d2826548b4d19275b08 4724 + vite: ^5.0.3 || ^6.0.0 4725 + bin: 4726 + svelte-kit: svelte-kit.js 4727 + checksum: 10c0/40630b15534cb695869795533aab05fad8faff5334a25ca22e4e1bab46109d777ebee47a284e67ee1900ce2973fd5987ae5fa39dabe9a56d093b6b1460269ed7 5095 4728 languageName: node 5096 4729 linkType: hard 5097 4730 5098 - "@sveltejs/vite-plugin-svelte@npm:^3.0.2": 5099 - version: 3.1.1 5100 - resolution: "@sveltejs/vite-plugin-svelte@npm:3.1.1" 4731 + "@sveltejs/vite-plugin-svelte-inspector@npm:^2.1.0": 4732 + version: 2.1.0 4733 + resolution: "@sveltejs/vite-plugin-svelte-inspector@npm:2.1.0" 5101 4734 dependencies: 5102 - "@sveltejs/vite-plugin-svelte-inspector": "npm:^2.1.0" 5103 4735 debug: "npm:^4.3.4" 5104 - deepmerge: "npm:^4.3.1" 5105 - kleur: "npm:^4.1.5" 5106 - magic-string: "npm:^0.30.10" 5107 - svelte-hmr: "npm:^0.16.0" 5108 - vitefu: "npm:^0.2.5" 5109 4736 peerDependencies: 4737 + "@sveltejs/vite-plugin-svelte": ^3.0.0 5110 4738 svelte: ^4.0.0 || ^5.0.0-next.0 5111 4739 vite: ^5.0.0 5112 - checksum: 10c0/91f3c79f8fd72fb3faa5163f1c97c57a7b8925af1b63ff3645ad7b667b2249b6f3f4451688e118bef28a80a26b36345d6be7e8d71c0e5f1b811fd91b61661c89 4740 + checksum: 10c0/da2d161691958bcb83d72634bd7d259fa07553af3cf71c2b9959feeccd6a9c58b08495cc5a936f6f0f5deb21aec4ad8b54ef8d9530510d2826548b4d19275b08 5113 4741 languageName: node 5114 4742 linkType: hard 5115 4743 5116 - "@sveltejs/vite-plugin-svelte@npm:^3.1.2": 4744 + "@sveltejs/vite-plugin-svelte@npm:^3.0.2, @sveltejs/vite-plugin-svelte@npm:^3.1.2": 5117 4745 version: 3.1.2 5118 4746 resolution: "@sveltejs/vite-plugin-svelte@npm:3.1.2" 5119 4747 dependencies: ··· 5131 4759 languageName: node 5132 4760 linkType: hard 5133 4761 5134 - "@swc/core-darwin-arm64@npm:1.9.2": 5135 - version: 1.9.2 5136 - resolution: "@swc/core-darwin-arm64@npm:1.9.2" 4762 + "@swc/core-darwin-arm64@npm:1.9.3": 4763 + version: 1.9.3 4764 + resolution: "@swc/core-darwin-arm64@npm:1.9.3" 5137 4765 conditions: os=darwin & cpu=arm64 5138 4766 languageName: node 5139 4767 linkType: hard 5140 4768 5141 - "@swc/core-darwin-x64@npm:1.9.2": 5142 - version: 1.9.2 5143 - resolution: "@swc/core-darwin-x64@npm:1.9.2" 4769 + "@swc/core-darwin-x64@npm:1.9.3": 4770 + version: 1.9.3 4771 + resolution: "@swc/core-darwin-x64@npm:1.9.3" 5144 4772 conditions: os=darwin & cpu=x64 5145 4773 languageName: node 5146 4774 linkType: hard 5147 4775 5148 - "@swc/core-linux-arm-gnueabihf@npm:1.9.2": 5149 - version: 1.9.2 5150 - resolution: "@swc/core-linux-arm-gnueabihf@npm:1.9.2" 4776 + "@swc/core-linux-arm-gnueabihf@npm:1.9.3": 4777 + version: 1.9.3 4778 + resolution: "@swc/core-linux-arm-gnueabihf@npm:1.9.3" 5151 4779 conditions: os=linux & cpu=arm 5152 4780 languageName: node 5153 4781 linkType: hard 5154 4782 5155 - "@swc/core-linux-arm64-gnu@npm:1.9.2": 5156 - version: 1.9.2 5157 - resolution: "@swc/core-linux-arm64-gnu@npm:1.9.2" 4783 + "@swc/core-linux-arm64-gnu@npm:1.9.3": 4784 + version: 1.9.3 4785 + resolution: "@swc/core-linux-arm64-gnu@npm:1.9.3" 5158 4786 conditions: os=linux & cpu=arm64 & libc=glibc 5159 4787 languageName: node 5160 4788 linkType: hard 5161 4789 5162 - "@swc/core-linux-arm64-musl@npm:1.9.2": 5163 - version: 1.9.2 5164 - resolution: "@swc/core-linux-arm64-musl@npm:1.9.2" 4790 + "@swc/core-linux-arm64-musl@npm:1.9.3": 4791 + version: 1.9.3 4792 + resolution: "@swc/core-linux-arm64-musl@npm:1.9.3" 5165 4793 conditions: os=linux & cpu=arm64 & libc=musl 5166 4794 languageName: node 5167 4795 linkType: hard 5168 4796 5169 - "@swc/core-linux-x64-gnu@npm:1.9.2": 5170 - version: 1.9.2 5171 - resolution: "@swc/core-linux-x64-gnu@npm:1.9.2" 4797 + "@swc/core-linux-x64-gnu@npm:1.9.3": 4798 + version: 1.9.3 4799 + resolution: "@swc/core-linux-x64-gnu@npm:1.9.3" 5172 4800 conditions: os=linux & cpu=x64 & libc=glibc 5173 4801 languageName: node 5174 4802 linkType: hard 5175 4803 5176 - "@swc/core-linux-x64-musl@npm:1.9.2": 5177 - version: 1.9.2 5178 - resolution: "@swc/core-linux-x64-musl@npm:1.9.2" 4804 + "@swc/core-linux-x64-musl@npm:1.9.3": 4805 + version: 1.9.3 4806 + resolution: "@swc/core-linux-x64-musl@npm:1.9.3" 5179 4807 conditions: os=linux & cpu=x64 & libc=musl 5180 4808 languageName: node 5181 4809 linkType: hard 5182 4810 5183 - "@swc/core-win32-arm64-msvc@npm:1.9.2": 5184 - version: 1.9.2 5185 - resolution: "@swc/core-win32-arm64-msvc@npm:1.9.2" 4811 + "@swc/core-win32-arm64-msvc@npm:1.9.3": 4812 + version: 1.9.3 4813 + resolution: "@swc/core-win32-arm64-msvc@npm:1.9.3" 5186 4814 conditions: os=win32 & cpu=arm64 5187 4815 languageName: node 5188 4816 linkType: hard 5189 4817 5190 - "@swc/core-win32-ia32-msvc@npm:1.9.2": 5191 - version: 1.9.2 5192 - resolution: "@swc/core-win32-ia32-msvc@npm:1.9.2" 4818 + "@swc/core-win32-ia32-msvc@npm:1.9.3": 4819 + version: 1.9.3 4820 + resolution: "@swc/core-win32-ia32-msvc@npm:1.9.3" 5193 4821 conditions: os=win32 & cpu=ia32 5194 4822 languageName: node 5195 4823 linkType: hard 5196 4824 5197 - "@swc/core-win32-x64-msvc@npm:1.9.2": 5198 - version: 1.9.2 5199 - resolution: "@swc/core-win32-x64-msvc@npm:1.9.2" 4825 + "@swc/core-win32-x64-msvc@npm:1.9.3": 4826 + version: 1.9.3 4827 + resolution: "@swc/core-win32-x64-msvc@npm:1.9.3" 5200 4828 conditions: os=win32 & cpu=x64 5201 4829 languageName: node 5202 4830 linkType: hard 5203 4831 5204 4832 "@swc/core@npm:^1.9.2": 5205 - version: 1.9.2 5206 - resolution: "@swc/core@npm:1.9.2" 4833 + version: 1.9.3 4834 + resolution: "@swc/core@npm:1.9.3" 5207 4835 dependencies: 5208 - "@swc/core-darwin-arm64": "npm:1.9.2" 5209 - "@swc/core-darwin-x64": "npm:1.9.2" 5210 - "@swc/core-linux-arm-gnueabihf": "npm:1.9.2" 5211 - "@swc/core-linux-arm64-gnu": "npm:1.9.2" 5212 - "@swc/core-linux-arm64-musl": "npm:1.9.2" 5213 - "@swc/core-linux-x64-gnu": "npm:1.9.2" 5214 - "@swc/core-linux-x64-musl": "npm:1.9.2" 5215 - "@swc/core-win32-arm64-msvc": "npm:1.9.2" 5216 - "@swc/core-win32-ia32-msvc": "npm:1.9.2" 5217 - "@swc/core-win32-x64-msvc": "npm:1.9.2" 4836 + "@swc/core-darwin-arm64": "npm:1.9.3" 4837 + "@swc/core-darwin-x64": "npm:1.9.3" 4838 + "@swc/core-linux-arm-gnueabihf": "npm:1.9.3" 4839 + "@swc/core-linux-arm64-gnu": "npm:1.9.3" 4840 + "@swc/core-linux-arm64-musl": "npm:1.9.3" 4841 + "@swc/core-linux-x64-gnu": "npm:1.9.3" 4842 + "@swc/core-linux-x64-musl": "npm:1.9.3" 4843 + "@swc/core-win32-arm64-msvc": "npm:1.9.3" 4844 + "@swc/core-win32-ia32-msvc": "npm:1.9.3" 4845 + "@swc/core-win32-x64-msvc": "npm:1.9.3" 5218 4846 "@swc/counter": "npm:^0.1.3" 5219 - "@swc/types": "npm:^0.1.15" 4847 + "@swc/types": "npm:^0.1.17" 5220 4848 peerDependencies: 5221 4849 "@swc/helpers": "*" 5222 4850 dependenciesMeta: ··· 5243 4871 peerDependenciesMeta: 5244 4872 "@swc/helpers": 5245 4873 optional: true 5246 - checksum: 10c0/697e601fa1246367ca67e87e87c45f6341373ae98d8d24c9586c4069660c73f8675bf94b86cf218308395eda8e355ae076fc8c9c8f7aaa50898c228db38b637d 4874 + checksum: 10c0/a9507a5be580518d51cf7f41821a89e1044be6f72930efbdf3877366c27e9ff1dbca3e1a7f18698679f8c345b6698f43cd80d7dfa24ba30dcab493de9b7a336e 5247 4875 languageName: node 5248 4876 linkType: hard 5249 4877 ··· 5263 4891 languageName: node 5264 4892 linkType: hard 5265 4893 5266 - "@swc/types@npm:^0.1.15": 5267 - version: 0.1.15 5268 - resolution: "@swc/types@npm:0.1.15" 4894 + "@swc/types@npm:^0.1.17": 4895 + version: 0.1.17 4896 + resolution: "@swc/types@npm:0.1.17" 5269 4897 dependencies: 5270 4898 "@swc/counter": "npm:^0.1.3" 5271 - checksum: 10c0/82bcfa64e53c6c93ae162fe9e491e5f300227fad6f110e32d9718e5a0e29586bc79c516234f6eccbe5ccd7ed72b514a21f03196a54408cf1b7b47c072fad44f0 4899 + checksum: 10c0/29f5c8933a16042956f1adb7383e836ed7646cbf679826e78b53fdd0c08e8572cb42152e527b6b530a9bd1052d33d0972f90f589761ccd252c12652c9b7a72fc 5272 4900 languageName: node 5273 4901 linkType: hard 5274 4902 5275 4903 "@swc/wasm@npm:^1.9.2": 5276 - version: 1.9.2 5277 - resolution: "@swc/wasm@npm:1.9.2" 5278 - checksum: 10c0/9ee155c2334424a8397d72a88b4f5d193b46a2ff5a5986a89476d900da8eff60123ab31e1acc215d83e2ad0ff441733b0bfbec3c4a6954ac7761fa68a3326862 4904 + version: 1.9.3 4905 + resolution: "@swc/wasm@npm:1.9.3" 4906 + checksum: 10c0/a89be01281959fc7b6150a91857a46b305193e3c682be45be2bf5e67cf45ad0f285b3269455b12799fb5fc27a749420718da7a2c6e59091a1e6d83b20f7ea834 5279 4907 languageName: node 5280 4908 linkType: hard 5281 4909 ··· 5837 5465 languageName: node 5838 5466 linkType: hard 5839 5467 5840 - "@types/estree@npm:*, @types/estree@npm:1.0.5, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.1": 5841 - version: 1.0.5 5842 - resolution: "@types/estree@npm:1.0.5" 5843 - checksum: 10c0/b3b0e334288ddb407c7b3357ca67dbee75ee22db242ca7c56fe27db4e1a31989cb8af48a84dd401deb787fe10cc6b2ab1ee82dc4783be87ededbe3d53c79c70d 5844 - languageName: node 5845 - linkType: hard 5846 - 5847 - "@types/estree@npm:1.0.6, @types/estree@npm:^1.0.5, @types/estree@npm:^1.0.6": 5468 + "@types/estree@npm:*, @types/estree@npm:1.0.6, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.1, @types/estree@npm:^1.0.5, @types/estree@npm:^1.0.6": 5848 5469 version: 1.0.6 5849 5470 resolution: "@types/estree@npm:1.0.6" 5850 5471 checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a ··· 6107 5728 languageName: node 6108 5729 linkType: hard 6109 5730 6110 - "@types/lodash@npm:*": 6111 - version: 4.17.7 6112 - resolution: "@types/lodash@npm:4.17.7" 6113 - checksum: 10c0/40c965b5ffdcf7ff5c9105307ee08b782da228c01b5c0529122c554c64f6b7168fc8f11dc79aa7bae4e67e17efafaba685dc3a47e294dbf52a65ed2b67100561 6114 - languageName: node 6115 - linkType: hard 6116 - 6117 - "@types/lodash@npm:^4.17.13": 5731 + "@types/lodash@npm:*, @types/lodash@npm:^4.17.13": 6118 5732 version: 4.17.13 6119 5733 resolution: "@types/lodash@npm:4.17.13" 6120 5734 checksum: 10c0/c3d0b7efe7933ac0369b99f2f7bff9240d960680fdb74b41ed4bd1b3ca60cca1e31fe4046d9abbde778f941a41bc2a75eb629abf8659fa6c27b66efbbb0802a9 ··· 6201 5815 languageName: node 6202 5816 linkType: hard 6203 5817 6204 - "@types/node@npm:*": 6205 - version: 22.0.0 6206 - resolution: "@types/node@npm:22.0.0" 6207 - dependencies: 6208 - undici-types: "npm:~6.11.1" 6209 - checksum: 10c0/af26a8ec7266c857b0ced75dc3a93c6b65280d1fa40d1b4488c814d30831c5c752489c99ecb5698daec1376145b1a9ddd08350882dc2e07769917a5f22a460bc 6210 - languageName: node 6211 - linkType: hard 6212 - 6213 - "@types/node@npm:>=13.7.0, @types/node@npm:^22.0.1": 5818 + "@types/node@npm:*, @types/node@npm:>=13.7.0, @types/node@npm:^22.0.1": 6214 5819 version: 22.7.5 6215 5820 resolution: "@types/node@npm:22.7.5" 6216 5821 dependencies: ··· 6305 5910 languageName: node 6306 5911 linkType: hard 6307 5912 6308 - "@types/passport@npm:*": 6309 - version: 1.0.16 6310 - resolution: "@types/passport@npm:1.0.16" 6311 - dependencies: 6312 - "@types/express": "npm:*" 6313 - checksum: 10c0/7120c1186c8c67e3818683b5b6a4439d102f67da93cc1c7d8f32484f7bf10e8438dd5de0bf571910b23d06caa43dd1ad501933b48618bfaf54e63219500993fe 6314 - languageName: node 6315 - linkType: hard 6316 - 6317 - "@types/passport@npm:^1.0.17": 5913 + "@types/passport@npm:*, @types/passport@npm:^1.0.17": 6318 5914 version: 1.0.17 6319 5915 resolution: "@types/passport@npm:1.0.17" 6320 5916 dependencies: ··· 6554 6150 languageName: node 6555 6151 linkType: hard 6556 6152 6153 + "@types/trusted-types@npm:^2.0.7": 6154 + version: 2.0.7 6155 + resolution: "@types/trusted-types@npm:2.0.7" 6156 + checksum: 10c0/4c4855f10de7c6c135e0d32ce462419d8abbbc33713b31d294596c0cc34ae1fa6112a2f9da729c8f7a20707782b0d69da3b1f8df6645b0366d08825ca1522e0c 6157 + languageName: node 6158 + linkType: hard 6159 + 6557 6160 "@types/ua-parser-js@npm:^0.7.39": 6558 6161 version: 0.7.39 6559 6162 resolution: "@types/ua-parser-js@npm:0.7.39" ··· 6760 6363 languageName: node 6761 6364 linkType: hard 6762 6365 6366 + "@whatwg-node/disposablestack@npm:^0.0.5": 6367 + version: 0.0.5 6368 + resolution: "@whatwg-node/disposablestack@npm:0.0.5" 6369 + dependencies: 6370 + tslib: "npm:^2.6.3" 6371 + checksum: 10c0/dfa949223f348a51acdeca2e3f08393ec8816a2ac2cee754a129e9b2ee4ada3afc1b3dcfbec7bdfe5abe14b30627ef0cef89d01a00062a031c82d555c43ab7f9 6372 + languageName: node 6373 + linkType: hard 6374 + 6763 6375 "@whatwg-node/events@npm:0.0.2": 6764 6376 version: 0.0.2 6765 6377 resolution: "@whatwg-node/events@npm:0.0.2" ··· 6806 6418 languageName: node 6807 6419 linkType: hard 6808 6420 6809 - "@whatwg-node/fetch@npm:^0.9.19, @whatwg-node/fetch@npm:^0.9.7": 6421 + "@whatwg-node/fetch@npm:^0.9.7": 6810 6422 version: 0.9.19 6811 6423 resolution: "@whatwg-node/fetch@npm:0.9.19" 6812 6424 dependencies: ··· 6842 6454 linkType: hard 6843 6455 6844 6456 "@whatwg-node/node-fetch@npm:^0.7.1": 6845 - version: 0.7.3 6846 - resolution: "@whatwg-node/node-fetch@npm:0.7.3" 6457 + version: 0.7.4 6458 + resolution: "@whatwg-node/node-fetch@npm:0.7.4" 6847 6459 dependencies: 6848 6460 "@kamilkisiela/fast-url-parser": "npm:^1.1.4" 6461 + "@whatwg-node/disposablestack": "npm:^0.0.5" 6849 6462 busboy: "npm:^1.6.0" 6850 6463 fast-querystring: "npm:^1.1.1" 6851 6464 tslib: "npm:^2.6.3" 6852 - checksum: 10c0/ab28315e5f1397cc53f1812f0b37a6e9f26f38c198a2edb1fbf4e4d3fda07c6447bef401c1e06a6b62f6d0255d2793b8b9ad3b2aba056480dcb1b14895538c42 6465 + checksum: 10c0/2ac3fa2bf2534eab6bf33fa511f67e760eb3d190e04970fe7a92bf2f1dfee0ad4ee337ec87d73b51e7b7bdaed8a29b7a19e445e964493693c5bfa06c91ed6479 6853 6466 languageName: node 6854 6467 linkType: hard 6855 6468 ··· 6863 6476 languageName: node 6864 6477 linkType: hard 6865 6478 6866 - "@whatwg-node/server@npm:^0.9.1, @whatwg-node/server@npm:^0.9.14": 6867 - version: 0.9.45 6868 - resolution: "@whatwg-node/server@npm:0.9.45" 6479 + "@whatwg-node/server@npm:^0.9.1, @whatwg-node/server@npm:^0.9.14, @whatwg-node/server@npm:^0.9.60": 6480 + version: 0.9.60 6481 + resolution: "@whatwg-node/server@npm:0.9.60" 6869 6482 dependencies: 6870 - "@whatwg-node/fetch": "npm:^0.9.19" 6871 - tslib: "npm:^2.6.3" 6872 - checksum: 10c0/73426c01a1c7bdada28037bf7deb34aa086bfd79735e397337854f9ed27994b4463ed7b60feed7d09abf32bd783433c368d1d709c1d7922a17e1fb9ba9bc9926 6873 - languageName: node 6874 - linkType: hard 6875 - 6876 - "@whatwg-node/server@npm:^0.9.55": 6877 - version: 0.9.56 6878 - resolution: "@whatwg-node/server@npm:0.9.56" 6879 - dependencies: 6483 + "@whatwg-node/disposablestack": "npm:^0.0.5" 6880 6484 "@whatwg-node/fetch": "npm:^0.10.0" 6881 6485 tslib: "npm:^2.6.3" 6882 - checksum: 10c0/3de6bea3ef5821a3543f23ea487cedd2c919c84187c9737f3f69bb239db80c8e98553f02d744834242fb1f88dde47a527889d6f37ccba5e8d01297593afa9cd6 6486 + checksum: 10c0/455bded356d3d442ec74881d1d5470653fb0b3c0207b6c4fddb9ca2d912587be1c5e790412b4084de7d83347bd771a3f72f274542346b1c537e874abd4162fab 6883 6487 languageName: node 6884 6488 linkType: hard 6885 6489 ··· 7010 6614 languageName: node 7011 6615 linkType: hard 7012 6616 6617 + "acorn@npm:^8.14.0": 6618 + version: 8.14.0 6619 + resolution: "acorn@npm:8.14.0" 6620 + bin: 6621 + acorn: bin/acorn 6622 + checksum: 10c0/6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7 6623 + languageName: node 6624 + linkType: hard 6625 + 7013 6626 "adm-zip@npm:^0.5.9": 7014 6627 version: 0.5.14 7015 6628 resolution: "adm-zip@npm:0.5.14" ··· 7342 6955 languageName: node 7343 6956 linkType: hard 7344 6957 7345 - "aria-query@npm:^5.3.0": 7346 - version: 5.3.0 7347 - resolution: "aria-query@npm:5.3.0" 7348 - dependencies: 7349 - dequal: "npm:^2.0.3" 7350 - checksum: 10c0/2bff0d4eba5852a9dd578ecf47eaef0e82cc52569b48469b0aac2db5145db0b17b7a58d9e01237706d1e14b7a1b0ac9b78e9c97027ad97679dd8f91b85da1469 7351 - languageName: node 7352 - linkType: hard 7353 - 7354 - "aria-query@npm:^5.3.1": 6958 + "aria-query@npm:^5.3.0, aria-query@npm:^5.3.1": 7355 6959 version: 5.3.2 7356 6960 resolution: "aria-query@npm:5.3.2" 7357 6961 checksum: 10c0/003c7e3e2cff5540bf7a7893775fc614de82b0c5dde8ae823d47b7a28a9d4da1f7ed85f340bdb93d5649caa927755f0e31ecc7ab63edfdfc00c8ef07e505e03e ··· 7485 7089 languageName: node 7486 7090 linkType: hard 7487 7091 7488 - "axios@npm:1.7.4": 7092 + "axios@npm:1.7.4, axios@npm:^1.6.0": 7489 7093 version: 1.7.4 7490 7094 resolution: "axios@npm:1.7.4" 7491 7095 dependencies: ··· 7496 7100 languageName: node 7497 7101 linkType: hard 7498 7102 7499 - "axios@npm:^1.6.0": 7500 - version: 1.7.2 7501 - resolution: "axios@npm:1.7.2" 7502 - dependencies: 7503 - follow-redirects: "npm:^1.15.6" 7504 - form-data: "npm:^4.0.0" 7505 - proxy-from-env: "npm:^1.1.0" 7506 - checksum: 10c0/cbd47ce380fe045313364e740bb03b936420b8b5558c7ea36a4563db1258c658f05e40feb5ddd41f6633fdd96d37ac2a76f884dad599c5b0224b4c451b3fa7ae 7507 - languageName: node 7508 - linkType: hard 7509 - 7510 7103 "axobject-query@npm:^4.0.0, axobject-query@npm:^4.1.0": 7511 7104 version: 4.1.0 7512 7105 resolution: "axobject-query@npm:4.1.0" ··· 7645 7238 languageName: node 7646 7239 linkType: hard 7647 7240 7648 - "bits-ui@npm:^0.21.16": 7241 + "bits-ui@npm:^0.21.16, bits-ui@npm:^0.21.7": 7649 7242 version: 0.21.16 7650 7243 resolution: "bits-ui@npm:0.21.16" 7651 7244 dependencies: ··· 7658 7251 languageName: node 7659 7252 linkType: hard 7660 7253 7661 - "bits-ui@npm:^0.21.7": 7662 - version: 0.21.13 7663 - resolution: "bits-ui@npm:0.21.13" 7664 - dependencies: 7665 - "@internationalized/date": "npm:^3.5.1" 7666 - "@melt-ui/svelte": "npm:0.76.2" 7667 - nanoid: "npm:^5.0.5" 7668 - peerDependencies: 7669 - svelte: ^4.0.0 || ^5.0.0-next.118 7670 - checksum: 10c0/c5038f2fb7fb414f0feb7c56654777a28e4335024b4149c789397b584daa6e2982ad124ed8c6bed0f142c1f3b94ffc949add5bc4c3459a0a4d9a504de761abca 7671 - languageName: node 7672 - linkType: hard 7673 - 7674 7254 "bl@npm:^4.0.3, bl@npm:^4.1.0": 7675 7255 version: 4.1.0 7676 7256 resolution: "bl@npm:4.1.0" ··· 7723 7303 languageName: node 7724 7304 linkType: hard 7725 7305 7726 - "body-parser@npm:1.20.2": 7727 - version: 1.20.2 7728 - resolution: "body-parser@npm:1.20.2" 7729 - dependencies: 7730 - bytes: "npm:3.1.2" 7731 - content-type: "npm:~1.0.5" 7732 - debug: "npm:2.6.9" 7733 - depd: "npm:2.0.0" 7734 - destroy: "npm:1.2.0" 7735 - http-errors: "npm:2.0.0" 7736 - iconv-lite: "npm:0.4.24" 7737 - on-finished: "npm:2.4.1" 7738 - qs: "npm:6.11.0" 7739 - raw-body: "npm:2.5.2" 7740 - type-is: "npm:~1.6.18" 7741 - unpipe: "npm:1.0.0" 7742 - checksum: 10c0/06f1438fff388a2e2354c96aa3ea8147b79bfcb1262dfcc2aae68ec13723d01d5781680657b74e9f83c808266d5baf52804032fbde2b7382b89bd8cdb273ace9 7743 - languageName: node 7744 - linkType: hard 7745 - 7746 7306 "body-parser@npm:1.20.3": 7747 7307 version: 1.20.3 7748 7308 resolution: "body-parser@npm:1.20.3" ··· 7827 7387 dependencies: 7828 7388 base64-js: "npm:^1.1.2" 7829 7389 checksum: 10c0/9d24e24f8b7eabf44af034ed5f7d5530008b835f09a107a84ac060723e86dd43c6aa68958691fe5df524f59473b35f5ce2e0854aa1152c0a254d1010f51bcf22 7830 - languageName: node 7831 - linkType: hard 7832 - 7833 - "browserslist@npm:^4.23.1": 7834 - version: 4.23.2 7835 - resolution: "browserslist@npm:4.23.2" 7836 - dependencies: 7837 - caniuse-lite: "npm:^1.0.30001640" 7838 - electron-to-chromium: "npm:^1.4.820" 7839 - node-releases: "npm:^2.0.14" 7840 - update-browserslist-db: "npm:^1.1.0" 7841 - bin: 7842 - browserslist: cli.js 7843 - checksum: 10c0/0217d23c69ed61cdd2530c7019bf7c822cd74c51f8baab18dd62457fed3129f52499f8d3a6f809ae1fb7bb3050aa70caa9a529cc36c7478427966dbf429723a5 7844 7390 languageName: node 7845 7391 linkType: hard 7846 7392 ··· 8107 7653 languageName: node 8108 7654 linkType: hard 8109 7655 8110 - "call-me-maybe@npm:^1.0.1": 8111 - version: 1.0.2 8112 - resolution: "call-me-maybe@npm:1.0.2" 8113 - checksum: 10c0/8eff5dbb61141ebb236ed71b4e9549e488bcb5451c48c11e5667d5c75b0532303788a1101e6978cafa2d0c8c1a727805599c2741e3e0982855c9f1d78cd06c9f 8114 - languageName: node 8115 - linkType: hard 8116 - 8117 7656 "callsites@npm:^3.0.0": 8118 7657 version: 3.1.0 8119 7658 resolution: "callsites@npm:3.1.0" ··· 8145 7684 languageName: node 8146 7685 linkType: hard 8147 7686 8148 - "caniuse-lite@npm:^1.0.30001640": 8149 - version: 1.0.30001643 8150 - resolution: "caniuse-lite@npm:1.0.30001643" 8151 - checksum: 10c0/7fcd0fd180bbe6764311ad57b0d39c23afdcc3bb1d8f804e7a76752c62a85b1bb7cf74b672d9da2f0afe7ad75336ff811a6fe279eb2a54bc04c272b6b62e57f1 8152 - languageName: node 8153 - linkType: hard 8154 - 8155 7687 "caniuse-lite@npm:^1.0.30001669": 8156 - version: 1.0.30001680 8157 - resolution: "caniuse-lite@npm:1.0.30001680" 8158 - checksum: 10c0/11a4e7f6f5d5f965cfd4b7dc4aef34e12a26e99647f02b5ac9fd7f7670845473b95ada416a785473237e4b1b67281f7b043c8736c85b77097f6b697e8950b15f 7688 + version: 1.0.30001684 7689 + resolution: "caniuse-lite@npm:1.0.30001684" 7690 + checksum: 10c0/446485ca3d9caf408a339a44636a86a2b119ec247492393ae661cd93dccd6668401dd2dfec1e149be4e44563cd1e23351b44453a52fa2c2f19e2bf3287c865f6 8159 7691 languageName: node 8160 7692 linkType: hard 8161 7693 ··· 8195 7727 languageName: node 8196 7728 linkType: hard 8197 7729 8198 - "chalk@npm:^2.1.0, chalk@npm:^2.3.2, chalk@npm:^2.4.2": 7730 + "chalk@npm:^2.1.0, chalk@npm:^2.3.2": 8199 7731 version: 2.4.2 8200 7732 resolution: "chalk@npm:2.4.2" 8201 7733 dependencies: ··· 8315 7847 languageName: node 8316 7848 linkType: hard 8317 7849 8318 - "chokidar@npm:^3.0.0, chokidar@npm:^3.5.2, chokidar@npm:^3.5.3, chokidar@npm:^3.6.0": 7850 + "chokidar@npm:^3.0.0, chokidar@npm:^3.5.2, chokidar@npm:^3.5.3": 8319 7851 version: 3.6.0 8320 7852 resolution: "chokidar@npm:3.6.0" 8321 7853 dependencies: ··· 8371 7903 "@typescript-eslint/eslint-plugin": "npm:^8.16.0" 8372 7904 "@typescript-eslint/parser": "npm:^8.16.0" 8373 7905 changesets-gitlab: "npm:^0.12.1" 7906 + chokidar: "npm:^4.0.1" 7907 + concurrently: "npm:^9.0.1" 8374 7908 dotenv-cli: "npm:^7.4.4" 8375 7909 dotenv-parser-serializer: "patch:dotenv-parser-serializer@npm%3A1.0.2#~/.yarn/patches/dotenv-parser-serializer-npm-1.0.2-e32bb8ac9d.patch" 8376 7910 eslint: "npm:^8.57.1" 8377 7911 eslint-config-prettier: "npm:^9.1.0" 8378 7912 eslint-plugin-svelte: "npm:^2.46.0" 8379 7913 eslint-plugin-unicorn: "npm:^56.0.1" 7914 + execa: "npm:^9.4.1" 8380 7915 husky: "npm:^9.1.7" 8381 7916 kleur: "npm:^4.1.5" 8382 7917 lint-staged: "npm:^15.2.10" ··· 8387 7922 prettier-plugin-jsdoc: "npm:^1.3.0" 8388 7923 prettier-plugin-organize-imports: "npm:^4.1.0" 8389 7924 prettier-plugin-svelte: "npm:^3.3.2" 8390 - stylelint: "npm:^16.10.0" 7925 + stylelint: "npm:^16.11.0" 8391 7926 stylelint-config-html: "npm:^1.1.0" 8392 7927 stylelint-config-prettier: "npm:^9.0.5" 8393 7928 stylelint-config-recess-order: "npm:^5.1.1" ··· 8868 8403 languageName: node 8869 8404 linkType: hard 8870 8405 8406 + "concurrently@npm:^9.0.1": 8407 + version: 9.0.1 8408 + resolution: "concurrently@npm:9.0.1" 8409 + dependencies: 8410 + chalk: "npm:^4.1.2" 8411 + lodash: "npm:^4.17.21" 8412 + rxjs: "npm:^7.8.1" 8413 + shell-quote: "npm:^1.8.1" 8414 + supports-color: "npm:^8.1.1" 8415 + tree-kill: "npm:^1.2.2" 8416 + yargs: "npm:^17.7.2" 8417 + bin: 8418 + conc: dist/bin/concurrently.js 8419 + concurrently: dist/bin/concurrently.js 8420 + checksum: 10c0/e2c3d3f3d1b1457ccd27e69f0d840ba4915d571fae4e1088498234ec1174fd547c127de0df6dbe5eb71b2df973b26a6fdc931a9e7e3658f25287ef2106bdb413 8421 + languageName: node 8422 + linkType: hard 8423 + 8871 8424 "conf@npm:^10.2.0": 8872 8425 version: 10.2.0 8873 8426 resolution: "conf@npm:10.2.0" ··· 8890 8443 version: 0.1.7 8891 8444 resolution: "confbox@npm:0.1.7" 8892 8445 checksum: 10c0/18b40c2f652196a833f3f1a5db2326a8a579cd14eacabfe637e4fc8cb9b68d7cf296139a38c5e7c688ce5041bf46f9adce05932d43fde44cf7e012840b5da111 8446 + languageName: node 8447 + linkType: hard 8448 + 8449 + "confbox@npm:^0.1.8": 8450 + version: 0.1.8 8451 + resolution: "confbox@npm:0.1.8" 8452 + checksum: 10c0/fc2c68d97cb54d885b10b63e45bd8da83a8a71459d3ecf1825143dd4c7f9f1b696b3283e07d9d12a144c1301c2ebc7842380bdf0014e55acc4ae1c9550102418 8893 8453 languageName: node 8894 8454 linkType: hard 8895 8455 ··· 9033 8593 languageName: node 9034 8594 linkType: hard 9035 8595 9036 - "cookie@npm:0.6.0, cookie@npm:^0.6.0": 9037 - version: 0.6.0 9038 - resolution: "cookie@npm:0.6.0" 9039 - checksum: 10c0/f2318b31af7a31b4ddb4a678d024514df5e705f9be5909a192d7f116cfb6d45cbacf96a473fa733faa95050e7cff26e7832bb3ef94751592f1387b71c8956686 9040 - languageName: node 9041 - linkType: hard 9042 - 9043 8596 "cookie@npm:0.7.1": 9044 8597 version: 0.7.1 9045 8598 resolution: "cookie@npm:0.7.1" ··· 9054 8607 languageName: node 9055 8608 linkType: hard 9056 8609 8610 + "cookie@npm:^0.6.0": 8611 + version: 0.6.0 8612 + resolution: "cookie@npm:0.6.0" 8613 + checksum: 10c0/f2318b31af7a31b4ddb4a678d024514df5e705f9be5909a192d7f116cfb6d45cbacf96a473fa733faa95050e7cff26e7832bb3ef94751592f1387b71c8956686 8614 + languageName: node 8615 + linkType: hard 8616 + 9057 8617 "cookie@npm:^1.0.1": 9058 - version: 1.0.1 9059 - resolution: "cookie@npm:1.0.1" 9060 - checksum: 10c0/80afdcad7fe9cab7a0ea1802629f6f4cf9ff957e9489daa7a813e3ac4ca842b0e5ab3f8e6a6ddc1f3f5c771b81c229afd6f0f3c083025d68c48d214ea8fb1097 8618 + version: 1.0.2 8619 + resolution: "cookie@npm:1.0.2" 8620 + checksum: 10c0/fd25fe79e8fbcfcaf6aa61cd081c55d144eeeba755206c058682257cb38c4bd6795c6620de3f064c740695bb65b7949ebb1db7a95e4636efb8357a335ad3f54b 9061 8621 languageName: node 9062 8622 linkType: hard 9063 8623 ··· 9219 8779 languageName: node 9220 8780 linkType: hard 9221 8781 9222 - "cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": 9223 - version: 7.0.3 9224 - resolution: "cross-spawn@npm:7.0.3" 9225 - dependencies: 9226 - path-key: "npm:^3.1.0" 9227 - shebang-command: "npm:^2.0.0" 9228 - which: "npm:^2.0.1" 9229 - checksum: 10c0/5738c312387081c98d69c98e105b6327b069197f864a60593245d64c8089c8a0a744e16349281210d56835bb9274130d825a78b2ad6853ca13cfbeffc0c31750 9230 - languageName: node 9231 - linkType: hard 9232 - 9233 - "cross-spawn@npm:^7.0.5, cross-spawn@npm:^7.0.6": 8782 + "cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3, cross-spawn@npm:^7.0.5, cross-spawn@npm:^7.0.6": 9234 8783 version: 7.0.6 9235 8784 resolution: "cross-spawn@npm:7.0.6" 9236 8785 dependencies: ··· 9285 8834 languageName: node 9286 8835 linkType: hard 9287 8836 9288 - "css-tree@npm:^3.0.0": 8837 + "css-tree@npm:^3.0.1": 9289 8838 version: 3.0.1 9290 8839 resolution: "css-tree@npm:3.0.1" 9291 8840 dependencies: ··· 9774 9323 languageName: node 9775 9324 linkType: hard 9776 9325 9777 - "debug@npm:4, debug@npm:^4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:~4.3.6": 9778 - version: 4.3.6 9779 - resolution: "debug@npm:4.3.6" 9780 - dependencies: 9781 - ms: "npm:2.1.2" 9782 - peerDependenciesMeta: 9783 - supports-color: 9784 - optional: true 9785 - checksum: 10c0/3293416bff072389c101697d4611c402a6bacd1900ac20c0492f61a9cdd6b3b29750fc7f5e299f8058469ef60ff8fb79b86395a30374fbd2490113c1c7112285 9786 - languageName: node 9787 - linkType: hard 9788 - 9789 - "debug@npm:^4.3.3, debug@npm:^4.3.7, debug@npm:~4.3.7": 9326 + "debug@npm:4, debug@npm:^4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:^4.3.7, debug@npm:~4.3.6, debug@npm:~4.3.7": 9790 9327 version: 4.3.7 9791 9328 resolution: "debug@npm:4.3.7" 9792 9329 dependencies: ··· 10180 9717 languageName: node 10181 9718 linkType: hard 10182 9719 10183 - "dompurify@npm:^3.2.0": 10184 - version: 3.2.0 10185 - resolution: "dompurify@npm:3.2.0" 10186 - checksum: 10c0/c06af011b14b415439acb5ea5d32c1971e3f1888983e1430e8aeb1ae3871709aab3dc510cfe5ceccfc459e839f66e37e40836eda0673feb696b84d8b285e69f3 9720 + "dompurify@npm:^3.2.1": 9721 + version: 3.2.1 9722 + resolution: "dompurify@npm:3.2.1" 9723 + dependencies: 9724 + "@types/trusted-types": "npm:^2.0.7" 9725 + dependenciesMeta: 9726 + "@types/trusted-types": 9727 + optional: true 9728 + checksum: 10c0/c40c441813071ebdc06f843dce6f22109d30f14525e710c8b117ef54430358617d4e7910a26fc09b387aa5890d1f510b242b605b0282ed1fb7a4d5104c75e223 10187 9729 languageName: node 10188 9730 linkType: hard 10189 9731 ··· 10352 9894 languageName: node 10353 9895 linkType: hard 10354 9896 10355 - "electron-to-chromium@npm:^1.4.820": 10356 - version: 1.5.2 10357 - resolution: "electron-to-chromium@npm:1.5.2" 10358 - checksum: 10c0/5de3edc46087d90c0621597e6427d0711443a7aeeced3348a91ab56c9aebd0f7ed7b44c99379ff0295fa1f1a5ffba32225e7f28dfed997d88eaf2fe61c9e30d7 10359 - languageName: node 10360 - linkType: hard 10361 - 10362 9897 "electron-to-chromium@npm:^1.5.41": 10363 - version: 1.5.63 10364 - resolution: "electron-to-chromium@npm:1.5.63" 10365 - checksum: 10c0/fe1b175805309b04e5a2242c3168f22543e5369aed01fceedfe0f0eafe3931e8609d8a140e527394b314cfe64d581913aba6f1d3c72c23069c7d8241e5dfa4ef 9898 + version: 1.5.65 9899 + resolution: "electron-to-chromium@npm:1.5.65" 9900 + checksum: 10c0/4d2db76ca63d34aad9d5392d850a89fecb4d740a3f0e3ab945f23850ed99789df4e09dd36a28cedcf3b4757dd7c82d5d159bfdf1d29f815d172a9132b4ba3bb9 10366 9901 languageName: node 10367 9902 linkType: hard 10368 9903 ··· 10678 10213 languageName: node 10679 10214 linkType: hard 10680 10215 10681 - "escalade@npm:^3.1.1, escalade@npm:^3.1.2": 10682 - version: 3.1.2 10683 - resolution: "escalade@npm:3.1.2" 10684 - checksum: 10c0/6b4adafecd0682f3aa1cd1106b8fff30e492c7015b178bc81b2d2f75106dabea6c6d6e8508fc491bd58e597c74abb0e8e2368f943ecb9393d4162e3c2f3cf287 10685 - languageName: node 10686 - linkType: hard 10687 - 10688 - "escalade@npm:^3.2.0": 10216 + "escalade@npm:^3.1.1, escalade@npm:^3.2.0": 10689 10217 version: 3.2.0 10690 10218 resolution: "escalade@npm:3.2.0" 10691 10219 checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65 ··· 10757 10285 linkType: hard 10758 10286 10759 10287 "eslint-plugin-svelte@npm:^2.46.0": 10760 - version: 2.46.0 10761 - resolution: "eslint-plugin-svelte@npm:2.46.0" 10288 + version: 2.46.1 10289 + resolution: "eslint-plugin-svelte@npm:2.46.1" 10762 10290 dependencies: 10763 10291 "@eslint-community/eslint-utils": "npm:^4.4.0" 10764 10292 "@jridgewell/sourcemap-codec": "npm:^1.4.15" ··· 10777 10305 peerDependenciesMeta: 10778 10306 svelte: 10779 10307 optional: true 10780 - checksum: 10c0/4d484183e29e6e6d2c85e91672e024b88b31d1bf98476e40379577b2e6c1d93f8676df11a4210864260fd7f23d14a1b7e80bb4a6bfba31324b78d88ee13cb81f 10308 + checksum: 10c0/48fd6c792615c534b505e5ef4616034da71af3892e5895de0b3802cdef03819e43716f36442137233a734726385a66ed8a01c08ff4c0496eaab1bb8bfbbc07c0 10781 10309 languageName: node 10782 10310 linkType: hard 10783 10311 ··· 10883 10411 version: 1.0.0 10884 10412 resolution: "esm-env@npm:1.0.0" 10885 10413 checksum: 10c0/6ea0001410224ebc18de4a83ce97dbdca6abc83ea4bbe91625aa3aead70793bb98dfa089f38e2cc5c13b7b025668d0649d5e25f2f9e8cca0f4aa3ad3406870d0 10414 + languageName: node 10415 + linkType: hard 10416 + 10417 + "esm-env@npm:^1.2.1": 10418 + version: 1.2.1 10419 + resolution: "esm-env@npm:1.2.1" 10420 + checksum: 10c0/3a7efb5943cac44c84359d0bb25a918f90f1002c0cf9fd3c24d57f27068ba3b508a9c19c8603f8c37ea5730ae4a35efad4735447fd91ae760e275cc081702e69 10886 10421 languageName: node 10887 10422 linkType: hard 10888 10423 ··· 11049 10584 languageName: node 11050 10585 linkType: hard 11051 10586 11052 - "execa@npm:^9.3.0": 11053 - version: 9.4.0 11054 - resolution: "execa@npm:9.4.0" 11055 - dependencies: 11056 - "@sindresorhus/merge-streams": "npm:^4.0.0" 11057 - cross-spawn: "npm:^7.0.3" 11058 - figures: "npm:^6.1.0" 11059 - get-stream: "npm:^9.0.0" 11060 - human-signals: "npm:^8.0.0" 11061 - is-plain-obj: "npm:^4.1.0" 11062 - is-stream: "npm:^4.0.1" 11063 - npm-run-path: "npm:^6.0.0" 11064 - pretty-ms: "npm:^9.0.0" 11065 - signal-exit: "npm:^4.1.0" 11066 - strip-final-newline: "npm:^4.0.0" 11067 - yoctocolors: "npm:^2.0.0" 11068 - checksum: 10c0/6ad06c627b5d7bb007bc7b6cc35d7e32b5a3365375ffc8ddbcc12d2423651fa9928ba0c447cc9e60079e505e9b24fbe0a57f80371511d7d20302c04c2d3ce95e 11069 - languageName: node 11070 - linkType: hard 11071 - 11072 - "execa@npm:^9.5.1": 10587 + "execa@npm:^9.3.0, execa@npm:^9.4.1, execa@npm:^9.5.1": 11073 10588 version: 9.5.1 11074 10589 resolution: "execa@npm:9.5.1" 11075 10590 dependencies: ··· 11136 10651 languageName: node 11137 10652 linkType: hard 11138 10653 11139 - "express@npm:^4.18.1": 11140 - version: 4.19.2 11141 - resolution: "express@npm:4.19.2" 11142 - dependencies: 11143 - accepts: "npm:~1.3.8" 11144 - array-flatten: "npm:1.1.1" 11145 - body-parser: "npm:1.20.2" 11146 - content-disposition: "npm:0.5.4" 11147 - content-type: "npm:~1.0.4" 11148 - cookie: "npm:0.6.0" 11149 - cookie-signature: "npm:1.0.6" 11150 - debug: "npm:2.6.9" 11151 - depd: "npm:2.0.0" 11152 - encodeurl: "npm:~1.0.2" 11153 - escape-html: "npm:~1.0.3" 11154 - etag: "npm:~1.8.1" 11155 - finalhandler: "npm:1.2.0" 11156 - fresh: "npm:0.5.2" 11157 - http-errors: "npm:2.0.0" 11158 - merge-descriptors: "npm:1.0.1" 11159 - methods: "npm:~1.1.2" 11160 - on-finished: "npm:2.4.1" 11161 - parseurl: "npm:~1.3.3" 11162 - path-to-regexp: "npm:0.1.7" 11163 - proxy-addr: "npm:~2.0.7" 11164 - qs: "npm:6.11.0" 11165 - range-parser: "npm:~1.2.1" 11166 - safe-buffer: "npm:5.2.1" 11167 - send: "npm:0.18.0" 11168 - serve-static: "npm:1.15.0" 11169 - setprototypeof: "npm:1.2.0" 11170 - statuses: "npm:2.0.1" 11171 - type-is: "npm:~1.6.18" 11172 - utils-merge: "npm:1.0.1" 11173 - vary: "npm:~1.1.2" 11174 - checksum: 10c0/e82e2662ea9971c1407aea9fc3c16d6b963e55e3830cd0ef5e00b533feda8b770af4e3be630488ef8a752d7c75c4fcefb15892868eeaafe7353cb9e3e269fdcb 11175 - languageName: node 11176 - linkType: hard 11177 - 11178 - "express@npm:^4.21.1": 10654 + "express@npm:^4.18.1, express@npm:^4.21.1": 11179 10655 version: 4.21.1 11180 10656 resolution: "express@npm:4.21.1" 11181 10657 dependencies: ··· 11538 11014 languageName: node 11539 11015 linkType: hard 11540 11016 11541 - "finalhandler@npm:1.2.0": 11542 - version: 1.2.0 11543 - resolution: "finalhandler@npm:1.2.0" 11544 - dependencies: 11545 - debug: "npm:2.6.9" 11546 - encodeurl: "npm:~1.0.2" 11547 - escape-html: "npm:~1.0.3" 11548 - on-finished: "npm:2.4.1" 11549 - parseurl: "npm:~1.3.3" 11550 - statuses: "npm:2.0.1" 11551 - unpipe: "npm:~1.0.0" 11552 - checksum: 10c0/64b7e5ff2ad1fcb14931cd012651631b721ce657da24aedb5650ddde9378bf8e95daa451da43398123f5de161a81e79ff5affe4f9f2a6d2df4a813d6d3e254b7 11553 - languageName: node 11554 - linkType: hard 11555 - 11556 11017 "finalhandler@npm:1.3.1": 11557 11018 version: 1.3.1 11558 11019 resolution: "finalhandler@npm:1.3.1" ··· 11929 11390 languageName: node 11930 11391 linkType: hard 11931 11392 11932 - "gaxios@npm:^6.0.0, gaxios@npm:^6.1.1": 11933 - version: 6.7.0 11934 - resolution: "gaxios@npm:6.7.0" 11935 - dependencies: 11936 - extend: "npm:^3.0.2" 11937 - https-proxy-agent: "npm:^7.0.1" 11938 - is-stream: "npm:^2.0.0" 11939 - node-fetch: "npm:^2.6.9" 11940 - uuid: "npm:^10.0.0" 11941 - checksum: 10c0/07116b29e23c00ecd820a6b55d59e03b2e555df9d4b812de59761bdb2fd1a4a29d32cd99b8a84f667cf9721020cdee7bd5bf5ead6165809691111d1b26cf7c06 11942 - languageName: node 11943 - linkType: hard 11944 - 11945 - "gaxios@npm:^6.0.2, gaxios@npm:^6.0.3": 11393 + "gaxios@npm:^6.0.0, gaxios@npm:^6.0.2, gaxios@npm:^6.0.3, gaxios@npm:^6.1.1": 11946 11394 version: 6.7.1 11947 11395 resolution: "gaxios@npm:6.7.1" 11948 11396 dependencies: ··· 12308 11756 languageName: node 12309 11757 linkType: hard 12310 11758 12311 - "google-auth-library@npm:^9.0.0, google-auth-library@npm:^9.15.0, google-auth-library@npm:^9.7.0": 11759 + "google-auth-library@npm:^9.0.0, google-auth-library@npm:^9.15.0, google-auth-library@npm:^9.3.0, google-auth-library@npm:^9.6.3, google-auth-library@npm:^9.7.0": 12312 11760 version: 9.15.0 12313 11761 resolution: "google-auth-library@npm:9.15.0" 12314 11762 dependencies: ··· 12319 11767 gtoken: "npm:^7.0.0" 12320 11768 jws: "npm:^4.0.0" 12321 11769 checksum: 10c0/f5a9a46e939147b181bac9b254f11dd8c2d05c15a65c9d3f2180252bef21c12af37d9893bc3caacafd226d6531a960535dbb5222ef869143f393c6a97639cc06 12322 - languageName: node 12323 - linkType: hard 12324 - 12325 - "google-auth-library@npm:^9.3.0, google-auth-library@npm:^9.6.3": 12326 - version: 9.14.2 12327 - resolution: "google-auth-library@npm:9.14.2" 12328 - dependencies: 12329 - base64-js: "npm:^1.3.0" 12330 - ecdsa-sig-formatter: "npm:^1.0.11" 12331 - gaxios: "npm:^6.1.1" 12332 - gcp-metadata: "npm:^6.1.0" 12333 - gtoken: "npm:^7.0.0" 12334 - jws: "npm:^4.0.0" 12335 - checksum: 10c0/de1a28734bf8de6b9200da32e6cc5200ca3abb3b8c8ad6a1a59926fd8c38bdeb13ffce8e31b921bfdfe8ab553790534a237342a7838c73d81bcea11c652bad70 12336 11770 languageName: node 12337 11771 linkType: hard 12338 11772 ··· 12570 12004 linkType: hard 12571 12005 12572 12006 "graphql-yoga@npm:^5.10.3": 12573 - version: 5.10.3 12574 - resolution: "graphql-yoga@npm:5.10.3" 12007 + version: 5.10.4 12008 + resolution: "graphql-yoga@npm:5.10.4" 12575 12009 dependencies: 12576 - "@envelop/core": "npm:^5.0.1" 12577 - "@graphql-tools/executor": "npm:^1.3.3" 12578 - "@graphql-tools/schema": "npm:^10.0.4" 12579 - "@graphql-tools/utils": "npm:^10.3.2" 12010 + "@envelop/core": "npm:^5.0.2" 12011 + "@graphql-tools/executor": "npm:^1.3.5" 12012 + "@graphql-tools/schema": "npm:^10.0.10" 12013 + "@graphql-tools/utils": "npm:^10.6.1" 12580 12014 "@graphql-yoga/logger": "npm:^2.0.0" 12581 12015 "@graphql-yoga/subscription": "npm:^5.0.1" 12582 12016 "@whatwg-node/fetch": "npm:^0.10.1" 12583 - "@whatwg-node/server": "npm:^0.9.55" 12017 + "@whatwg-node/server": "npm:^0.9.60" 12584 12018 dset: "npm:^3.1.1" 12585 12019 lru-cache: "npm:^10.0.0" 12586 - tslib: "npm:^2.5.2" 12020 + tslib: "npm:^2.8.1" 12587 12021 peerDependencies: 12588 12022 graphql: ^15.2.0 || ^16.0.0 12589 - checksum: 10c0/7ca4cb15d0826aed09b5b65a712d9b14170f5021b292a9c49dc3d0329915dc86aedb6e7a4dd458c9513ceb8e3415f9fa9dd13d6d312cdbd99f444c1735681619 12023 + checksum: 10c0/b6f7e69734937f6c9fede0f7680d22ce46901f5ef3fa2579a9386d6d80a9b3a253c5c5c710abb126c026e87846534fb1e674a8d4ec7201676ef44b1b8adc0203 12590 12024 languageName: node 12591 12025 linkType: hard 12592 12026 ··· 13366 12800 languageName: node 13367 12801 linkType: hard 13368 12802 13369 - "ics@npm:^3.1.0": 13370 - version: 3.7.6 13371 - resolution: "ics@npm:3.7.6" 13372 - dependencies: 13373 - nanoid: "npm:^3.1.23" 13374 - runes2: "npm:^1.1.2" 13375 - yup: "npm:^1.2.0" 13376 - checksum: 10c0/9aeff331ef7dfb6a6d34ba11518f31654d757be48da2a21ce1ae111b2e577f5ecb3b87e57d55c19b2d556543daa307f0ce4b8f5e435863742adef78e7fe3cf6a 13377 - languageName: node 13378 - linkType: hard 13379 - 13380 - "ics@npm:^3.8.1": 12803 + "ics@npm:^3.1.0, ics@npm:^3.8.1": 13381 12804 version: 3.8.1 13382 12805 resolution: "ics@npm:3.8.1" 13383 12806 dependencies: ··· 13465 12888 languageName: node 13466 12889 linkType: hard 13467 12890 13468 - "import-in-the-middle@npm:^1.11.2": 12891 + "import-in-the-middle@npm:^1.11.2, import-in-the-middle@npm:^1.8.1": 13469 12892 version: 1.11.2 13470 12893 resolution: "import-in-the-middle@npm:1.11.2" 13471 12894 dependencies: ··· 13477 12900 languageName: node 13478 12901 linkType: hard 13479 12902 13480 - "import-in-the-middle@npm:^1.8.1": 13481 - version: 1.11.0 13482 - resolution: "import-in-the-middle@npm:1.11.0" 13483 - dependencies: 13484 - acorn: "npm:^8.8.2" 13485 - acorn-import-attributes: "npm:^1.9.5" 13486 - cjs-module-lexer: "npm:^1.2.2" 13487 - module-details-from-path: "npm:^1.0.3" 13488 - checksum: 10c0/b5b52b635450f69640289b9b597fef796ef9aa6c231ae22583a1c2e97bd1b61aa0048d7fc143b4af3ec5bffb7d64131302ed0882f62e0e2d60f0a4f009daff3f 13489 - languageName: node 13490 - linkType: hard 13491 - 13492 12903 "import-lazy@npm:^2.1.0": 13493 12904 version: 2.1.0 13494 12905 resolution: "import-lazy@npm:2.1.0" ··· 13889 13300 languageName: node 13890 13301 linkType: hard 13891 13302 13892 - "is-reference@npm:^3.0.0, is-reference@npm:^3.0.1": 13893 - version: 3.0.2 13894 - resolution: "is-reference@npm:3.0.2" 13895 - dependencies: 13896 - "@types/estree": "npm:*" 13897 - checksum: 10c0/652d31b405e8e8269071cee78fe874b072745012eba202c6dc86880fd603a65ae043e3160990ab4a0a4b33567cbf662eecf3bc6b3c2c1550e6c2b6cf885ce5aa 13898 - languageName: node 13899 - linkType: hard 13900 - 13901 - "is-reference@npm:^3.0.3": 13303 + "is-reference@npm:^3.0.0, is-reference@npm:^3.0.1, is-reference@npm:^3.0.3": 13902 13304 version: 3.0.3 13903 13305 resolution: "is-reference@npm:3.0.3" 13904 13306 dependencies: ··· 13977 13379 languageName: node 13978 13380 linkType: hard 13979 13381 13980 - "is-unicode-supported@npm:*": 13981 - version: 2.0.0 13982 - resolution: "is-unicode-supported@npm:2.0.0" 13983 - checksum: 10c0/3013dfb8265fe9f9a0d1e9433fc4e766595631a8d85d60876c457b4bedc066768dab1477c553d02e2f626d88a4e019162706e04263c94d74994ef636a33b5f94 13382 + "is-unicode-supported@npm:*, is-unicode-supported@npm:^2.0.0": 13383 + version: 2.1.0 13384 + resolution: "is-unicode-supported@npm:2.1.0" 13385 + checksum: 10c0/a0f53e9a7c1fdbcf2d2ef6e40d4736fdffff1c9f8944c75e15425118ff3610172c87bf7bc6c34d3903b04be59790bb2212ddbe21ee65b5a97030fc50370545a5 13984 13386 languageName: node 13985 13387 linkType: hard 13986 13388 ··· 13995 13397 version: 1.3.0 13996 13398 resolution: "is-unicode-supported@npm:1.3.0" 13997 13399 checksum: 10c0/b8674ea95d869f6faabddc6a484767207058b91aea0250803cbf1221345cb0c56f466d4ecea375dc77f6633d248d33c47bd296fb8f4cdba0b4edba8917e83d8a 13998 - languageName: node 13999 - linkType: hard 14000 - 14001 - "is-unicode-supported@npm:^2.0.0": 14002 - version: 2.1.0 14003 - resolution: "is-unicode-supported@npm:2.1.0" 14004 - checksum: 10c0/a0f53e9a7c1fdbcf2d2ef6e40d4736fdffff1c9f8944c75e15425118ff3610172c87bf7bc6c34d3903b04be59790bb2212ddbe21ee65b5a97030fc50370545a5 14005 13400 languageName: node 14006 13401 linkType: hard 14007 13402 ··· 14220 13615 languageName: node 14221 13616 linkType: hard 14222 13617 14223 - "jsesc@npm:^2.5.1": 14224 - version: 2.5.2 14225 - resolution: "jsesc@npm:2.5.2" 14226 - bin: 14227 - jsesc: bin/jsesc 14228 - checksum: 10c0/dbf59312e0ebf2b4405ef413ec2b25abb5f8f4d9bc5fb8d9f90381622ebca5f2af6a6aa9a8578f65903f9e33990a6dc798edd0ce5586894bf0e9e31803a1de88 14229 - languageName: node 14230 - linkType: hard 14231 - 14232 13618 "jsesc@npm:^3.0.2": 14233 13619 version: 3.0.2 14234 13620 resolution: "jsesc@npm:3.0.2" ··· 14752 14138 languageName: node 14753 14139 linkType: hard 14754 14140 14755 - "linkify-plugin-mention@npm:^4.1.3": 14756 - version: 4.1.3 14757 - resolution: "linkify-plugin-mention@npm:4.1.3" 14758 - peerDependencies: 14759 - linkifyjs: ^4.0.0 14760 - checksum: 10c0/872559e03ad0e0d7ef5ad8015cd8da6074555bf00e4fe4b2528f80818aaaed192595d9047f9e003710925f4c58cbee46d73e45f9af37861809546f76937a90e2 14761 - languageName: node 14762 - linkType: hard 14763 - 14764 - "linkify-plugin-mention@npm:^4.1.4": 14141 + "linkify-plugin-mention@npm:^4.1.3, linkify-plugin-mention@npm:^4.1.4": 14765 14142 version: 4.1.4 14766 14143 resolution: "linkify-plugin-mention@npm:4.1.4" 14767 14144 peerDependencies: ··· 14844 14221 languageName: node 14845 14222 linkType: hard 14846 14223 14224 + "local-pkg@npm:^0.5.1": 14225 + version: 0.5.1 14226 + resolution: "local-pkg@npm:0.5.1" 14227 + dependencies: 14228 + mlly: "npm:^1.7.3" 14229 + pkg-types: "npm:^1.2.1" 14230 + checksum: 10c0/ade8346f1dc04875921461adee3c40774b00d4b74095261222ebd4d5fd0a444676e36e325f76760f21af6a60bc82480e154909b54d2d9f7173671e36dacf1808 14231 + languageName: node 14232 + linkType: hard 14233 + 14847 14234 "localforage@npm:^1.8.1": 14848 14235 version: 1.10.0 14849 14236 resolution: "localforage@npm:1.10.0" ··· 15305 14692 languageName: node 15306 14693 linkType: hard 15307 14694 15308 - "magic-string@npm:^0.30.0, magic-string@npm:^0.30.10, magic-string@npm:^0.30.3, magic-string@npm:^0.30.4, magic-string@npm:^0.30.5": 15309 - version: 0.30.11 15310 - resolution: "magic-string@npm:0.30.11" 15311 - dependencies: 15312 - "@jridgewell/sourcemap-codec": "npm:^1.5.0" 15313 - checksum: 10c0/b9eb370773d0bd90ca11a848753409d8e5309b1ad56d2a1aa49d6649da710a6d2fe7237ad1a643c5a5d3800de2b9946ed9690acdfc00e6cc1aeafff3ab1752c4 15314 - languageName: node 15315 - linkType: hard 15316 - 15317 - "magic-string@npm:^0.30.11": 14695 + "magic-string@npm:^0.30.0, magic-string@npm:^0.30.10, magic-string@npm:^0.30.11, magic-string@npm:^0.30.3, magic-string@npm:^0.30.4, magic-string@npm:^0.30.5": 15318 14696 version: 0.30.13 15319 14697 resolution: "magic-string@npm:0.30.13" 15320 14698 dependencies: ··· 15744 15122 languageName: node 15745 15123 linkType: hard 15746 15124 15747 - "merge-descriptors@npm:1.0.1": 15748 - version: 1.0.1 15749 - resolution: "merge-descriptors@npm:1.0.1" 15750 - checksum: 10c0/b67d07bd44cfc45cebdec349bb6e1f7b077ee2fd5beb15d1f7af073849208cb6f144fe403e29a36571baf3f4e86469ac39acf13c318381e958e186b2766f54ec 15751 - languageName: node 15752 - linkType: hard 15753 - 15754 15125 "merge-descriptors@npm:1.0.3": 15755 15126 version: 1.0.3 15756 15127 resolution: "merge-descriptors@npm:1.0.3" ··· 16135 15506 languageName: node 16136 15507 linkType: hard 16137 15508 16138 - "micromatch@npm:4.0.8, micromatch@npm:^4.0.2, micromatch@npm:^4.0.8, micromatch@npm:~4.0.8": 15509 + "micromatch@npm:4.0.8, micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5, micromatch@npm:^4.0.8, micromatch@npm:~4.0.8": 16139 15510 version: 4.0.8 16140 15511 resolution: "micromatch@npm:4.0.8" 16141 15512 dependencies: ··· 16145 15516 languageName: node 16146 15517 linkType: hard 16147 15518 16148 - "micromatch@npm:^4.0.4, micromatch@npm:^4.0.5": 16149 - version: 4.0.7 16150 - resolution: "micromatch@npm:4.0.7" 16151 - dependencies: 16152 - braces: "npm:^3.0.3" 16153 - picomatch: "npm:^2.3.1" 16154 - checksum: 10c0/58fa99bc5265edec206e9163a1d2cec5fabc46a5b473c45f4a700adce88c2520456ae35f2b301e4410fb3afb27e9521fb2813f6fc96be0a48a89430e0916a772 16155 - languageName: node 16156 - linkType: hard 16157 - 16158 15519 "mime-db@npm:1.52.0": 16159 15520 version: 1.52.0 16160 15521 resolution: "mime-db@npm:1.52.0" ··· 16903 16264 languageName: node 16904 16265 linkType: hard 16905 16266 16267 + "mlly@npm:^1.7.2, mlly@npm:^1.7.3": 16268 + version: 1.7.3 16269 + resolution: "mlly@npm:1.7.3" 16270 + dependencies: 16271 + acorn: "npm:^8.14.0" 16272 + pathe: "npm:^1.1.2" 16273 + pkg-types: "npm:^1.2.1" 16274 + ufo: "npm:^1.5.4" 16275 + checksum: 10c0/b530887fe95a6e3458c1b24e9775dc61c167d402126f2f5f13a13845a3fb77c3db8d79cb32077c98679a392d8ecfdc4e5df3d6925bf650d807dc2dfe8cc35b53 16276 + languageName: node 16277 + linkType: hard 16278 + 16906 16279 "module-details-from-path@npm:^1.0.3": 16907 16280 version: 1.0.3 16908 16281 resolution: "module-details-from-path@npm:1.0.3" ··· 16935 16308 version: 2.0.0 16936 16309 resolution: "ms@npm:2.0.0" 16937 16310 checksum: 10c0/f8fda810b39fd7255bbdc451c46286e549794fcc700dc9cd1d25658bbc4dc2563a5de6fe7c60f798a16a60c6ceb53f033cb353f493f0cf63e5199b702943159d 16938 - languageName: node 16939 - linkType: hard 16940 - 16941 - "ms@npm:2.1.2": 16942 - version: 2.1.2 16943 - resolution: "ms@npm:2.1.2" 16944 - checksum: 10c0/a437714e2f90dbf881b5191d35a6db792efbca5badf112f87b9e1c712aace4b4b9b742dd6537f3edf90fd6f684de897cec230abde57e87883766712ddda297cc 16945 16311 languageName: node 16946 16312 linkType: hard 16947 16313 ··· 17011 16377 linkType: hard 17012 16378 17013 16379 "nanoid@npm:^5.0.4, nanoid@npm:^5.0.5": 17014 - version: 5.0.7 17015 - resolution: "nanoid@npm:5.0.7" 16380 + version: 5.0.8 16381 + resolution: "nanoid@npm:5.0.8" 17016 16382 bin: 17017 16383 nanoid: bin/nanoid.js 17018 - checksum: 10c0/a3fb1c157e3e35378f44e5a7130c70f80c9037f66c9a37285e5e3d8298e8405fcb2399baaa420980b0fe5fd9c2e4186a6a31c3526f21de03cf34c1b459871401 16384 + checksum: 10c0/0281d3cc0f3d03fb3010b479f28e8ddedfafb9b5d60e54315589ef0a54a0e9cfcb0bf382dd3b620fdad6b72b8c1f5b89a15d55c6b6a9134b58b16eb230b3a3d7 17019 16385 languageName: node 17020 16386 linkType: hard 17021 16387 ··· 17182 16548 languageName: node 17183 16549 linkType: hard 17184 16550 17185 - "node-releases@npm:^2.0.14, node-releases@npm:^2.0.18": 16551 + "node-releases@npm:^2.0.18": 17186 16552 version: 2.0.18 17187 16553 resolution: "node-releases@npm:2.0.18" 17188 16554 checksum: 10c0/786ac9db9d7226339e1dc84bbb42007cb054a346bd9257e6aa154d294f01bc6a6cddb1348fa099f079be6580acbb470e3c048effd5f719325abd0179e566fd27 ··· 17920 17286 languageName: node 17921 17287 linkType: hard 17922 17288 17289 + "package-manager-detector@npm:^0.2.5": 17290 + version: 0.2.6 17291 + resolution: "package-manager-detector@npm:0.2.6" 17292 + checksum: 10c0/b9848031bafee03a1308cedecf8fecdc65378b3acd57c123f10f66dd7ea467141a44585ab26cbeb452e1da37cc217f9face129c08864fd8584164fb1f6d94533 17293 + languageName: node 17294 + linkType: hard 17295 + 17923 17296 "pacote@npm:11.2.7": 17924 17297 version: 11.2.7 17925 17298 resolution: "pacote@npm:11.2.7" ··· 18230 17603 languageName: node 18231 17604 linkType: hard 18232 17605 18233 - "path-to-regexp@npm:0.1.7": 18234 - version: 0.1.7 18235 - resolution: "path-to-regexp@npm:0.1.7" 18236 - checksum: 10c0/50a1ddb1af41a9e68bd67ca8e331a705899d16fb720a1ea3a41e310480948387daf603abb14d7b0826c58f10146d49050a1291ba6a82b78a382d1c02c0b8f905 18237 - languageName: node 18238 - linkType: hard 18239 - 18240 17606 "path-type@npm:^4.0.0": 18241 17607 version: 4.0.0 18242 17608 resolution: "path-type@npm:4.0.0" ··· 18365 17731 languageName: node 18366 17732 linkType: hard 18367 17733 18368 - "picocolors@npm:^1.0.0, picocolors@npm:^1.0.1": 18369 - version: 1.0.1 18370 - resolution: "picocolors@npm:1.0.1" 18371 - checksum: 10c0/c63cdad2bf812ef0d66c8db29583802355d4ca67b9285d846f390cc15c2f6ccb94e8cb7eb6a6e97fc5990a6d3ad4ae42d86c84d3146e667c739a4234ed50d400 18372 - languageName: node 18373 - linkType: hard 18374 - 18375 - "picocolors@npm:^1.1.0": 18376 - version: 1.1.0 18377 - resolution: "picocolors@npm:1.1.0" 18378 - checksum: 10c0/86946f6032148801ef09c051c6fb13b5cf942eaf147e30ea79edb91dd32d700934edebe782a1078ff859fb2b816792e97ef4dab03d7f0b804f6b01a0df35e023 18379 - languageName: node 18380 - linkType: hard 18381 - 18382 - "picocolors@npm:^1.1.1": 17734 + "picocolors@npm:^1.0.0, picocolors@npm:^1.1.0, picocolors@npm:^1.1.1": 18383 17735 version: 1.1.1 18384 17736 resolution: "picocolors@npm:1.1.1" 18385 17737 checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58 ··· 18462 17814 languageName: node 18463 17815 linkType: hard 18464 17816 17817 + "pkg-types@npm:^1.2.1": 17818 + version: 1.2.1 17819 + resolution: "pkg-types@npm:1.2.1" 17820 + dependencies: 17821 + confbox: "npm:^0.1.8" 17822 + mlly: "npm:^1.7.2" 17823 + pathe: "npm:^1.1.2" 17824 + checksum: 10c0/4aef765c039e3ec3ca55171bb8ad776cf060d894c45ddf92b9d680b3fdb1817c8d1c428f74ea6aae144493fa1d6a97df6b8caec6dc31e418f1ce1f728d38014e 17825 + languageName: node 17826 + linkType: hard 17827 + 18465 17828 "pkg-up@npm:^3.1.0": 18466 17829 version: 3.1.0 18467 17830 resolution: "pkg-up@npm:3.1.0" ··· 18529 17892 languageName: node 18530 17893 linkType: hard 18531 17894 18532 - "postcss-resolve-nested-selector@npm:^0.1.1": 18533 - version: 0.1.4 18534 - resolution: "postcss-resolve-nested-selector@npm:0.1.4" 18535 - checksum: 10c0/c265c35ddd474968bc4efbe4027e33f28910ef3931ffae9c448878d7c02735aeeea6d33aa6f89902e4c111e6fe87f2cc2aa72dcb3ac242d58809f1f932baa2b6 18536 - languageName: node 18537 - linkType: hard 18538 - 18539 - "postcss-resolve-nested-selector@npm:^0.1.6": 17895 + "postcss-resolve-nested-selector@npm:^0.1.1, postcss-resolve-nested-selector@npm:^0.1.6": 18540 17896 version: 0.1.6 18541 17897 resolution: "postcss-resolve-nested-selector@npm:0.1.6" 18542 17898 checksum: 10c0/84213a2bccce481b1569c595a3c547b25c6ef1cca839fbd6c82c12ab407559966e968613c7454b573aa54f38cfd7e900c1fd603f0efc9f51939ab9f93f115455 ··· 18571 17927 linkType: hard 18572 17928 18573 17929 "postcss-selector-parser@npm:^6.1.0": 18574 - version: 6.1.1 18575 - resolution: "postcss-selector-parser@npm:6.1.1" 17930 + version: 6.1.2 17931 + resolution: "postcss-selector-parser@npm:6.1.2" 18576 17932 dependencies: 18577 17933 cssesc: "npm:^3.0.0" 18578 17934 util-deprecate: "npm:^1.0.2" 18579 - checksum: 10c0/5608765e033fee35d448e1f607ffbaa750eb86901824a8bc4a911ea8bc137cb82f29239330787427c5d3695afd90d8721e190f211dbbf733e25033d8b3100763 17935 + checksum: 10c0/523196a6bd8cf660bdf537ad95abd79e546d54180f9afb165a4ab3e651ac705d0f8b8ce6b3164fb9e3279ce482c5f751a69eb2d3a1e8eb0fd5e82294fb3ef13e 18580 17936 languageName: node 18581 17937 linkType: hard 18582 17938 18583 - "postcss-selector-parser@npm:^6.1.2": 18584 - version: 6.1.2 18585 - resolution: "postcss-selector-parser@npm:6.1.2" 17939 + "postcss-selector-parser@npm:^7.0.0": 17940 + version: 7.0.0 17941 + resolution: "postcss-selector-parser@npm:7.0.0" 18586 17942 dependencies: 18587 17943 cssesc: "npm:^3.0.0" 18588 17944 util-deprecate: "npm:^1.0.2" 18589 - checksum: 10c0/523196a6bd8cf660bdf537ad95abd79e546d54180f9afb165a4ab3e651ac705d0f8b8ce6b3164fb9e3279ce482c5f751a69eb2d3a1e8eb0fd5e82294fb3ef13e 17945 + checksum: 10c0/e96e096afcce70bf5c97789f5ea09d7415ae5eb701d82b05b5e8532885d31363b484fcb1ca9488c9a331f30508d9e5bb6c3109eb2eb5067ef3d3919f9928cd9d 18590 17946 languageName: node 18591 17947 linkType: hard 18592 17948 ··· 18606 17962 languageName: node 18607 17963 linkType: hard 18608 17964 18609 - "postcss@npm:^8.4.0, postcss@npm:^8.4.32, postcss@npm:^8.4.38, postcss@npm:^8.4.39": 18610 - version: 8.4.40 18611 - resolution: "postcss@npm:8.4.40" 18612 - dependencies: 18613 - nanoid: "npm:^3.3.7" 18614 - picocolors: "npm:^1.0.1" 18615 - source-map-js: "npm:^1.2.0" 18616 - checksum: 10c0/65ed67573e5443beaeb582282ff27a6be7c7fe3b4d9fa15761157616f2b97510cb1c335023c26220b005909f007337026d6e3ff092f25010b484ad484e80ea7f 18617 - languageName: node 18618 - linkType: hard 18619 - 18620 - "postcss@npm:^8.4.43": 18621 - version: 8.4.47 18622 - resolution: "postcss@npm:8.4.47" 18623 - dependencies: 18624 - nanoid: "npm:^3.3.7" 18625 - picocolors: "npm:^1.1.0" 18626 - source-map-js: "npm:^1.2.1" 18627 - checksum: 10c0/929f68b5081b7202709456532cee2a145c1843d391508c5a09de2517e8c4791638f71dd63b1898dba6712f8839d7a6da046c72a5e44c162e908f5911f57b5f44 18628 - languageName: node 18629 - linkType: hard 18630 - 18631 - "postcss@npm:^8.4.47": 17965 + "postcss@npm:^8.4.0, postcss@npm:^8.4.32, postcss@npm:^8.4.38, postcss@npm:^8.4.39, postcss@npm:^8.4.43, postcss@npm:^8.4.49": 18632 17966 version: 8.4.49 18633 17967 resolution: "postcss@npm:8.4.49" 18634 17968 dependencies: ··· 19067 18401 languageName: node 19068 18402 linkType: hard 19069 18403 19070 - "qs@npm:6.11.0": 19071 - version: 6.11.0 19072 - resolution: "qs@npm:6.11.0" 19073 - dependencies: 19074 - side-channel: "npm:^1.0.4" 19075 - checksum: 10c0/4e4875e4d7c7c31c233d07a448e7e4650f456178b9dd3766b7cfa13158fdb24ecb8c4f059fa91e820dc6ab9f2d243721d071c9c0378892dcdad86e9e9a27c68f 19076 - languageName: node 19077 - linkType: hard 19078 - 19079 - "qs@npm:6.13.0, qs@npm:^6.11.2": 18404 + "qs@npm:6.13.0, qs@npm:^6.11.0, qs@npm:^6.11.2, qs@npm:^6.7.0": 19080 18405 version: 6.13.0 19081 18406 resolution: "qs@npm:6.13.0" 19082 18407 dependencies: 19083 18408 side-channel: "npm:^1.0.6" 19084 18409 checksum: 10c0/62372cdeec24dc83a9fb240b7533c0fdcf0c5f7e0b83343edd7310f0ab4c8205a5e7c56406531f2e47e1b4878a3821d652be4192c841de5b032ca83619d8f860 19085 - languageName: node 19086 - linkType: hard 19087 - 19088 - "qs@npm:^6.11.0, qs@npm:^6.7.0": 19089 - version: 6.12.3 19090 - resolution: "qs@npm:6.12.3" 19091 - dependencies: 19092 - side-channel: "npm:^1.0.6" 19093 - checksum: 10c0/243ddcc8f49dab78fc51041f7f64c500b47c671c45a101a8aca565d8537cb562921da7ef1a831b4a7051596ec88bb35a0d5e25a240025e8b32c6bfb69f00bf2f 19094 18410 languageName: node 19095 18411 linkType: hard 19096 18412 ··· 19489 18805 languageName: node 19490 18806 linkType: hard 19491 18807 19492 - "rehype-stringify@npm:^10.0.0": 19493 - version: 10.0.0 19494 - resolution: "rehype-stringify@npm:10.0.0" 19495 - dependencies: 19496 - "@types/hast": "npm:^3.0.0" 19497 - hast-util-to-html: "npm:^9.0.0" 19498 - unified: "npm:^11.0.0" 19499 - checksum: 10c0/6a5f763cfc51cefbcfe504c9661da39b2f28e49c6caea085ff7ad97457b9574289076471f6eeca7af6479f1f90fd1bf1e8d176640b66da262372b76a1f1b3147 19500 - languageName: node 19501 - linkType: hard 19502 - 19503 - "rehype-stringify@npm:^10.0.1": 18808 + "rehype-stringify@npm:^10.0.0, rehype-stringify@npm:^10.0.1": 19504 18809 version: 10.0.1 19505 18810 resolution: "rehype-stringify@npm:10.0.1" 19506 18811 dependencies: ··· 19590 18895 languageName: node 19591 18896 linkType: hard 19592 18897 19593 - "remark-rehype@npm:^11.1.0": 19594 - version: 11.1.0 19595 - resolution: "remark-rehype@npm:11.1.0" 19596 - dependencies: 19597 - "@types/hast": "npm:^3.0.0" 19598 - "@types/mdast": "npm:^4.0.0" 19599 - mdast-util-to-hast: "npm:^13.0.0" 19600 - unified: "npm:^11.0.0" 19601 - vfile: "npm:^6.0.0" 19602 - checksum: 10c0/7a9534847ea70e78cf09227a4302af7e491f625fd092351a1b1ee27a2de0a369ac4acf069682e8a8ec0a55847b3e83f0be76b2028aa90e98e69e21420b9794c3 19603 - languageName: node 19604 - linkType: hard 19605 - 19606 - "remark-rehype@npm:^11.1.1": 18898 + "remark-rehype@npm:^11.1.0, remark-rehype@npm:^11.1.1": 19607 18899 version: 11.1.1 19608 18900 resolution: "remark-rehype@npm:11.1.1" 19609 18901 dependencies: ··· 19926 19218 languageName: node 19927 19219 linkType: hard 19928 19220 19929 - "rollup@npm:^4.20.0": 19221 + "rollup@npm:^4.20.0, rollup@npm:^4.9.5": 19930 19222 version: 4.24.0 19931 19223 resolution: "rollup@npm:4.24.0" 19932 19224 dependencies: ··· 19989 19281 languageName: node 19990 19282 linkType: hard 19991 19283 19992 - "rollup@npm:^4.9.5": 19993 - version: 4.19.1 19994 - resolution: "rollup@npm:4.19.1" 19995 - dependencies: 19996 - "@rollup/rollup-android-arm-eabi": "npm:4.19.1" 19997 - "@rollup/rollup-android-arm64": "npm:4.19.1" 19998 - "@rollup/rollup-darwin-arm64": "npm:4.19.1" 19999 - "@rollup/rollup-darwin-x64": "npm:4.19.1" 20000 - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.19.1" 20001 - "@rollup/rollup-linux-arm-musleabihf": "npm:4.19.1" 20002 - "@rollup/rollup-linux-arm64-gnu": "npm:4.19.1" 20003 - "@rollup/rollup-linux-arm64-musl": "npm:4.19.1" 20004 - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.19.1" 20005 - "@rollup/rollup-linux-riscv64-gnu": "npm:4.19.1" 20006 - "@rollup/rollup-linux-s390x-gnu": "npm:4.19.1" 20007 - "@rollup/rollup-linux-x64-gnu": "npm:4.19.1" 20008 - "@rollup/rollup-linux-x64-musl": "npm:4.19.1" 20009 - "@rollup/rollup-win32-arm64-msvc": "npm:4.19.1" 20010 - "@rollup/rollup-win32-ia32-msvc": "npm:4.19.1" 20011 - "@rollup/rollup-win32-x64-msvc": "npm:4.19.1" 20012 - "@types/estree": "npm:1.0.5" 20013 - fsevents: "npm:~2.3.2" 20014 - dependenciesMeta: 20015 - "@rollup/rollup-android-arm-eabi": 20016 - optional: true 20017 - "@rollup/rollup-android-arm64": 20018 - optional: true 20019 - "@rollup/rollup-darwin-arm64": 20020 - optional: true 20021 - "@rollup/rollup-darwin-x64": 20022 - optional: true 20023 - "@rollup/rollup-linux-arm-gnueabihf": 20024 - optional: true 20025 - "@rollup/rollup-linux-arm-musleabihf": 20026 - optional: true 20027 - "@rollup/rollup-linux-arm64-gnu": 20028 - optional: true 20029 - "@rollup/rollup-linux-arm64-musl": 20030 - optional: true 20031 - "@rollup/rollup-linux-powerpc64le-gnu": 20032 - optional: true 20033 - "@rollup/rollup-linux-riscv64-gnu": 20034 - optional: true 20035 - "@rollup/rollup-linux-s390x-gnu": 20036 - optional: true 20037 - "@rollup/rollup-linux-x64-gnu": 20038 - optional: true 20039 - "@rollup/rollup-linux-x64-musl": 20040 - optional: true 20041 - "@rollup/rollup-win32-arm64-msvc": 20042 - optional: true 20043 - "@rollup/rollup-win32-ia32-msvc": 20044 - optional: true 20045 - "@rollup/rollup-win32-x64-msvc": 20046 - optional: true 20047 - fsevents: 20048 - optional: true 20049 - bin: 20050 - rollup: dist/bin/rollup 20051 - checksum: 10c0/2e526c38b4bcb22a058cf95e40c8c105a86f27d582c677c47df9315a17b18e75c772edc0773ca4d12d58ceca254bb5d63d4172041f6fd9f01e1a613d8bba6d09 20052 - languageName: node 20053 - linkType: hard 20054 - 20055 19284 "rotated-array-set@npm:^3.0.0": 20056 19285 version: 3.0.0 20057 19286 resolution: "rotated-array-set@npm:3.0.0" ··· 20489 19718 languageName: node 20490 19719 linkType: hard 20491 19720 20492 - "send@npm:0.18.0": 20493 - version: 0.18.0 20494 - resolution: "send@npm:0.18.0" 20495 - dependencies: 20496 - debug: "npm:2.6.9" 20497 - depd: "npm:2.0.0" 20498 - destroy: "npm:1.2.0" 20499 - encodeurl: "npm:~1.0.2" 20500 - escape-html: "npm:~1.0.3" 20501 - etag: "npm:~1.8.1" 20502 - fresh: "npm:0.5.2" 20503 - http-errors: "npm:2.0.0" 20504 - mime: "npm:1.6.0" 20505 - ms: "npm:2.1.3" 20506 - on-finished: "npm:2.4.1" 20507 - range-parser: "npm:~1.2.1" 20508 - statuses: "npm:2.0.1" 20509 - checksum: 10c0/0eb134d6a51fc13bbcb976a1f4214ea1e33f242fae046efc311e80aff66c7a43603e26a79d9d06670283a13000e51be6e0a2cb80ff0942eaf9f1cd30b7ae736a 20510 - languageName: node 20511 - linkType: hard 20512 - 20513 19721 "send@npm:0.19.0": 20514 19722 version: 0.19.0 20515 19723 resolution: "send@npm:0.19.0" ··· 20540 19748 languageName: node 20541 19749 linkType: hard 20542 19750 20543 - "serve-static@npm:1.15.0": 20544 - version: 1.15.0 20545 - resolution: "serve-static@npm:1.15.0" 20546 - dependencies: 20547 - encodeurl: "npm:~1.0.2" 20548 - escape-html: "npm:~1.0.3" 20549 - parseurl: "npm:~1.3.3" 20550 - send: "npm:0.18.0" 20551 - checksum: 10c0/fa9f0e21a540a28f301258dfe1e57bb4f81cd460d28f0e973860477dd4acef946a1f41748b5bd41c73b621bea2029569c935faa38578fd34cd42a9b4947088ba 20552 - languageName: node 20553 - linkType: hard 20554 - 20555 19751 "serve-static@npm:1.16.2": 20556 19752 version: 1.16.2 20557 19753 resolution: "serve-static@npm:1.16.2" ··· 20726 19922 languageName: node 20727 19923 linkType: hard 20728 19924 20729 - "shell-quote@npm:^1.7.3": 19925 + "shell-quote@npm:^1.7.3, shell-quote@npm:^1.8.1": 20730 19926 version: 1.8.1 20731 19927 resolution: "shell-quote@npm:1.8.1" 20732 19928 checksum: 10c0/8cec6fd827bad74d0a49347057d40dfea1e01f12a6123bf82c4649f3ef152fc2bc6d6176e6376bffcd205d9d0ccb4f1f9acae889384d20baff92186f01ea455a ··· 20763 19959 languageName: node 20764 19960 linkType: hard 20765 19961 20766 - "side-channel@npm:^1.0.4, side-channel@npm:^1.0.6": 19962 + "side-channel@npm:^1.0.6": 20767 19963 version: 1.0.6 20768 19964 resolution: "side-channel@npm:1.0.6" 20769 19965 dependencies: ··· 20967 20163 languageName: node 20968 20164 linkType: hard 20969 20165 20970 - "source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.0": 20971 - version: 1.2.0 20972 - resolution: "source-map-js@npm:1.2.0" 20973 - checksum: 10c0/7e5f896ac10a3a50fe2898e5009c58ff0dc102dcb056ed27a354623a0ece8954d4b2649e1a1b2b52ef2e161d26f8859c7710350930751640e71e374fe2d321a4 20974 - languageName: node 20975 - linkType: hard 20976 - 20977 - "source-map-js@npm:^1.2.1": 20166 + "source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.1": 20978 20167 version: 1.2.1 20979 20168 resolution: "source-map-js@npm:1.2.1" 20980 20169 checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf ··· 21198 20387 languageName: node 21199 20388 linkType: hard 21200 20389 21201 - "string-argv@npm:^0.3.1, string-argv@npm:~0.3.2": 20390 + "string-argv@npm:~0.3.2": 21202 20391 version: 0.3.2 21203 20392 resolution: "string-argv@npm:0.3.2" 21204 20393 checksum: 10c0/75c02a83759ad1722e040b86823909d9a2fc75d15dd71ec4b537c3560746e33b5f5a07f7332d1e3f88319909f82190843aa2f0a0d8c8d591ec08e93d5b8dec82 ··· 21508 20697 languageName: node 21509 20698 linkType: hard 21510 20699 21511 - "stylelint@npm:^16.10.0": 21512 - version: 16.10.0 21513 - resolution: "stylelint@npm:16.10.0" 20700 + "stylelint@npm:^16.11.0": 20701 + version: 16.11.0 20702 + resolution: "stylelint@npm:16.11.0" 21514 20703 dependencies: 21515 - "@csstools/css-parser-algorithms": "npm:^3.0.1" 21516 - "@csstools/css-tokenizer": "npm:^3.0.1" 21517 - "@csstools/media-query-list-parser": "npm:^3.0.1" 21518 - "@csstools/selector-specificity": "npm:^4.0.0" 20704 + "@csstools/css-parser-algorithms": "npm:^3.0.4" 20705 + "@csstools/css-tokenizer": "npm:^3.0.3" 20706 + "@csstools/media-query-list-parser": "npm:^4.0.2" 20707 + "@csstools/selector-specificity": "npm:^5.0.0" 21519 20708 "@dual-bundle/import-meta-resolve": "npm:^4.1.0" 21520 20709 balanced-match: "npm:^2.0.0" 21521 20710 colord: "npm:^2.9.3" 21522 20711 cosmiconfig: "npm:^9.0.0" 21523 20712 css-functions-list: "npm:^3.2.3" 21524 - css-tree: "npm:^3.0.0" 20713 + css-tree: "npm:^3.0.1" 21525 20714 debug: "npm:^4.3.7" 21526 20715 fast-glob: "npm:^3.3.2" 21527 20716 fastest-levenshtein: "npm:^1.0.16" ··· 21533 20722 ignore: "npm:^6.0.2" 21534 20723 imurmurhash: "npm:^0.1.4" 21535 20724 is-plain-object: "npm:^5.0.0" 21536 - known-css-properties: "npm:^0.34.0" 20725 + known-css-properties: "npm:^0.35.0" 21537 20726 mathml-tag-names: "npm:^2.1.3" 21538 20727 meow: "npm:^13.2.0" 21539 20728 micromatch: "npm:^4.0.8" 21540 20729 normalize-path: "npm:^3.0.0" 21541 - picocolors: "npm:^1.0.1" 21542 - postcss: "npm:^8.4.47" 20730 + picocolors: "npm:^1.1.1" 20731 + postcss: "npm:^8.4.49" 21543 20732 postcss-resolve-nested-selector: "npm:^0.1.6" 21544 20733 postcss-safe-parser: "npm:^7.0.1" 21545 - postcss-selector-parser: "npm:^6.1.2" 20734 + postcss-selector-parser: "npm:^7.0.0" 21546 20735 postcss-value-parser: "npm:^4.2.0" 21547 20736 resolve-from: "npm:^5.0.0" 21548 20737 string-width: "npm:^4.2.3" ··· 21552 20741 write-file-atomic: "npm:^5.0.1" 21553 20742 bin: 21554 20743 stylelint: bin/stylelint.mjs 21555 - checksum: 10c0/d07dd156c225d16c740995daacd78090f7fc317602e87bda2fca323a4ae427a8526d724f3089df3b2185df4520f987547668ceea9b30985988ccbc514034aa21 20744 + checksum: 10c0/65638247fb4e5eacb032e3a98412a13ad8b343d2d58e22d61b96ada72808b5b7e736c845937b3bcfde04c0bfa2120383b507e530afe876dafe824a93c337258f 21556 20745 languageName: node 21557 20746 linkType: hard 21558 20747 ··· 21757 20946 languageName: node 21758 20947 linkType: hard 21759 20948 21760 - "svelte-store2storage@npm:^1.0.0": 21761 - version: 1.0.0 21762 - resolution: "svelte-store2storage@npm:1.0.0" 21763 - checksum: 10c0/36f4f5425e042cf96af42550173b9ca4845d092c6aab3a287903a7ca5bf25619d12a553b98bf8bb2b1f74efe62cb4664f36b5b264c0dff14d792f4ef329e04da 20949 + "svelte-store2storage@npm:^2.0.0": 20950 + version: 2.0.0 20951 + resolution: "svelte-store2storage@npm:2.0.0" 20952 + checksum: 10c0/77adbf91d0c10558dd0ac0eff786f1034203cec100cab0bf4f126d8edccf4e2eca0562cab571646bbd347e31ecb656ddd91cadd2ee13105b3647464ba14590e1 21764 20953 languageName: node 21765 20954 linkType: hard 21766 20955 ··· 21794 20983 linkType: hard 21795 20984 21796 20985 "svelte@npm:^5.0.0": 21797 - version: 5.2.4 21798 - resolution: "svelte@npm:5.2.4" 20986 + version: 5.2.7 20987 + resolution: "svelte@npm:5.2.7" 21799 20988 dependencies: 21800 20989 "@ampproject/remapping": "npm:^2.3.0" 21801 20990 "@jridgewell/sourcemap-codec": "npm:^1.5.0" ··· 21810 20999 locate-character: "npm:^3.0.0" 21811 21000 magic-string: "npm:^0.30.11" 21812 21001 zimmerframe: "npm:^1.1.2" 21813 - checksum: 10c0/c60e3d0a6037f55e1cfe076b6a50731da28ee5e0aa329bbdcfb116f26b969bcb418eaa462f10d1ec661ede9c0f233155cfc55f8d652c6c90bc7daa26bf1b4d61 21002 + checksum: 10c0/6913d4e379ee1073ff3e93dfb6b75d35e2279f32087767c47d886f2194bb3111f88d8379c595ba473b95a109bc765c1dd0b32ab25dcd1aadb5d846f3a7f4b236 21814 21003 languageName: node 21815 21004 linkType: hard 21816 21005 ··· 22038 21227 languageName: node 22039 21228 linkType: hard 22040 21229 21230 + "tinyexec@npm:^0.3.1": 21231 + version: 0.3.1 21232 + resolution: "tinyexec@npm:0.3.1" 21233 + checksum: 10c0/11e7a7c5d8b3bddf8b5cbe82a9290d70a6fad84d528421d5d18297f165723cb53d2e737d8f58dcce5ca56f2e4aa2d060f02510b1f8971784f97eb3e9aec28f09 21234 + languageName: node 21235 + linkType: hard 21236 + 22041 21237 "tippy.js@npm:~6.0.1": 22042 21238 version: 6.0.3 22043 21239 resolution: "tippy.js@npm:6.0.3" ··· 22053 21249 dependencies: 22054 21250 os-tmpdir: "npm:~1.0.2" 22055 21251 checksum: 10c0/69863947b8c29cabad43fe0ce65cec5bb4b481d15d4b4b21e036b060b3edbf3bc7a5541de1bacb437bb3f7c4538f669752627fdf9b4aaf034cebd172ba373408 22056 - languageName: node 22057 - linkType: hard 22058 - 22059 - "to-fast-properties@npm:^2.0.0": 22060 - version: 2.0.0 22061 - resolution: "to-fast-properties@npm:2.0.0" 22062 - checksum: 10c0/b214d21dbfb4bce3452b6244b336806ffea9c05297148d32ebb428d5c43ce7545bdfc65a1ceb58c9ef4376a65c0cb2854d645f33961658b3e3b4f84910ddcdd7 22063 21252 languageName: node 22064 21253 linkType: hard 22065 21254 ··· 22158 21347 languageName: node 22159 21348 linkType: hard 22160 21349 21350 + "tree-kill@npm:^1.2.2": 21351 + version: 1.2.2 21352 + resolution: "tree-kill@npm:1.2.2" 21353 + bin: 21354 + tree-kill: cli.js 21355 + checksum: 10c0/7b1b7c7f17608a8f8d20a162e7957ac1ef6cd1636db1aba92f4e072dc31818c2ff0efac1e3d91064ede67ed5dc57c565420531a8134090a12ac10cf792ab14d2 21356 + languageName: node 21357 + linkType: hard 21358 + 22161 21359 "trim-lines@npm:^3.0.0": 22162 21360 version: 3.0.1 22163 21361 resolution: "trim-lines@npm:3.0.1" ··· 22257 21455 languageName: node 22258 21456 linkType: hard 22259 21457 22260 - "tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.1.0, tslib@npm:^2.3.1, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.5.2, tslib@npm:^2.6.1, tslib@npm:^2.6.2, tslib@npm:^2.6.3": 22261 - version: 2.6.3 22262 - resolution: "tslib@npm:2.6.3" 22263 - checksum: 10c0/2598aef53d9dbe711af75522464b2104724d6467b26a60f2bdac8297d2b5f1f6b86a71f61717384aa8fd897240467aaa7bcc36a0700a0faf751293d1331db39a 22264 - languageName: node 22265 - linkType: hard 22266 - 22267 - "tslib@npm:^2.8.1": 21458 + "tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.1.0, tslib@npm:^2.3.1, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.5.2, tslib@npm:^2.6.1, tslib@npm:^2.6.2, tslib@npm:^2.6.3, tslib@npm:^2.8.1": 22268 21459 version: 2.8.1 22269 21460 resolution: "tslib@npm:2.8.1" 22270 21461 checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 ··· 22326 21517 languageName: node 22327 21518 linkType: hard 22328 21519 22329 - "type-detect@npm:^4.0.8": 22330 - version: 4.1.0 22331 - resolution: "type-detect@npm:4.1.0" 22332 - checksum: 10c0/df8157ca3f5d311edc22885abc134e18ff8ffbc93d6a9848af5b682730ca6a5a44499259750197250479c5331a8a75b5537529df5ec410622041650a7f293e2a 22333 - languageName: node 22334 - linkType: hard 22335 - 22336 21520 "type-fest@npm:^0.13.1": 22337 21521 version: 0.13.1 22338 21522 resolution: "type-fest@npm:0.13.1" ··· 22441 21625 languageName: node 22442 21626 linkType: hard 22443 21627 22444 - "ufo@npm:^1.5.3": 21628 + "ufo@npm:^1.5.3, ufo@npm:^1.5.4": 22445 21629 version: 1.5.4 22446 21630 resolution: "ufo@npm:1.5.4" 22447 21631 checksum: 10c0/b5dc4dc435c49c9ef8890f1b280a19ee4d0954d1d6f9ab66ce62ce64dd04c7be476781531f952a07c678d51638d02ad4b98e16237be29149295b0f7c09cda765 ··· 22484 21668 version: 2.0.5 22485 21669 resolution: "undefsafe@npm:2.0.5" 22486 21670 checksum: 10c0/96c0466a5fbf395917974a921d5d4eee67bca4b30d3a31ce7e621e0228c479cf893e783a109af6e14329b52fe2f0cb4108665fad2b87b0018c0df6ac771261d5 22487 - languageName: node 22488 - linkType: hard 22489 - 22490 - "undici-types@npm:~6.11.1": 22491 - version: 6.11.1 22492 - resolution: "undici-types@npm:6.11.1" 22493 - checksum: 10c0/d8f5739a8e6c779d72336c82deb49c56d5ac9f9f6e0eb2e8dd4d3f6929ae9db7cde370d2e46516fe6cad04ea53e790c5e16c4c75eed7cd0f9bd31b0763bb2fa3 22494 21671 languageName: node 22495 21672 linkType: hard 22496 21673 ··· 22728 21905 languageName: node 22729 21906 linkType: hard 22730 21907 22731 - "unplugin-icons@npm:^0.18.5": 22732 - version: 0.18.5 22733 - resolution: "unplugin-icons@npm:0.18.5" 21908 + "unplugin-icons@npm:^0.20.2": 21909 + version: 0.20.2 21910 + resolution: "unplugin-icons@npm:0.20.2" 22734 21911 dependencies: 22735 - "@antfu/install-pkg": "npm:^0.3.1" 22736 - "@antfu/utils": "npm:^0.7.7" 22737 - "@iconify/utils": "npm:^2.1.22" 22738 - debug: "npm:^4.3.4" 21912 + "@antfu/install-pkg": "npm:^0.5.0" 21913 + "@antfu/utils": "npm:^0.7.10" 21914 + "@iconify/utils": "npm:^2.1.33" 21915 + debug: "npm:^4.3.7" 22739 21916 kolorist: "npm:^1.8.0" 22740 - local-pkg: "npm:^0.5.0" 22741 - unplugin: "npm:^1.6.0" 21917 + local-pkg: "npm:^0.5.1" 21918 + unplugin: "npm:^1.16.0" 22742 21919 peerDependencies: 22743 21920 "@svgr/core": ">=7.0.0" 22744 21921 "@svgx/core": ^1.0.1 22745 21922 "@vue/compiler-sfc": ^3.0.2 || ^2.7.0 21923 + svelte: ^3.0.0 || ^4.0.0 || ^5.0.0 22746 21924 vue-template-compiler: ^2.6.12 22747 21925 vue-template-es2015-compiler: ^1.9.0 22748 21926 peerDependenciesMeta: ··· 22752 21930 optional: true 22753 21931 "@vue/compiler-sfc": 22754 21932 optional: true 21933 + svelte: 21934 + optional: true 22755 21935 vue-template-compiler: 22756 21936 optional: true 22757 21937 vue-template-es2015-compiler: 22758 21938 optional: true 22759 - checksum: 10c0/8dfd45338ea12b098e86c08efb159205278160361093f3a0ba44ad44ecbb8705ba175421370cbb6b89c36a9129735fbaf4b5038f8b595a2894a042dc20254109 21939 + checksum: 10c0/b8e61756f15033f8b99715d2f955c53e117244b6cbd78482c0df54c483f5e300e194409a756c0eec5abe50b6335f08256512c8dde38999b635438391454abf61 22760 21940 languageName: node 22761 21941 linkType: hard 22762 21942 ··· 22772 21952 languageName: node 22773 21953 linkType: hard 22774 21954 22775 - "unplugin@npm:^1.6.0": 22776 - version: 1.12.0 22777 - resolution: "unplugin@npm:1.12.0" 21955 + "unplugin@npm:^1.16.0": 21956 + version: 1.16.0 21957 + resolution: "unplugin@npm:1.16.0" 22778 21958 dependencies: 22779 - acorn: "npm:^8.12.1" 22780 - chokidar: "npm:^3.6.0" 22781 - webpack-sources: "npm:^3.2.3" 21959 + acorn: "npm:^8.14.0" 22782 21960 webpack-virtual-modules: "npm:^0.6.2" 22783 - checksum: 10c0/d4ca9508adbc3724fbafe0eec50e346b3772d3bca7881f20b29d403c576fae5ac2f1224cc84481913396e9c52cba5e934d2815d1b2a206c439fdc52ec39889b8 22784 - languageName: node 22785 - linkType: hard 22786 - 22787 - "update-browserslist-db@npm:^1.1.0": 22788 - version: 1.1.0 22789 - resolution: "update-browserslist-db@npm:1.1.0" 22790 - dependencies: 22791 - escalade: "npm:^3.1.2" 22792 - picocolors: "npm:^1.0.1" 22793 - peerDependencies: 22794 - browserslist: ">= 4.21.0" 22795 - bin: 22796 - update-browserslist-db: cli.js 22797 - checksum: 10c0/a7452de47785842736fb71547651c5bbe5b4dc1e3722ccf48a704b7b34e4dcf633991eaa8e4a6a517ffb738b3252eede3773bef673ef9021baa26b056d63a5b9 21961 + checksum: 10c0/547f6bd5ec1dd7411533e68e73c60d5e9527e68d52aa326442650d084866ed3307ac68719068abae23ceab09db197cad43b382a7e69c2d8ca338b27802392fed 22798 21962 languageName: node 22799 21963 linkType: hard 22800 21964 ··· 23599 22763 languageName: node 23600 22764 linkType: hard 23601 22765 23602 - "yaml@npm:^2.0.0, yaml@npm:^2.5.1": 23603 - version: 2.5.1 23604 - resolution: "yaml@npm:2.5.1" 23605 - bin: 23606 - yaml: bin.mjs 23607 - checksum: 10c0/40fba5682898dbeeb3319e358a968fe886509fab6f58725732a15f8dda3abac509f91e76817c708c9959a15f786f38ff863c1b88062d7c1162c5334a7d09cb4a 23608 - languageName: node 23609 - linkType: hard 23610 - 23611 - "yaml@npm:^2.6.1": 22766 + "yaml@npm:^2.0.0, yaml@npm:^2.5.1, yaml@npm:^2.6.1": 23612 22767 version: 2.6.1 23613 22768 resolution: "yaml@npm:2.6.1" 23614 22769 bin: ··· 23618 22773 linkType: hard 23619 22774 23620 22775 "yaml@npm:~2.5.0": 23621 - version: 2.5.0 23622 - resolution: "yaml@npm:2.5.0" 22776 + version: 2.5.1 22777 + resolution: "yaml@npm:2.5.1" 23623 22778 bin: 23624 22779 yaml: bin.mjs 23625 - checksum: 10c0/771a1df083c8217cf04ef49f87244ae2dd7d7457094425e793b8f056159f167602ce172aa32d6bca21f787d24ec724aee3cecde938f6643564117bd151452631 22780 + checksum: 10c0/40fba5682898dbeeb3319e358a968fe886509fab6f58725732a15f8dda3abac509f91e76817c708c9959a15f786f38ff863c1b88062d7c1162c5334a7d09cb4a 23626 22781 languageName: node 23627 22782 linkType: hard 23628 22783