From 4478865cc1fe32d35f31811c3b59e0455ba41fa8 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Sun, 29 Sep 2024 08:48:13 +0800 Subject: [PATCH] build: fetch cache should take source config intro consideration, fix #93 --- package.json | 1 + packages/tm-grammars/README.md | 2 +- packages/tm-grammars/grammars/sass.json | 4 +- packages/tm-grammars/index.d.ts | 1 + packages/tm-grammars/index.js | 234 ++++- packages/tm-themes/index.d.ts | 1 + packages/tm-themes/index.js | 51 + pnpm-lock.yaml | 1131 +++++++++++++---------- pnpm-workspace.yaml | 18 +- scripts/shared/github.ts | 8 +- 10 files changed, 943 insertions(+), 508 deletions(-) diff --git a/package.json b/package.json index 0916e23..c1afe70 100644 --- a/package.json +++ b/package.json @@ -46,6 +46,7 @@ "lint-staged": "catalog:", "octokit": "catalog:", "ofetch": "catalog:", + "ohash": "^1.1.4", "oniguruma-to-js": "catalog:", "p-limit": "catalog:", "pnpm": "catalog:", diff --git a/packages/tm-grammars/README.md b/packages/tm-grammars/README.md index f01e587..77047d2 100644 --- a/packages/tm-grammars/README.md +++ b/packages/tm-grammars/README.md @@ -137,7 +137,7 @@ import { grammars } from 'tm-grammars' | `matlab` | | [mathworks/MATLAB-Language-grammar](https://github.com/mathworks/MATLAB-Language-grammar/blob/69dbf20c1eb19efd629c0438a2a493e60617e8de/Matlab.tmbundle/Syntaxes/MATLAB.tmLanguage) | | | 18.56 kB | | `mdc` | | [nuxtlabs/vscode-mdc](https://github.com/nuxtlabs/vscode-mdc/blob/6294dbce9706f538a521e7dccce9609e928dc3be/syntaxes/mdc.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/nuxtlabs/vscode-mdc/main/LICENSE) | `markdown` `yaml` `html-derivative` | 18.85 kB | | `mdx` | | [wooorm/markdown-tm-language](https://github.com/wooorm/markdown-tm-language/blob/5caa71e2bbddea59b27c6a5a346881cd10fa0f5f/source.mdx.tmLanguage) | [MIT](https://raw.githubusercontent.com/wooorm/markdown-tm-language/main/license) | `tsx` `toml` `yaml` `c` `clojure` `coffee` `cpp` `csharp` `css` `diff` `docker` `elixir` `elm` `erlang` `go` `graphql` `haskell` `html` `ini` `java` `javascript` `json` `julia` `kotlin` `less` `lua` `make` `markdown` `objective-c` `perl` `python` `r` `ruby` `rust` `scala` `scss` `shellscript` `shellsession` `sql` `xml` `swift` `typescript` | 130.88 kB | -| `mermaid` | | [bpruitt-goddard/vscode-mermaid-syntax-highlight](https://github.com/bpruitt-goddard/vscode-mermaid-syntax-highlight/blob/8b62f487cb7a89afcd152febfbf47f5d4787657f/syntaxes/mermaid.tmLanguage.yaml) | [MIT](https://raw.githubusercontent.com/bpruitt-goddard/vscode-mermaid-syntax-highlight/master/LICENSE) | | 27.89 kB | +| `mermaid` | `mmd` | [bpruitt-goddard/vscode-mermaid-syntax-highlight](https://github.com/bpruitt-goddard/vscode-mermaid-syntax-highlight/blob/8b62f487cb7a89afcd152febfbf47f5d4787657f/syntaxes/mermaid.tmLanguage.yaml) | [MIT](https://raw.githubusercontent.com/bpruitt-goddard/vscode-mermaid-syntax-highlight/master/LICENSE) | | 27.89 kB | | `mojo` | | [modularml/mojo-syntax](https://github.com/modularml/mojo-syntax/blob/46eccdaeda2b1587e9b82808cdb35670f359d16d/syntaxes/mojo.syntax.json) | [MIT](https://raw.githubusercontent.com/modularml/mojo-syntax/main/LICENSE) | | 68.68 kB | | `move` | | [damirka/move-syntax](https://github.com/damirka/move-syntax/blob/4b04e9d614901097ffc0663fef40bd3e5d87779e/syntaxes/move.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/damirka/move-syntax/main/LICENSE) | | 19.27 kB | | `narrat` | `nar` | [liana-p/narrat-syntax-highlighting-vscode](https://github.com/liana-p/narrat-syntax-highlighting-vscode/blob/00d4b410338fc50ca0ce77a1f7e873c1fb66d376/syntaxes/narrat.tmLanguage.yaml) | [MIT](https://raw.githubusercontent.com/liana-p/narrat-syntax-highlighting-vscode/main/LICENSE) | | 3.39 kB | diff --git a/packages/tm-grammars/grammars/sass.json b/packages/tm-grammars/grammars/sass.json index 6fdb8db..745b7cf 100644 --- a/packages/tm-grammars/grammars/sass.json +++ b/packages/tm-grammars/grammars/sass.json @@ -3,8 +3,8 @@ "fileTypes": [ "sass" ], - "foldingStartMarker": "/\\*|^#|^\\*|^\\b|*#?region|^\\.", - "foldingStopMarker": "\\*/|*#?endregion|^\\s*$", + "foldingStartMarker": "/\\*|^#|^\\*|^\\b|\\*#?region|^\\.", + "foldingStopMarker": "\\*/|\\*#?endregion|^\\s*$", "name": "sass", "patterns": [ { diff --git a/packages/tm-grammars/index.d.ts b/packages/tm-grammars/index.d.ts index aa7466b..e49c949 100644 --- a/packages/tm-grammars/index.d.ts +++ b/packages/tm-grammars/index.d.ts @@ -23,6 +23,7 @@ export interface GrammarInfo { embedded?: string[] embeddedIn?: string[] byteSize: number + hash: string } const grammars: GrammarInfo[] diff --git a/packages/tm-grammars/index.js b/packages/tm-grammars/index.js index f6b6948..3bfe1fe 100644 --- a/packages/tm-grammars/index.js +++ b/packages/tm-grammars/index.js @@ -7,6 +7,7 @@ export const grammars = [ { byteSize: 15553, displayName: 'ABAP', + hash: '3eE0JzViWX', lastUpdate: '2023-07-29T13:25:39Z', name: 'abap', scopeName: 'source.abap', @@ -19,6 +20,7 @@ export const grammars = [ 'scripting', ], displayName: 'ActionScript', + hash: '6OPWQM2hdm', lastUpdate: '2024-06-05T14:26:29Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/BowlerHatLLC/vscode-as3mxml/main/LICENSE', @@ -30,6 +32,7 @@ export const grammars = [ { byteSize: 46810, displayName: 'Ada', + hash: 'WzJWwdRWUl', lastUpdate: '2023-06-01T16:49:44Z', license: 'GPL-3.0', licenseUrl: 'https://raw.githubusercontent.com/AdaCore/ada_language_server/master/LICENSE', @@ -51,6 +54,7 @@ export const grammars = [ 'angular-template', 'angular-template-blocks', ], + hash: 'e4qpA2vWkd', lastUpdate: '2018-10-04T09:01:56Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/onivim/vscode-exthost/master/LICENSE.txt', @@ -73,6 +77,7 @@ export const grammars = [ 'angular-template', 'angular-template-blocks', ], + hash: 'O1GUqbmfdm', lastUpdate: '2024-01-26T12:06:22Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -84,6 +89,7 @@ export const grammars = [ { byteSize: 12867, displayName: 'Apache Conf', + hash: '66FUGT7ysN', lastUpdate: '2020-05-30T18:14:18Z', license: 'NOASSERTION', licenseUrl: 'https://raw.githubusercontent.com/colinta/ApacheConf.tmLanguage/main/LICENSE', @@ -95,6 +101,7 @@ export const grammars = [ { byteSize: 44827, displayName: 'Apex', + hash: 'dQhvYwVL9a', lastUpdate: '2023-03-15T18:31:57Z', license: 'NOASSERTION', licenseUrl: 'https://raw.githubusercontent.com/forcedotcom/apex-tmLanguage/main/LICENSE', @@ -113,6 +120,7 @@ export const grammars = [ 'javascript', 'json', ], + hash: 'kWKXgigD9i', lastUpdate: '2019-05-06T11:54:42Z', name: 'apl', scopeName: 'source.apl', @@ -125,6 +133,7 @@ export const grammars = [ 'scripting', ], displayName: 'AppleScript', + hash: 'GNXSOPQmIN', lastUpdate: '2019-09-03T19:15:57Z', name: 'applescript', scopeName: 'source.applescript', @@ -134,6 +143,7 @@ export const grammars = [ { byteSize: 6877, displayName: 'Ara', + hash: 'y8JzrmD5bp', lastUpdate: '2023-01-14T07:35:56Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/ara-lang/highlighting/main/LICENSE-APACHE', @@ -194,6 +204,7 @@ export const grammars = [ 'typescript', 'xml', ], + hash: 'znnGEI54k2', lastUpdate: '2024-08-06T12:13:07Z', license: 'NOASSERTION', licenseUrl: 'https://raw.githubusercontent.com/asciidoctor/asciidoctor-vscode/master/LICENSE', @@ -205,6 +216,7 @@ export const grammars = [ { byteSize: 39422, displayName: 'Assembly', + hash: 'X0Hkjzs06l', lastUpdate: '2023-07-30T20:16:37Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/13xforever/x86_64-assembly-vscode/master/LICENSE.txt', @@ -231,6 +243,7 @@ export const grammars = [ 'postcss', 'tsx', ], + hash: 'CTTcS9p5RI', lastUpdate: '2024-03-23T17:37:42Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/withastro/language-tools/main/LICENSE', @@ -242,6 +255,7 @@ export const grammars = [ { byteSize: 5295, displayName: 'AWK', + hash: 'UE9qChc4nQ', lastUpdate: '2016-01-20T17:08:42Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/luggage66/vscode-awk/master/LICENSE.txt', @@ -253,6 +267,7 @@ export const grammars = [ { byteSize: 56541, displayName: 'Ballerina', + hash: 'yodBIfiYhr', lastUpdate: '2023-08-21T05:23:05Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/master/LICENSE', @@ -270,6 +285,7 @@ export const grammars = [ 'scripting', ], displayName: 'Batch File', + hash: 'GnuiGSDvHB', lastUpdate: '2021-05-04T11:41:54Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -281,6 +297,7 @@ export const grammars = [ { byteSize: 10366, displayName: 'Beancount', + hash: 'xU8OQFKOJx', lastUpdate: '2024-01-11T08:43:22Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/Lencerf/vscode-beancount/master/LICENSE', @@ -295,6 +312,7 @@ export const grammars = [ ], byteSize: 2143, displayName: 'Berry', + hash: 'Wr01IhuHbu', lastUpdate: '2023-07-16T13:39:37Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/berry-lang/berry/master/LICENSE', @@ -309,6 +327,7 @@ export const grammars = [ 'markup', ], displayName: 'BibTeX', + hash: 'Q2XvnQB6rS', lastUpdate: '2024-04-09T10:20:39Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -320,6 +339,7 @@ export const grammars = [ { byteSize: 4027, displayName: 'Bicep', + hash: 'kdKJ1HGgi8', lastUpdate: '2024-08-22T16:30:14Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/Azure/bicep/main/LICENSE', @@ -343,6 +363,7 @@ export const grammars = [ 'json', 'css', ], + hash: 'Cm4jIukdax', lastUpdate: '2021-06-28T08:16:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/spatie/shiki-php/main/LICENSE.md', @@ -357,6 +378,7 @@ export const grammars = [ 'general', ], displayName: 'C', + hash: 'RJ6i0OPivg', lastUpdate: '2022-06-10T13:55:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -371,6 +393,7 @@ export const grammars = [ ], byteSize: 10576, displayName: 'Cadence', + hash: 'E6XNWJFi4t', lastUpdate: '2022-07-04T20:41:15Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/onflow/vscode-cadence/master/LICENSE', @@ -385,6 +408,7 @@ export const grammars = [ 'lisp', ], displayName: 'Clarity', + hash: 'hjEIavuTMb', lastUpdate: '2024-06-28T13:13:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/hirosystems/clarity.tmbundle/main/LICENSE', @@ -403,6 +427,7 @@ export const grammars = [ 'lisp', ], displayName: 'Clojure', + hash: 'WGN0H9kqqh', lastUpdate: '2022-01-31T15:49:23Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -417,6 +442,7 @@ export const grammars = [ 'config', ], displayName: 'CMake', + hash: 'erj3kjKdED', lastUpdate: '2017-11-20T20:37:32Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/twxs/vs.language.cmake/master/LICENSE', @@ -432,6 +458,7 @@ export const grammars = [ 'html', 'java', ], + hash: 'iGubWJ6smb', lastUpdate: '2024-09-07T21:44:17Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/spgennard/vscode_cobol/main/LICENSE', @@ -443,6 +470,7 @@ export const grammars = [ { byteSize: 471, displayName: 'CODEOWNERS', + hash: 'BiOl3iCBbE', lastUpdate: '2018-12-19T21:50:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/jasonnutter/vscode-codeowners/master/LICENSE.txt', @@ -457,6 +485,7 @@ export const grammars = [ ], byteSize: 32574, displayName: 'CodeQL', + hash: 'rtbAK5lO8i', lastUpdate: '2023-09-08T08:43:39Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/github/vscode-codeql/main/LICENSE.md', @@ -479,6 +508,7 @@ export const grammars = [ embedded: [ 'javascript', ], + hash: 'TOcwgSFz4o', lastUpdate: '2019-01-25T23:34:58Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -497,6 +527,7 @@ export const grammars = [ 'lisp', ], displayName: 'Common Lisp', + hash: '6wTSn0CYAb', lastUpdate: '2024-05-10T18:29:42Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/qingpeng9802/vscode-common-lisp/master/LICENSE', @@ -511,6 +542,7 @@ export const grammars = [ 'general', ], displayName: 'Coq', + hash: 'xsxHofNiyS', lastUpdate: '2024-05-19T17:37:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/coq-community/vscoq/main/LICENSE', @@ -534,6 +566,7 @@ export const grammars = [ 'glsl', 'sql', ], + hash: 'MndDxpEycR', lastUpdate: '2023-03-29T09:38:06Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -553,6 +586,7 @@ export const grammars = [ 'javascript', 'shellscript', ], + hash: 'hkRCb4MprL', lastUpdate: '2024-02-26T14:51:19Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/crystal-lang-tools/vscode-crystal-lang/master/LICENSE', @@ -571,6 +605,7 @@ export const grammars = [ 'general', ], displayName: 'C#', + hash: '8AOwMrUpR4', lastUpdate: '2024-06-28T09:56:38Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -585,6 +620,7 @@ export const grammars = [ 'web', ], displayName: 'CSS', + hash: '40rg8BIqJp', lastUpdate: '2023-09-18T09:46:17Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -599,6 +635,7 @@ export const grammars = [ 'data', ], displayName: 'CSV', + hash: 'piTjrTXqM0', lastUpdate: '2019-01-31T01:50:13Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/mechatroner/vscode_rainbow_csv/master/LICENSE', @@ -610,6 +647,7 @@ export const grammars = [ { byteSize: 15989, displayName: 'CUE', + hash: 'CTawqx21KF', lastUpdate: '2021-08-03T05:05:40Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/cue-lang/vscode-cue/master/LICENSE', @@ -624,6 +662,7 @@ export const grammars = [ ], byteSize: 6496, displayName: 'Cypher', + hash: 'OgxeQc7itr', lastUpdate: '2023-01-17T10:10:13Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/adam-cowley/neo4j-vscode/main/LICENSE', @@ -635,6 +674,7 @@ export const grammars = [ { byteSize: 41180, displayName: 'D', + hash: 'KnYEmdZTmQ', lastUpdate: '2023-07-07T13:01:08Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/Pure-D/code-d/master/LICENSE.md', @@ -649,6 +689,7 @@ export const grammars = [ 'general', ], displayName: 'Dart', + hash: '42ZKRbACbo', lastUpdate: '2024-08-30T20:03:00Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -660,6 +701,7 @@ export const grammars = [ { byteSize: 5395, displayName: 'DAX', + hash: 'AQ1R9tWxFq', lastUpdate: '2021-08-10T18:28:52Z', name: 'dax', scopeName: 'source.dax', @@ -672,6 +714,7 @@ export const grammars = [ 'config', ], displayName: 'Desktop', + hash: 'OmKCNgkQZj', lastUpdate: '2021-07-19T18:36:02Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/nico-castell/desktop-file-support/main/LICENSE', @@ -686,6 +729,7 @@ export const grammars = [ 'utility', ], displayName: 'Diff', + hash: '4VNGD1sLSD', lastUpdate: '2021-11-12T09:59:52Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -703,6 +747,7 @@ export const grammars = [ 'config', ], displayName: 'Dockerfile', + hash: 'WxrGKvNU8U', lastUpdate: '2018-02-12T15:54:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -714,6 +759,7 @@ export const grammars = [ { byteSize: 1593, displayName: 'dotEnv', + hash: 'NXV89JmJiV', lastUpdate: '2023-06-15T08:23:24Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/dotenv-org/dotenv-vscode/master/LICENSE', @@ -725,6 +771,7 @@ export const grammars = [ { byteSize: 10014, displayName: 'Dream Maker', + hash: 'rT5Shtop8w', lastUpdate: '2017-01-06T06:55:48Z', name: 'dream-maker', scopeName: 'source.dm', @@ -739,6 +786,7 @@ export const grammars = [ 'html', 'html-derivative', ], + hash: '6wQc9KoT3g', lastUpdate: '2024-02-05T08:06:04Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/edge-js/edge-vscode/main/LICENSE.md', @@ -753,6 +801,7 @@ export const grammars = [ embedded: [ 'html', ], + hash: 'bm78ZT8qz7', lastUpdate: '2021-12-27T20:12:19Z', license: 'NOASSERTION', licenseUrl: 'https://raw.githubusercontent.com/elixir-editors/elixir-tmbundle/master/LICENSE', @@ -767,6 +816,7 @@ export const grammars = [ embedded: [ 'glsl', ], + hash: '419SHaU3SB', lastUpdate: '2020-08-01T18:50:23Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/elm-tooling/elm-language-client-vscode/main/LICENSE', @@ -784,6 +834,7 @@ export const grammars = [ 'lisp', ], displayName: 'Emacs Lisp', + hash: 'j1vLKKLByB', lastUpdate: '2023-09-07T13:17:43Z', license: 'ISC', licenseUrl: 'https://raw.githubusercontent.com/Alhadis/language-emacs-lisp/master/LICENSE.md', @@ -799,6 +850,7 @@ export const grammars = [ 'html', 'ruby', ], + hash: '1IUQ9qvXum', lastUpdate: '2014-10-30T18:38:50Z', name: 'erb', scopeName: 'text.html.erb', @@ -811,6 +863,7 @@ export const grammars = [ ], byteSize: 35395, displayName: 'Erlang', + hash: 'IcknwjfBvB', lastUpdate: '2024-06-18T19:26:56Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/erlang-ls/grammar/main/LICENSE', @@ -825,6 +878,7 @@ export const grammars = [ 'lisp', ], displayName: 'Fennel', + hash: 'jfjDIb262n', lastUpdate: '2021-05-05T22:44:42Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/kongeor/vsc-fennel/master/LICENSE', @@ -839,6 +893,7 @@ export const grammars = [ 'scripting', ], displayName: 'Fish', + hash: 'ASb25W2jcI', lastUpdate: '2022-01-23T01:18:50Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/bmalehorn/vscode-fish/master/LICENSE', @@ -853,6 +908,7 @@ export const grammars = [ ], byteSize: 3470, displayName: 'Fluent', + hash: '44jrgxkmab', lastUpdate: '2022-07-23T20:00:33Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/macabeus/vscode-fluent/master/LICENSE', @@ -872,6 +928,7 @@ export const grammars = [ embedded: [ 'fortran-free-form', ], + hash: 'uR6CHgkwG0', lastUpdate: '2021-11-09T22:09:17Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/fortran-lang/vscode-fortran-support/main/LICENSE', @@ -890,6 +947,7 @@ export const grammars = [ ], byteSize: 94922, displayName: 'Fortran (Free Form)', + hash: '6lHcSj9lTn', lastUpdate: '2023-05-09T01:04:12Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/fortran-lang/vscode-fortran-support/main/LICENSE', @@ -911,6 +969,7 @@ export const grammars = [ embedded: [ 'markdown', ], + hash: 'tCTkXKywyI', lastUpdate: '2024-09-27T08:27:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -926,6 +985,7 @@ export const grammars = [ 'gdshader', 'gdscript', ], + hash: 'BXLWIiNA5k', lastUpdate: '2023-12-06T14:53:10Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/godotengine/godot-vscode-plugin/master/LICENSE', @@ -937,6 +997,7 @@ export const grammars = [ { byteSize: 18143, displayName: 'GDScript', + hash: 'x6moy5fp9f', lastUpdate: '2024-09-15T20:04:31Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/godotengine/godot-vscode-plugin/master/LICENSE', @@ -948,6 +1009,7 @@ export const grammars = [ { byteSize: 6082, displayName: 'GDShader', + hash: '9V2Wy87u0W', lastUpdate: '2023-12-06T14:53:10Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/godotengine/godot-vscode-plugin/master/LICENSE', @@ -959,6 +1021,7 @@ export const grammars = [ { byteSize: 3186, displayName: 'Genie', + hash: 'YpRh0MPgqm', lastUpdate: '2021-05-28T08:53:39Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/vala-lang/vala-vscode/master/LICENSE', @@ -970,6 +1033,7 @@ export const grammars = [ { byteSize: 12425, displayName: 'Gherkin', + hash: 'SPvZe60Agr', lastUpdate: '2024-05-18T13:15:07Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/alexkrechik/VSCucumberAutoComplete/master/LICENSE', @@ -987,6 +1051,7 @@ export const grammars = [ embedded: [ 'diff', ], + hash: 'O04WSrmVWl', lastUpdate: '2023-02-07T12:40:16Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1004,6 +1069,7 @@ export const grammars = [ embedded: [ 'shellscript', ], + hash: 'PDaCUl3e8W', lastUpdate: '2021-11-12T10:35:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1015,6 +1081,7 @@ export const grammars = [ { byteSize: 2470, displayName: 'Gleam', + hash: 'hbDys2ygWA', lastUpdate: '2024-08-01T12:26:07Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/gleam-lang/vscode-gleam/main/LICENSE.txt', @@ -1035,6 +1102,7 @@ export const grammars = [ 'css', 'html', ], + hash: 'zKhmQF22hB', lastUpdate: '2024-03-15T16:05:31Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/lifeart/vsc-ember-syntax/master/LICENSE', @@ -1055,6 +1123,7 @@ export const grammars = [ 'javascript', 'html', ], + hash: 'Z1lUFESbzp', lastUpdate: '2024-03-15T16:05:31Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/lifeart/vsc-ember-syntax/master/LICENSE', @@ -1069,6 +1138,7 @@ export const grammars = [ embedded: [ 'c', ], + hash: 'BpRP8NoUHi', lastUpdate: '2014-07-27T13:53:58Z', name: 'glsl', scopeName: 'source.glsl', @@ -1078,6 +1148,7 @@ export const grammars = [ { byteSize: 14158, displayName: 'Gnuplot', + hash: 'RaizNtRaSh', lastUpdate: '2018-07-01T23:29:26Z', license: 'GPL-3.0', licenseUrl: 'https://raw.githubusercontent.com/MarioSchwalbe/vscode-gnuplot/master/LICENSE', @@ -1092,6 +1163,7 @@ export const grammars = [ 'general', ], displayName: 'Go', + hash: 'IfBCdLT6ko', lastUpdate: '2024-09-27T08:27:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1115,6 +1187,7 @@ export const grammars = [ 'jsx', 'tsx', ], + hash: 'Ex4avZPr6K', lastUpdate: '2021-09-27T21:24:32Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/graphql/vscode-graphql/master/LICENSE', @@ -1129,6 +1202,7 @@ export const grammars = [ 'general', ], displayName: 'Groovy', + hash: 'sG9Vj5vIIg', lastUpdate: '2018-02-12T15:54:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1147,6 +1221,7 @@ export const grammars = [ 'html', 'sql', ], + hash: 'alc789tue5', lastUpdate: '2022-10-03T22:33:42Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/slackhq/vscode-hack/master/LICENSE.md', @@ -1170,6 +1245,7 @@ export const grammars = [ 'markdown', 'css', ], + hash: 'rXdwknSi5U', lastUpdate: '2022-06-22T00:28:44Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/karuna/haml-vscode/master/LICENSE.md', @@ -1193,6 +1269,7 @@ export const grammars = [ 'javascript', 'yaml', ], + hash: 'qBBFvL9Wyc', lastUpdate: '2019-05-16T17:17:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1210,6 +1287,7 @@ export const grammars = [ 'general', ], displayName: 'Haskell', + hash: 'cU0bQGeuQR', lastUpdate: '2020-08-20T04:20:28Z', license: 'BSD-3-Clause', licenseUrl: 'https://raw.githubusercontent.com/octref/language-haskell/master/LICENSE', @@ -1224,6 +1302,7 @@ export const grammars = [ 'general', ], displayName: 'Haxe', + hash: 'h580k7GdRU', lastUpdate: '2024-04-19T14:01:24Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/vshaxe/haxe-TmLanguage/master/LICENSE.md', @@ -1235,6 +1314,7 @@ export const grammars = [ { byteSize: 11454, displayName: 'HashiCorp HCL', + hash: 'Uhq2GRBBdy', lastUpdate: '2024-09-17T14:22:47Z', license: 'MPL-2.0', licenseUrl: 'https://raw.githubusercontent.com/hashicorp/syntax/main/LICENSE', @@ -1249,6 +1329,7 @@ export const grammars = [ 'data', ], displayName: 'Hjson', + hash: '9FwZNCT2sZ', lastUpdate: '2018-10-25T15:31:53Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/hjson/textmate-hjson/master/LICENSE', @@ -1263,6 +1344,7 @@ export const grammars = [ 'dsl', ], displayName: 'HLSL', + hash: 'aPrA3obiV2', lastUpdate: '2020-02-03T12:01:47Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1282,6 +1364,7 @@ export const grammars = [ 'javascript', 'css', ], + hash: 'Uu19XF4XE5', lastUpdate: '2022-12-07T13:44:00Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1300,6 +1383,7 @@ export const grammars = [ embedded: [ 'html', ], + hash: 'ZJ6TTpr5xO', lastUpdate: '2018-10-04T09:01:56Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1321,6 +1405,7 @@ export const grammars = [ 'xml', 'graphql', ], + hash: 'ykvzg0eCo9', lastUpdate: '2023-07-24T09:58:17Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/Huachao/vscode-restclient/master/LICENSE', @@ -1338,6 +1423,7 @@ export const grammars = [ embedded: [ 'haxe', ], + hash: 'pFbMyZbLCf', lastUpdate: '2020-06-27T14:36:19Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/vshaxe/haxe-TmLanguage/master/LICENSE.md', @@ -1352,6 +1438,7 @@ export const grammars = [ 'lisp', ], displayName: 'Hy', + hash: 'zM8oPKwzTh', lastUpdate: '2023-09-11T00:57:08Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/hylang/vscode-hy/master/LICENSE.md', @@ -1369,6 +1456,7 @@ export const grammars = [ embedded: [ 'typescript', ], + hash: 'nQl8Ao9cbY', lastUpdate: '2023-12-15T08:11:58Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/imba/imba/master/LICENSE', @@ -1386,6 +1474,7 @@ export const grammars = [ 'data', ], displayName: 'INI', + hash: '8y1SYUozig', lastUpdate: '2018-02-12T15:54:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1400,6 +1489,7 @@ export const grammars = [ 'general', ], displayName: 'Java', + hash: 'a3zinzOAU7', lastUpdate: '2023-12-13T12:08:01Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1419,6 +1509,7 @@ export const grammars = [ 'general', ], displayName: 'JavaScript', + hash: 'kHhWzrEnL2', lastUpdate: '2024-01-26T12:06:22Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1437,6 +1528,7 @@ export const grammars = [ embedded: [ 'jinja-html', ], + hash: 'lS1WbbM6hM', lastUpdate: '2022-08-30T14:06:56Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/samuelcolvin/jinjahtml-vscode/main/LICENSE', @@ -1455,6 +1547,7 @@ export const grammars = [ embedded: [ 'javascript', ], + hash: 'EkhsfEj0Jh', lastUpdate: '2020-04-29T00:41:44Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/cdibbs/language-jison/master/LICENSE.md', @@ -1470,6 +1563,7 @@ export const grammars = [ 'data', ], displayName: 'JSON', + hash: 'xKGV3fHReP', lastUpdate: '2020-11-05T13:50:48Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1482,8 +1576,10 @@ export const grammars = [ byteSize: 3395, categories: [ 'data', + 'web', ], displayName: 'JSON5', + hash: 'Ef8vBWlkse', lastUpdate: '2016-10-01T11:46:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/mrmlnc/vscode-json5/master/LICENSE', @@ -1499,6 +1595,7 @@ export const grammars = [ 'data', ], displayName: 'JSON with Comments', + hash: 'rwj3a9NKpC', lastUpdate: '2023-05-25T08:02:57Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1514,6 +1611,7 @@ export const grammars = [ 'data', ], displayName: 'JSON Lines', + hash: 'blyxq6KuF3', lastUpdate: '2023-05-25T08:02:57Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1525,6 +1623,7 @@ export const grammars = [ { byteSize: 3398, displayName: 'Jsonnet', + hash: 'PKd5QcMRXu', lastUpdate: '2017-03-12T08:07:55Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/heptio/vscode-jsonnet/master/LICENSE', @@ -1539,6 +1638,7 @@ export const grammars = [ ], byteSize: 2852, displayName: 'JSSM', + hash: '1yKdjPSoLK', lastUpdate: '2017-08-20T01:05:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/StoneCypher/sublime-jssm/master/LICENSE', @@ -1553,6 +1653,7 @@ export const grammars = [ 'web', ], displayName: 'JSX', + hash: '8EwqYvbcQp', lastUpdate: '2024-01-26T12:06:22Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1578,6 +1679,7 @@ export const grammars = [ 'r', 'sql', ], + hash: 'Ravrn2ucL1', lastUpdate: '2024-07-29T09:33:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1596,6 +1698,7 @@ export const grammars = [ 'general', ], displayName: 'Kotlin', + hash: 'KuDDOzyJsj', lastUpdate: '2024-02-06T09:51:18Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/fwcd/vscode-kotlin/main/LICENSE', @@ -1610,6 +1713,7 @@ export const grammars = [ ], byteSize: 20066, displayName: 'Kusto', + hash: 'GIsYAb9W1i', lastUpdate: '2024-05-24T06:19:58Z', name: 'kusto', scopeName: 'source.kusto', @@ -1641,6 +1745,7 @@ export const grammars = [ 'yaml', 'scala', ], + hash: 'meu3IhWZF0', lastUpdate: '2024-09-27T08:27:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1658,6 +1763,7 @@ export const grammars = [ 'general', ], displayName: 'Lean 4', + hash: 'oNGmx5g75d', lastUpdate: '2024-04-19T14:33:46Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/leanprover/vscode-lean4/master/LICENSE', @@ -1672,6 +1778,7 @@ export const grammars = [ 'web', ], displayName: 'Less', + hash: 'z9fs42isrT', lastUpdate: '2024-08-30T20:03:00Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1689,6 +1796,7 @@ export const grammars = [ 'json', 'javascript', ], + hash: 'dGlIMw40f3', lastUpdate: '2023-01-04T20:47:26Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/Shopify/liquid-tm-grammar/main/LICENSE.md', @@ -1703,6 +1811,7 @@ export const grammars = [ 'utility', ], displayName: 'Log file', + hash: 'cLVL4Fdjqr', lastUpdate: '2024-01-28T12:15:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/emilast/vscode-logfile-highlighter/master/LICENSE', @@ -1714,6 +1823,7 @@ export const grammars = [ { byteSize: 3096, displayName: 'Logo', + hash: '01uOdg2jPA', lastUpdate: '2011-11-14T07:42:34Z', name: 'logo', scopeName: 'source.logo', @@ -1729,6 +1839,7 @@ export const grammars = [ embedded: [ 'c', ], + hash: 'haDsD2DcKZ', lastUpdate: '2024-04-26T11:52:52Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1740,6 +1851,7 @@ export const grammars = [ { byteSize: 12165, displayName: 'Luau', + hash: 'oN3Bxv5DO5', lastUpdate: '2024-06-22T10:31:37Z', license: 'NOASSERTION', licenseUrl: 'https://raw.githubusercontent.com/JohnnyMorganz/Luau.tmLanguage/main/LICENSE.md', @@ -1757,6 +1869,7 @@ export const grammars = [ 'config', ], displayName: 'Makefile', + hash: 'D7JKLIcty1', lastUpdate: '2023-01-10T10:50:28Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1831,6 +1944,7 @@ export const grammars = [ 'bibtex', 'html-derivative', ], + hash: 'OOilfgoNZ5', lastUpdate: '2024-07-08T18:33:21Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -1852,6 +1966,7 @@ export const grammars = [ 'scss', 'javascript', ], + hash: 'ubxMhuahEy', lastUpdate: '2023-03-24T17:23:39Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/marko-js/marko-tmbundle/master/LICENSE', @@ -1863,6 +1978,7 @@ export const grammars = [ { byteSize: 19006, displayName: 'MATLAB', + hash: 'j09IZ1V32M', lastUpdate: '2020-02-01T01:40:30Z', name: 'matlab', scopeName: 'source.matlab', @@ -1881,6 +1997,7 @@ export const grammars = [ 'yaml', 'html-derivative', ], + hash: 'YyXgUS9Tnz', lastUpdate: '2023-09-01T11:16:46Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/nuxtlabs/vscode-mdc/main/LICENSE', @@ -1940,6 +2057,7 @@ export const grammars = [ 'swift', 'typescript', ], + hash: '2QPDaRfr9C', lastUpdate: '2024-09-16T12:25:05Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/wooorm/markdown-tm-language/main/license', @@ -1949,8 +2067,12 @@ export const grammars = [ source: 'https://github.com/wooorm/markdown-tm-language/blob/5caa71e2bbddea59b27c6a5a346881cd10fa0f5f/source.mdx.tmLanguage', }, { + aliases: [ + 'mmd', + ], byteSize: 28557, displayName: 'Mermaid', + hash: '3OqI6lV2PD', lastUpdate: '2022-06-10T19:46:22Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/bpruitt-goddard/vscode-mermaid-syntax-highlight/master/LICENSE', @@ -1962,6 +2084,7 @@ export const grammars = [ { byteSize: 70326, displayName: 'Mojo', + hash: 'AI2YknoI0Y', lastUpdate: '2024-03-18T01:05:25Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/modularml/mojo-syntax/main/LICENSE', @@ -1973,6 +2096,7 @@ export const grammars = [ { byteSize: 19734, displayName: 'Move', + hash: 'Fg60NNORAI', lastUpdate: '2024-09-17T09:24:46Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/damirka/move-syntax/main/LICENSE', @@ -1987,6 +2111,7 @@ export const grammars = [ ], byteSize: 3472, displayName: 'Narrat Language', + hash: 'EnNnXnoQ10', lastUpdate: '2022-08-06T14:25:00Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/liana-p/narrat-syntax-highlighting-vscode/main/LICENSE', @@ -2001,6 +2126,7 @@ export const grammars = [ ], byteSize: 4505, displayName: 'Nextflow', + hash: 'f3qRVKpJGi', lastUpdate: '2022-11-22T13:08:54Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/nextflow-io/vscode-language-nextflow/master/LICENSE.md', @@ -2018,6 +2144,7 @@ export const grammars = [ embedded: [ 'lua', ], + hash: 'YnFuh7F2h8', lastUpdate: '2024-02-28T17:19:46Z', license: 'GPL-3.0', licenseUrl: 'https://raw.githubusercontent.com/hangxingliu/vscode-nginx-conf-hint/main/LICENSE', @@ -2038,6 +2165,7 @@ export const grammars = [ 'glsl', 'markdown', ], + hash: 'M6gUzgKvLN', lastUpdate: '2020-08-30T02:33:21Z', license: 'NOASSERTION', licenseUrl: 'https://raw.githubusercontent.com/pragmagic/vscode-nim/master/LICENSE', @@ -2049,6 +2177,7 @@ export const grammars = [ { byteSize: 14564, displayName: 'Nix', + hash: 'US1yMcXb2a', lastUpdate: '2022-04-17T09:05:16Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/nix-community/vscode-nix-ide/main/LICENSE', @@ -2063,6 +2192,7 @@ export const grammars = [ ], byteSize: 18903, displayName: 'nushell', + hash: 'lQNlGrMUO3', lastUpdate: '2024-09-23T21:05:29Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/nushell/vscode-nushell-lang/main/LICENSE', @@ -2080,6 +2210,7 @@ export const grammars = [ 'general', ], displayName: 'Objective-C', + hash: 'hvXcJoC5dk', lastUpdate: '2022-06-10T13:55:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2094,6 +2225,7 @@ export const grammars = [ 'general', ], displayName: 'Objective-C++', + hash: 'Zol10By1o7', lastUpdate: '2022-06-10T13:55:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2108,6 +2240,7 @@ export const grammars = [ 'general', ], displayName: 'OCaml', + hash: 'm8nsCmS5Te', lastUpdate: '2019-08-17T12:45:56Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/reasonml-editor/vscode-reasonml/master/LICENSE', @@ -2122,6 +2255,7 @@ export const grammars = [ 'general', ], displayName: 'Pascal', + hash: '4SfeZ44tbW', lastUpdate: '2024-05-29T12:09:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/alefragnani/vscode-language-pascal/master/LICENSE.md', @@ -2143,6 +2277,7 @@ export const grammars = [ 'javascript', 'sql', ], + hash: 'b1r9XtKoxU', lastUpdate: '2021-04-06T09:30:15Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2166,6 +2301,7 @@ export const grammars = [ 'json', 'css', ], + hash: 'zXrLGqRXEk', lastUpdate: '2023-04-17T18:42:57Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2177,6 +2313,7 @@ export const grammars = [ { byteSize: 8180, displayName: 'PL/SQL', + hash: 'KNUBUwS7mF', lastUpdate: '2019-03-31T11:02:30Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/zabel-xyz/plsql-language/master/LICENSE', @@ -2195,6 +2332,7 @@ export const grammars = [ 'utility', ], displayName: 'Gettext PO', + hash: 'V3dTKfhAHG', lastUpdate: '2014-11-13T07:01:18Z', name: 'po', scopeName: 'source.po', @@ -2207,6 +2345,7 @@ export const grammars = [ 'web', ], displayName: 'PostCSS', + hash: '72eQNhlGjK', lastUpdate: '2019-03-17T05:02:24Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/vuejs/vetur/master/LICENSE', @@ -2218,6 +2357,7 @@ export const grammars = [ { byteSize: 5646, displayName: 'PowerQuery', + hash: '1drrzayNnf', lastUpdate: '2019-04-24T13:39:36Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/powerquery-language/master/LICENSE', @@ -2233,6 +2373,7 @@ export const grammars = [ ], byteSize: 21613, displayName: 'PowerShell', + hash: 'DOddnTwID8', lastUpdate: '2021-11-02T14:27:57Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2244,6 +2385,7 @@ export const grammars = [ { byteSize: 5927, displayName: 'Prisma', + hash: 'bqbGCAQpGc', lastUpdate: '2023-09-05T17:09:08Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/prisma/language-tools/main/LICENSE', @@ -2255,6 +2397,7 @@ export const grammars = [ { byteSize: 11207, displayName: 'Prolog', + hash: 'rNFW132dHB', lastUpdate: '2018-06-02T15:08:48Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/arthwang/vsc-prolog/master/LICENSE.txt', @@ -2269,6 +2412,7 @@ export const grammars = [ ], byteSize: 6268, displayName: 'Protocol Buffer 3', + hash: '49GgvOZ3S2', lastUpdate: '2022-02-08T19:51:15Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/zxh0/vscode-proto3/master/LICENSE.txt', @@ -2296,6 +2440,7 @@ export const grammars = [ 'coffee', 'html', ], + hash: 'YT6PoyWT8q', lastUpdate: '2023-03-29T09:38:06Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2307,6 +2452,7 @@ export const grammars = [ { byteSize: 11203, displayName: 'Puppet', + hash: 'ntELZbbh3Z', lastUpdate: '2020-08-20T04:40:24Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/octref/puppet-vscode/main/LICENSE', @@ -2318,6 +2464,7 @@ export const grammars = [ { byteSize: 15824, displayName: 'PureScript', + hash: 'VRGYKnCUfx', lastUpdate: '2021-05-12T19:47:16Z', license: 'NOASSERTION', licenseUrl: 'https://raw.githubusercontent.com/nwolverson/vscode-language-purescript/master/LICENSE.md', @@ -2335,6 +2482,7 @@ export const grammars = [ 'general', ], displayName: 'Python', + hash: 'HdZEytYwrj', lastUpdate: '2022-10-20T22:45:17Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2352,6 +2500,7 @@ export const grammars = [ embedded: [ 'javascript', ], + hash: 'gX5FSoipuI', lastUpdate: '2022-08-26T21:14:57Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/seanwu1105/vscode-qt-for-python/master/LICENSE', @@ -2366,6 +2515,7 @@ export const grammars = [ 'dsl', ], displayName: 'QML Directory', + hash: 'RU8Nigo0jW', lastUpdate: '2022-08-26T21:28:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/seanwu1105/vscode-qt-for-python/master/LICENSE', @@ -2380,6 +2530,7 @@ export const grammars = [ 'dsl', ], displayName: 'Qt Style Sheets', + hash: 'RJ50f9oi8w', lastUpdate: '2023-02-15T15:05:28Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/seanwu1105/vscode-qt-for-python/master/LICENSE', @@ -2394,6 +2545,7 @@ export const grammars = [ 'data', ], displayName: 'R', + hash: 'Iz2tO8cus7', lastUpdate: '2024-09-27T08:27:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2408,6 +2560,7 @@ export const grammars = [ 'lisp', ], displayName: 'Racket', + hash: 'YfDTs0Irr0', lastUpdate: '2024-05-29T13:14:07Z', license: 'GPL-3.0', licenseUrl: 'https://raw.githubusercontent.com/Eugleo/magic-racket/master/LICENSE', @@ -2425,6 +2578,7 @@ export const grammars = [ 'general', ], displayName: 'Raku', + hash: 'dM0eznFC0Y', lastUpdate: '2018-02-12T15:54:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2440,6 +2594,7 @@ export const grammars = [ 'html', 'csharp', ], + hash: 'zCtA8kqfB6', lastUpdate: '2024-04-18T22:08:48Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/dotnet/razor/main/LICENSE.txt', @@ -2454,6 +2609,7 @@ export const grammars = [ 'dsl', ], displayName: 'Windows Registry Script', + hash: 'IL18E9vKX7', lastUpdate: '2020-02-08T20:48:08Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/mihai-vlc/reg-vscode/master/LICENSE', @@ -2468,6 +2624,7 @@ export const grammars = [ ], byteSize: 7797, displayName: 'RegExp', + hash: 'ZMpGSHLp6f', lastUpdate: '2020-02-16T01:06:09Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/MagicStack/MagicPython/master/LICENSE', @@ -2479,6 +2636,7 @@ export const grammars = [ { byteSize: 3229, displayName: 'Rel', + hash: 'K8XTnrwyzo', lastUpdate: '2021-08-25T10:18:43Z', name: 'rel', scopeName: 'source.rel', @@ -2488,6 +2646,7 @@ export const grammars = [ { byteSize: 7147, displayName: 'RISC-V', + hash: 'cpaAAnVp6N', lastUpdate: '2020-10-28T01:05:27Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/zhuanhao-wu/vscode-riscv-support/master/LICENSE', @@ -2512,6 +2671,7 @@ export const grammars = [ 'cmake', 'ruby', ], + hash: 'NKzjaocb2E', lastUpdate: '2023-10-02T14:56:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2539,6 +2699,7 @@ export const grammars = [ 'shellscript', 'lua', ], + hash: 'U2OufeSJIr', lastUpdate: '2021-03-29T13:10:29Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2556,6 +2717,7 @@ export const grammars = [ 'general', ], displayName: 'Rust', + hash: 'MZ7CNyG0He', lastUpdate: '2024-08-30T20:03:00Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2570,6 +2732,7 @@ export const grammars = [ embedded: [ 'sql', ], + hash: 'Tx67Nr2Okh', lastUpdate: '2019-03-13T21:39:48Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/rpardee/sas/master/LICENSE', @@ -2579,11 +2742,12 @@ export const grammars = [ source: 'https://github.com/rpardee/sas/blob/49f6e733c6c0b918a2a825ca2f63dba704f3e8c0/syntaxes/sas.tmLanguage', }, { - byteSize: 9042, + byteSize: 9046, categories: [ 'web', ], displayName: 'Sass', + hash: 'JsAjuZHY3A', lastUpdate: '2022-07-03T11:55:08Z', license: 'NOASSERTION', licenseUrl: 'https://raw.githubusercontent.com/TheRealSyler/vscode-sass-indented/master/LICENSE', @@ -2595,6 +2759,7 @@ export const grammars = [ { byteSize: 27305, displayName: 'Scala', + hash: 'B5Q8HRtv4n', lastUpdate: '2024-02-16T11:15:29Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/scala/vscode-scala-syntax/main/LICENSE.md', @@ -2610,6 +2775,7 @@ export const grammars = [ 'lisp', ], displayName: 'Scheme', + hash: 'JeYkC6oXWD', lastUpdate: '2018-12-25T09:02:00Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/sjhuangx/vscode-scheme/master/LICENSE.md', @@ -2627,6 +2793,7 @@ export const grammars = [ embedded: [ 'css', ], + hash: 'MKzkOu4s3N', lastUpdate: '2019-11-12T14:37:21Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2647,6 +2814,7 @@ export const grammars = [ embedded: [ 'hlsl', ], + hash: '6nVoPc4840', lastUpdate: '2018-02-12T15:54:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2667,6 +2835,7 @@ export const grammars = [ 'scripting', ], displayName: 'Shell', + hash: 'XcvXDDJa9G', lastUpdate: '2024-07-29T09:33:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2687,6 +2856,7 @@ export const grammars = [ embedded: [ 'shellscript', ], + hash: 'uDbRBXpbMv', lastUpdate: '2021-12-19T08:29:21Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/hronro/sublime-linguist-syntax/master/LICENSE', @@ -2698,6 +2868,7 @@ export const grammars = [ { byteSize: 3980, displayName: 'Smalltalk', + hash: 'acl1OEbBE7', lastUpdate: '2019-05-27T23:37:25Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/leocamello/vscode-smalltalk/master/LICENSE', @@ -2709,6 +2880,7 @@ export const grammars = [ { byteSize: 15499, displayName: 'Solidity', + hash: 'GhmcfTjlV3', lastUpdate: '2023-03-07T16:30:54Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/juanfranblanco/vscode-solidity/master/License.txt', @@ -2726,6 +2898,7 @@ export const grammars = [ embedded: [ 'html', ], + hash: 'r8TTzloejs', lastUpdate: '2017-05-27T18:02:53Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/mthadley/language-closure-templates/master/LICENSE', @@ -2740,6 +2913,7 @@ export const grammars = [ embedded: [ 'turtle', ], + hash: 'ZQ0tfVX55V', lastUpdate: '2022-11-21T15:24:11Z', name: 'sparql', scopeName: 'source.sparql', @@ -2752,6 +2926,7 @@ export const grammars = [ ], byteSize: 3685, displayName: 'Splunk Query Language', + hash: 'ejc8OzmWPd', lastUpdate: '2022-08-09T09:12:38Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/arcsector/vscode-splunk-search-syntax/master/LICENSE.txt', @@ -2766,6 +2941,7 @@ export const grammars = [ 'dsl', ], displayName: 'SQL', + hash: 'rxnPOCjDeo', lastUpdate: '2023-12-13T12:08:01Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2777,6 +2953,7 @@ export const grammars = [ { byteSize: 3474, displayName: 'SSH Config', + hash: 'nAkMzbCxw0', lastUpdate: '2018-10-09T21:04:51Z', name: 'ssh-config', scopeName: 'source.ssh-config', @@ -2789,6 +2966,7 @@ export const grammars = [ embedded: [ 'sql', ], + hash: 'LTp0oicjVb', lastUpdate: '2018-06-12T13:58:33Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/kylebarron/language-stata/master/LICENSE', @@ -2806,6 +2984,7 @@ export const grammars = [ 'web', ], displayName: 'Stylus', + hash: 'VVm34PHEQe', lastUpdate: '2021-11-19T11:55:44Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/d4rkr00t/language-stylus/master/LICENSE', @@ -2833,6 +3012,7 @@ export const grammars = [ 'pug', 'markdown', ], + hash: 'Y8qojxxMRy', lastUpdate: '2023-11-10T09:25:13Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/sveltejs/language-tools/master/LICENSE', @@ -2847,6 +3027,7 @@ export const grammars = [ 'general', ], displayName: 'Swift', + hash: 'rYWxmdwPLb', lastUpdate: '2024-06-28T09:56:38Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2858,6 +3039,7 @@ export const grammars = [ { byteSize: 25119, displayName: 'SystemVerilog', + hash: 'l36KHE4f0C', lastUpdate: '2024-04-19T11:09:15Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/mshr-h/vscode-verilog-hdl-support/main/LICENSE', @@ -2872,6 +3054,7 @@ export const grammars = [ 'config', ], displayName: 'Systemd Units', + hash: 'SBpsAHIMAj', lastUpdate: '2024-04-28T22:16:59Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/hangxingliu/vscode-systemd/main/LICENSE', @@ -2883,6 +3066,7 @@ export const grammars = [ { byteSize: 3282, displayName: 'Tasl', + hash: 'n3m9OvsOzC', lastUpdate: '2021-11-08T06:00:28Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/underlay/vscode-tasl/main/LICENSE', @@ -2894,6 +3078,7 @@ export const grammars = [ { byteSize: 4757, displayName: 'Tcl', + hash: '55VK5CPssg', lastUpdate: '2017-04-03T11:19:09Z', name: 'tcl', scopeName: 'source.tcl', @@ -2908,6 +3093,7 @@ export const grammars = [ 'javascript', 'css', ], + hash: 'CL6GEwTha7', lastUpdate: '2024-05-30T10:17:28Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/templ-go/templ-vscode/main/LICENSE', @@ -2923,6 +3109,7 @@ export const grammars = [ ], byteSize: 12852, displayName: 'Terraform', + hash: 'Boynr9o0Ho', lastUpdate: '2024-09-17T14:22:47Z', license: 'MPL-2.0', licenseUrl: 'https://raw.githubusercontent.com/hashicorp/syntax/main/LICENSE', @@ -2940,6 +3127,7 @@ export const grammars = [ embedded: [ 'r', ], + hash: '9qIPhxDY6p', lastUpdate: '2024-09-27T08:27:11Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -2954,6 +3142,7 @@ export const grammars = [ 'data', ], displayName: 'TOML', + hash: '49Q7Js3lVa', lastUpdate: '2020-05-25T19:51:56Z', name: 'toml', scopeName: 'source.toml', @@ -2986,6 +3175,7 @@ export const grammars = [ 'data', ], displayName: 'TSV', + hash: 'b9TY2CtGyr', lastUpdate: '2018-06-05T03:29:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/mechatroner/vscode_rainbow_csv/master/LICENSE', @@ -3000,6 +3190,7 @@ export const grammars = [ 'web', ], displayName: 'TSX', + hash: 'gy3yQ1K6M2', lastUpdate: '2024-01-26T12:06:22Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -3011,6 +3202,7 @@ export const grammars = [ { byteSize: 3582, displayName: 'Turtle', + hash: 'DimfjwytJo', lastUpdate: '2022-11-21T15:21:23Z', name: 'turtle', scopeName: 'source.turtle', @@ -3028,6 +3220,7 @@ export const grammars = [ 'python', 'ruby', ], + hash: 'nVLCdU01wk', lastUpdate: '2023-11-03T21:57:59Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/mblode/vscode-twig-language-2/master/LICENSE.md', @@ -3047,6 +3240,7 @@ export const grammars = [ 'general', ], displayName: 'TypeScript', + hash: 'KlouOk1C1Z', lastUpdate: '2024-01-26T12:06:22Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -3061,6 +3255,7 @@ export const grammars = [ ], byteSize: 26807, displayName: 'TypeSpec', + hash: 'km51W174VV', lastUpdate: '2024-08-08T21:42:27Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/typespec/main/LICENSE', @@ -3075,6 +3270,7 @@ export const grammars = [ ], byteSize: 8131, displayName: 'Typst', + hash: 'OgHO2Uxar2', lastUpdate: '2023-08-11T05:56:51Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/nvarner/typst-lsp/master/LICENSE-MIT.txt', @@ -3086,6 +3282,7 @@ export const grammars = [ { byteSize: 12944, displayName: 'V', + hash: 'qeaPlpL6Pq', lastUpdate: '2023-01-09T21:56:12Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/vlang/vscode-vlang/master/LICENSE', @@ -3097,6 +3294,7 @@ export const grammars = [ { byteSize: 3212, displayName: 'Vala', + hash: 'dlH699jiwF', lastUpdate: '2021-05-28T08:53:39Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/vala-lang/vala-vscode/master/LICENSE', @@ -3115,6 +3313,7 @@ export const grammars = [ 'scripting', ], displayName: 'Visual Basic', + hash: 'yC9XGL8yoU', lastUpdate: '2024-01-26T12:06:22Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -3126,6 +3325,7 @@ export const grammars = [ { byteSize: 5639, displayName: 'Verilog', + hash: 'fghWJb7Vsf', lastUpdate: '2022-11-26T06:23:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/mshr-h/vscode-verilog-hdl-support/main/LICENSE', @@ -3137,6 +3337,7 @@ export const grammars = [ { byteSize: 22896, displayName: 'VHDL', + hash: 'iT8b3KCXtD', lastUpdate: '2023-12-21T19:50:34Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/jonasjj/awesome-vhdl/master/LICENSE.txt', @@ -3152,6 +3353,7 @@ export const grammars = [ ], byteSize: 20648, displayName: 'Vim Script', + hash: '0JRHH2APQ2', lastUpdate: '2018-04-21T00:11:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/dunstontc/viml/master/LICENSE', @@ -3192,6 +3394,7 @@ export const grammars = [ 'vue-interpolations', 'vue-sfc-style-variable-injection', ], + hash: 'ec62ydHUBN', lastUpdate: '2024-08-31T12:58:50Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/vuejs/language-tools/master/LICENSE', @@ -3210,6 +3413,7 @@ export const grammars = [ 'vue', 'javascript', ], + hash: 'zPZMJ00RN0', lastUpdate: '2020-08-20T02:58:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/vuejs/vetur/master/LICENSE', @@ -3224,6 +3428,7 @@ export const grammars = [ ], byteSize: 75791, displayName: 'Vyper', + hash: 'lya6Pm8pzc', lastUpdate: '2024-07-02T07:02:19Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/tintinweb/vscode-vyper/master/LICENSE', @@ -3238,6 +3443,7 @@ export const grammars = [ 'web', ], displayName: 'WebAssembly', + hash: 'OqLKMQewi4', lastUpdate: '2023-10-31T03:53:56Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/wasmerio/vscode-wasm/master/LICENSE', @@ -3252,6 +3458,7 @@ export const grammars = [ ], byteSize: 2122, displayName: 'Wenyan', + hash: 'SAW6qDrqxp', lastUpdate: '2020-09-07T17:31:32Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/wenyan-lang/highlight/master/LICENSE', @@ -3266,6 +3473,7 @@ export const grammars = [ 'web', ], displayName: 'WGSL', + hash: 'F7qeyQOEKk', lastUpdate: '2023-07-22T16:16:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/PolyMeilex/vscode-wgsl/master/LICENSE', @@ -3335,6 +3543,7 @@ export const grammars = [ 'bibtex', 'json', ], + hash: 'rucrLiVoGK', lastUpdate: '2023-07-28T05:20:56Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/Frederisk/Wikitext-VSCode-Extension/master/LICENSE.txt', @@ -3349,6 +3558,7 @@ export const grammars = [ ], byteSize: 266568, displayName: 'Wolfram', + hash: 'oiwSKFBPVa', lastUpdate: '2022-10-11T17:11:31Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/WolframResearch/vscode-wolfram/master/LICENSE', @@ -3367,6 +3577,7 @@ export const grammars = [ embedded: [ 'java', ], + hash: 'rtJ2oPdjCJ', lastUpdate: '2018-10-04T10:00:39Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -3384,6 +3595,7 @@ export const grammars = [ embedded: [ 'xml', ], + hash: 'jQj121My0a', lastUpdate: '2018-02-12T15:54:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -3401,6 +3613,7 @@ export const grammars = [ 'data', ], displayName: 'YAML', + hash: 'E7ORFjbsNA', lastUpdate: '2017-08-24T17:48:19Z', name: 'yaml', scopeName: 'source.yaml', @@ -3410,6 +3623,7 @@ export const grammars = [ { byteSize: 4163, displayName: 'ZenScript', + hash: 'DpiFbr0LZI', lastUpdate: '2021-03-26T19:17:04Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/CraftTweaker/ZenScript-tmLanguage/master/LICENSE', @@ -3424,6 +3638,7 @@ export const grammars = [ 'general', ], displayName: 'Zig', + hash: 'dhGp073AHk', lastUpdate: '2024-07-03T07:57:24Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/ziglang/vscode-zig/master/LICENSE', @@ -3441,6 +3656,7 @@ export const injections = [ 'angular-ts', 'angular-html', ], + hash: 'lYKDXa2Z7B', lastUpdate: '2023-11-08T17:02:59Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/angular/vscode-ng-language-service/main/LICENSE', @@ -3457,6 +3673,7 @@ export const injections = [ embeddedIn: [ 'angular-ts', ], + hash: 'e3Msqayw3j', injectTo: [ 'source.ts.ng', ], @@ -3477,6 +3694,7 @@ export const injections = [ embeddedIn: [ 'angular-ts', ], + hash: 'VhgopsrAal', injectTo: [ 'source.ts.ng', ], @@ -3497,6 +3715,7 @@ export const injections = [ 'angular-ts', 'angular-html', ], + hash: 'kYnmUqFTFZ', injectTo: [ 'text.html.derivative', 'text.html.derivative.ng', @@ -3519,6 +3738,7 @@ export const injections = [ 'angular-ts', 'angular-html', ], + hash: '4mO2f93Wyl', injectTo: [ 'text.html.derivative', 'text.html.derivative.ng', @@ -3542,6 +3762,7 @@ export const injections = [ 'angular-ts', 'angular-html', ], + hash: 'r0M7v6iygH', injectTo: [ 'text.html.derivative', 'text.html.derivative.ng', @@ -3566,6 +3787,7 @@ export const injections = [ embeddedIn: [ 'cpp', ], + hash: 'kM4GgGU4eF', lastUpdate: '2023-03-29T09:38:06Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -3584,6 +3806,7 @@ export const injections = [ embeddedIn: [ 'ts-tags', ], + hash: 'b9lAesKxsY', injectTo: [ 'source.ts', 'source.js', @@ -3606,6 +3829,7 @@ export const injections = [ embeddedIn: [ 'ts-tags', ], + hash: 'cjHb7XdeYY', injectTo: [ 'source.ts', 'source.js', @@ -3628,6 +3852,7 @@ export const injections = [ embeddedIn: [ 'ts-tags', ], + hash: 'HFffghnePZ', injectTo: [ 'source.ts', 'source.js', @@ -3649,6 +3874,7 @@ export const injections = [ embeddedIn: [ 'ts-tags', ], + hash: 'Ps1gaKvlPa', injectTo: [ 'source.ts', 'source.js', @@ -3669,6 +3895,7 @@ export const injections = [ embeddedIn: [ 'ts-tags', ], + hash: 'rEsSluhkQQ', injectTo: [ 'source.ts', 'source.js', @@ -3690,6 +3917,7 @@ export const injections = [ embeddedIn: [ 'jinja', ], + hash: 'GixUE5UUDf', lastUpdate: '2022-08-17T08:07:37Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/samuelcolvin/jinjahtml-vscode/main/LICENSE', @@ -3703,6 +3931,7 @@ export const injections = [ embeddedIn: [ 'vue', ], + hash: 'dDgC0hpSLe', injectTo: [ 'text.html.markdown', ], @@ -3719,6 +3948,7 @@ export const injections = [ embeddedIn: [ 'vue', ], + hash: 'lhC1cd62GE', injectTo: [ 'source.vue', 'text.html.markdown', @@ -3738,6 +3968,7 @@ export const injections = [ embeddedIn: [ 'vue', ], + hash: 'ePqTfZTjMl', injectTo: [ 'source.vue', 'text.html.markdown', @@ -3760,6 +3991,7 @@ export const injections = [ embeddedIn: [ 'vue', ], + hash: 'gQb4LxBpN5', injectTo: [ 'source.vue', ], diff --git a/packages/tm-themes/index.d.ts b/packages/tm-themes/index.d.ts index 6875a5f..4fb16d4 100644 --- a/packages/tm-themes/index.d.ts +++ b/packages/tm-themes/index.d.ts @@ -9,6 +9,7 @@ export interface ThemeInfo { lastUpdate: string embedded?: string[] byteSize: number + hash: string } const themes: ThemeInfo[] diff --git a/packages/tm-themes/index.js b/packages/tm-themes/index.js index 5974bb3..acda126 100644 --- a/packages/tm-themes/index.js +++ b/packages/tm-themes/index.js @@ -7,6 +7,7 @@ export const themes = [ { byteSize: 8801, displayName: 'Andromeeda', + hash: 'feNwHXfITl', lastUpdate: '2024-03-13T01:26:57Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/EliverLara/Andromeda/master/LICENSE.md', @@ -18,6 +19,7 @@ export const themes = [ { byteSize: 13599, displayName: 'Aurora X', + hash: 'qGKgzY3VeE', lastUpdate: '2020-08-24T08:44:55Z', name: 'aurora-x', sha: '118727efadf48872adcd81f6c00be580097d6592', @@ -27,6 +29,7 @@ export const themes = [ { byteSize: 14889, displayName: 'Ayu Dark', + hash: 'HdBoryXDHL', lastUpdate: '2021-09-05T14:00:59Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/ayu-theme/vscode-ayu/master/LICENSE', @@ -38,6 +41,7 @@ export const themes = [ { byteSize: 45432, displayName: 'Catppuccin Frappé', + hash: 'LqcvPeWmQk', lastUpdate: '2024-08-25T10:53:54Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE', @@ -49,6 +53,7 @@ export const themes = [ { byteSize: 45430, displayName: 'Catppuccin Latte', + hash: 'GxG6lxm2fC', lastUpdate: '2024-08-25T10:53:54Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE', @@ -60,6 +65,7 @@ export const themes = [ { byteSize: 45437, displayName: 'Catppuccin Macchiato', + hash: '9uDTlqronK', lastUpdate: '2024-08-25T10:53:54Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE', @@ -71,6 +77,7 @@ export const themes = [ { byteSize: 45429, displayName: 'Catppuccin Mocha', + hash: 'znG17wX60S', lastUpdate: '2024-08-25T10:53:54Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/catppuccin/vscode/main/LICENSE', @@ -82,6 +89,7 @@ export const themes = [ { byteSize: 8843, displayName: 'Dark Plus', + hash: 'ZWQBXNCAG3', lastUpdate: '2023-09-12T10:37:49Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -93,6 +101,7 @@ export const themes = [ { byteSize: 21006, displayName: 'Dracula Theme', + hash: 'pOvFLQfPdQ', lastUpdate: '2023-07-15T21:35:24Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/dracula/visual-studio-code/main/LICENSE', @@ -104,6 +113,7 @@ export const themes = [ { byteSize: 21016, displayName: 'Dracula Theme Soft', + hash: 'Ndeo847sgy', lastUpdate: '2023-07-15T21:35:24Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/dracula/visual-studio-code/main/LICENSE', @@ -115,6 +125,7 @@ export const themes = [ { byteSize: 53685, displayName: 'Everforest Dark', + hash: 'XUhzxsftG3', lastUpdate: '2022-12-13T08:22:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/sainnhe/everforest-vscode/master/LICENSE', @@ -126,6 +137,7 @@ export const themes = [ { byteSize: 53688, displayName: 'Everforest Light', + hash: 'rqIYc3XGjL', lastUpdate: '2022-12-13T08:22:03Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/sainnhe/everforest-vscode/master/LICENSE', @@ -137,6 +149,7 @@ export const themes = [ { byteSize: 11345, displayName: 'GitHub Dark', + hash: 'ZTHLqAZ7MR', lastUpdate: '2023-01-06T02:19:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE', @@ -148,6 +161,7 @@ export const themes = [ { byteSize: 14336, displayName: 'GitHub Dark Default', + hash: '9tIp3bLvZ9', lastUpdate: '2023-01-06T02:19:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE', @@ -159,6 +173,7 @@ export const themes = [ { byteSize: 14334, displayName: 'GitHub Dark Dimmed', + hash: 'lIQNSi9CnX', lastUpdate: '2023-01-06T02:19:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE', @@ -170,6 +185,7 @@ export const themes = [ { byteSize: 14496, displayName: 'GitHub Dark High Contrast', + hash: 'iAFu7GpnZb', lastUpdate: '2023-01-06T02:19:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE', @@ -181,6 +197,7 @@ export const themes = [ { byteSize: 11124, displayName: 'GitHub Light', + hash: 'NqLJXAHEfL', lastUpdate: '2023-01-06T02:19:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE', @@ -192,6 +209,7 @@ export const themes = [ { byteSize: 14057, displayName: 'GitHub Light Default', + hash: 'EVoh0ojMiZ', lastUpdate: '2023-01-06T02:19:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE', @@ -203,6 +221,7 @@ export const themes = [ { byteSize: 14176, displayName: 'GitHub Light High Contrast', + hash: 'o9OmrH7DiS', lastUpdate: '2023-01-06T02:19:35Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE', @@ -214,6 +233,7 @@ export const themes = [ { byteSize: 35362, displayName: 'Houston', + hash: 'Tl8cxYEnjR', lastUpdate: '2023-11-10T11:20:23Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/withastro/houston-vscode/main/LICENSE', @@ -225,6 +245,7 @@ export const themes = [ { byteSize: 11439, displayName: 'LaserWave', + hash: 'wICe5amWDa', lastUpdate: '2022-11-07T01:48:57Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/Jaredk3nt/laserwave/master/LICENSE', @@ -236,6 +257,7 @@ export const themes = [ { byteSize: 9698, displayName: 'Light Plus', + hash: 'qq0H00zVzv', lastUpdate: '2023-09-12T10:37:49Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -247,6 +269,7 @@ export const themes = [ { byteSize: 18555, displayName: 'Material Theme', + hash: 'j5BPwyGHk8', lastUpdate: '2020-12-14T16:11:18Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/antfu/vsc-material-theme/main/LICENSE', @@ -258,6 +281,7 @@ export const themes = [ { byteSize: 18569, displayName: 'Material Theme Darker', + hash: 'pzXIf5kkLP', lastUpdate: '2020-12-14T16:11:18Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/antfu/vsc-material-theme/main/LICENSE', @@ -269,6 +293,7 @@ export const themes = [ { byteSize: 18574, displayName: 'Material Theme Lighter', + hash: 'GFHjY5bfXJ', lastUpdate: '2020-12-14T16:11:18Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/antfu/vsc-material-theme/main/LICENSE', @@ -280,6 +305,7 @@ export const themes = [ { byteSize: 18569, displayName: 'Material Theme Ocean', + hash: 'oGNhhMu0Pu', lastUpdate: '2020-12-14T16:11:18Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/antfu/vsc-material-theme/main/LICENSE', @@ -291,6 +317,7 @@ export const themes = [ { byteSize: 18575, displayName: 'Material Theme Palenight', + hash: 'mUFOBKfkFM', lastUpdate: '2020-12-14T16:11:18Z', license: 'Apache-2.0', licenseUrl: 'https://raw.githubusercontent.com/antfu/vsc-material-theme/main/LICENSE', @@ -302,6 +329,7 @@ export const themes = [ { byteSize: 6231, displayName: 'Min Dark', + hash: 'MGWafaHcrm', lastUpdate: '2021-07-15T23:42:09Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/miguelsolorio/min-theme/master/LICENSE', @@ -313,6 +341,7 @@ export const themes = [ { byteSize: 6909, displayName: 'Min Light', + hash: 'HLbZfJ85nb', lastUpdate: '2021-07-15T23:42:09Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/miguelsolorio/min-theme/master/LICENSE', @@ -324,6 +353,7 @@ export const themes = [ { byteSize: 7783, displayName: 'Monokai', + hash: 'HGlBrTxJ3F', lastUpdate: '2023-08-23T21:17:23Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -335,6 +365,7 @@ export const themes = [ { byteSize: 28693, displayName: 'Night Owl', + hash: 'ThZvG98Asw', lastUpdate: '2020-10-13T13:03:14Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/sdras/night-owl-vscode-theme/main/LICENSE', @@ -346,6 +377,7 @@ export const themes = [ { byteSize: 26663, displayName: 'Nord', + hash: 'xxqWQtRFL6', lastUpdate: '2023-04-10T15:56:38Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/nordtheme/visual-studio-code/develop/license', @@ -357,6 +389,7 @@ export const themes = [ { byteSize: 33680, displayName: 'One Dark Pro', + hash: 'KzSRGLXdwu', lastUpdate: '2024-09-21T05:20:43Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/Binaryify/OneDark-Pro/master/LICENSE.txt', @@ -368,6 +401,7 @@ export const themes = [ { byteSize: 25238, displayName: 'One Light', + hash: 'l6dAh6tUzF', lastUpdate: '2022-10-08T13:48:47Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/akamud/vscode-theme-onelight/master/LICENSE', @@ -379,6 +413,7 @@ export const themes = [ { byteSize: 9235, displayName: 'Plastic', + hash: 'FDMXnib5GO', lastUpdate: '2024-03-31T09:02:26Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/will-stone/plastic/main/LICENSE', @@ -390,6 +425,7 @@ export const themes = [ { byteSize: 33434, displayName: 'Poimandres', + hash: 'c0LwpsVlDP', lastUpdate: '2022-09-25T11:26:55Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/drcmda/poimandres-theme/main/LICENSE', @@ -401,6 +437,7 @@ export const themes = [ { byteSize: 6161, displayName: 'Red', + hash: 'N0Hq62PfT0', lastUpdate: '2023-08-23T21:17:23Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -412,6 +449,7 @@ export const themes = [ { byteSize: 21540, displayName: 'Rosé Pine', + hash: 'k6PK6aQVfP', lastUpdate: '2024-09-26T14:38:45Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/rose-pine/vscode/main/license', @@ -423,6 +461,7 @@ export const themes = [ { byteSize: 21551, displayName: 'Rosé Pine Dawn', + hash: 'SotEsMqqsC', lastUpdate: '2024-09-26T14:38:45Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/rose-pine/vscode/main/license', @@ -434,6 +473,7 @@ export const themes = [ { byteSize: 21550, displayName: 'Rosé Pine Moon', + hash: 'OMgomnKMvw', lastUpdate: '2024-09-26T14:38:45Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/rose-pine/vscode/main/license', @@ -445,6 +485,7 @@ export const themes = [ { byteSize: 9057, displayName: 'Slack Dark', + hash: 'mf8msUhVtp', lastUpdate: '2021-05-20T16:06:42Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License', @@ -456,6 +497,7 @@ export const themes = [ { byteSize: 9371, displayName: 'Slack Ochin', + hash: 'OGTDWaZihl', lastUpdate: '2021-06-12T21:35:10Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License', @@ -467,6 +509,7 @@ export const themes = [ { byteSize: 20713, displayName: 'Snazzy Light', + hash: 'LUdgltR7V2', lastUpdate: '2023-10-08T19:14:47Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/loilo/vscode-snazzy-light/master/LICENSE', @@ -478,6 +521,7 @@ export const themes = [ { byteSize: 6745, displayName: 'Solarized Dark', + hash: 'BNdHl4vFqz', lastUpdate: '2023-08-23T21:17:23Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -489,6 +533,7 @@ export const themes = [ { byteSize: 6379, displayName: 'Solarized Light', + hash: 'HOH7M34Lrd', lastUpdate: '2023-08-23T21:17:23Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt', @@ -500,6 +545,7 @@ export const themes = [ { byteSize: 13976, displayName: 'Synthwave \'84', + hash: 'Tfj1HvLGE9', lastUpdate: '2022-07-27T08:21:45Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/robb0wen/synthwave-vscode/master/LICENSE', @@ -511,6 +557,7 @@ export const themes = [ { byteSize: 34303, displayName: 'Tokyo Night', + hash: 'mJ4ysNsd2O', lastUpdate: '2024-07-10T06:11:16Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/tokyo-night/tokyo-night-vscode-theme/master/LICENSE.txt', @@ -522,6 +569,7 @@ export const themes = [ { byteSize: 12603, displayName: 'Vesper', + hash: 'ztf14PeQsu', lastUpdate: '2023-05-24T03:15:20Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/raunofreiberg/vesper/main/LICENSE.md', @@ -533,6 +581,7 @@ export const themes = [ { byteSize: 13617, displayName: 'Vitesse Black', + hash: 'QTaSMwtu5s', lastUpdate: '2024-08-16T00:04:38Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/antfu/vscode-theme-vitesse/main/LICENSE.md', @@ -544,6 +593,7 @@ export const themes = [ { byteSize: 13699, displayName: 'Vitesse Dark', + hash: 'q5xFZxFGnQ', lastUpdate: '2024-08-16T00:04:38Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/antfu/vscode-theme-vitesse/main/LICENSE.md', @@ -555,6 +605,7 @@ export const themes = [ { byteSize: 13556, displayName: 'Vitesse Light', + hash: 'mqhRpZKkV3', lastUpdate: '2024-08-16T00:04:38Z', license: 'MIT', licenseUrl: 'https://raw.githubusercontent.com/antfu/vscode-theme-vitesse/main/LICENSE.md', diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 150a7f3..09538ba 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -37,20 +37,20 @@ catalogs: specifier: ^1.0.36 version: 1.0.36 '@types/node': - specifier: ^22.7.3 - version: 22.7.3 + specifier: ^22.7.4 + version: 22.7.4 '@types/semver': specifier: ^7.5.8 version: 7.5.8 '@unocss/eslint-config': - specifier: ^0.62.4 - version: 0.62.4 + specifier: ^0.63.0 + version: 0.63.0 '@unocss/eslint-plugin': - specifier: ^0.62.4 - version: 0.62.4 + specifier: ^0.63.0 + version: 0.63.0 '@unocss/reset': - specifier: ^0.62.4 - version: 0.62.4 + specifier: ^0.63.0 + version: 0.63.0 '@vitejs/plugin-vue': specifier: ^5.1.4 version: 5.1.4 @@ -58,8 +58,8 @@ catalogs: specifier: ^2.1.1 version: 2.1.1 '@vue-macros/volar': - specifier: ^0.30.2 - version: 0.30.2 + specifier: ^0.30.3 + version: 0.30.3 '@vueuse/core': specifier: ^11.1.0 version: 11.1.0 @@ -67,8 +67,8 @@ catalogs: specifier: ^0.5.16 version: 0.5.16 bumpp: - specifier: ^9.5.2 - version: 9.5.2 + specifier: ^9.6.1 + version: 9.6.1 chai: specifier: ^5.1.1 version: 5.1.1 @@ -136,8 +136,8 @@ catalogs: specifier: ^2.0.0 version: 2.0.0 unocss: - specifier: ^0.62.4 - version: 0.62.4 + specifier: ^0.63.0 + version: 0.63.0 unplugin-auto-import: specifier: ^0.18.3 version: 0.18.3 @@ -145,8 +145,8 @@ catalogs: specifier: ^0.27.4 version: 0.27.4 unplugin-vue-macros: - specifier: ^2.12.2 - version: 2.12.2 + specifier: ^2.12.3 + version: 2.12.3 unplugin-vue-router: specifier: ^0.10.8 version: 0.10.8 @@ -157,8 +157,8 @@ catalogs: specifier: ^2.1.1 version: 2.1.1 vue: - specifier: ^3.5.9 - version: 3.5.9 + specifier: ^3.5.10 + version: 3.5.10 vue-router: specifier: ^4.4.5 version: 4.4.5 @@ -178,7 +178,7 @@ importers: devDependencies: '@antfu/eslint-config': specifier: 'catalog:' - version: 3.7.3(@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(@unocss/eslint-plugin@0.62.4(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.9)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@1.21.6)))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.3)) + version: 3.7.3(@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(@unocss/eslint-plugin@0.63.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(@vue/compiler-sfc@3.5.10)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.0.0)))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.4)) '@antfu/ni': specifier: 'catalog:' version: 0.23.0 @@ -205,7 +205,7 @@ importers: version: 1.0.36 '@types/node': specifier: 'catalog:' - version: 22.7.3 + version: 22.7.4 '@types/semver': specifier: 'catalog:' version: 7.5.8 @@ -217,7 +217,7 @@ importers: version: 0.5.16 bumpp: specifier: 'catalog:' - version: 9.5.2 + version: 9.6.1 chai: specifier: 'catalog:' version: 5.1.1 @@ -232,7 +232,7 @@ importers: version: 16.4.5 eslint: specifier: 'catalog:' - version: 9.11.1(jiti@1.21.6) + version: 9.11.1(jiti@2.0.0) esno: specifier: 'catalog:' version: 4.7.0 @@ -260,6 +260,9 @@ importers: ofetch: specifier: 'catalog:' version: 1.4.0 + ohash: + specifier: ^1.1.4 + version: 1.1.4 oniguruma-to-js: specifier: ^0.4.3 version: 0.4.3 @@ -289,10 +292,10 @@ importers: version: 2.0.0(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2)) vite: specifier: 'catalog:' - version: 5.4.8(@types/node@22.7.3) + version: 5.4.8(@types/node@22.7.4) vitest: specifier: 'catalog:' - version: 2.1.1(@types/node@22.7.3) + version: 2.1.1(@types/node@22.7.4) vue-tsc: specifier: 'catalog:' version: 2.1.6(typescript@5.6.2) @@ -311,56 +314,56 @@ importers: version: 1.20.0 '@vueuse/core': specifier: 'catalog:' - version: 11.1.0(vue@3.5.9(typescript@5.6.2)) + version: 11.1.0(vue@3.5.10(typescript@5.6.2)) vue: specifier: 'catalog:' - version: 3.5.9(typescript@5.6.2) + version: 3.5.10(typescript@5.6.2) vue-router: specifier: 'catalog:' - version: 4.4.5(vue@3.5.9(typescript@5.6.2)) + version: 4.4.5(vue@3.5.10(typescript@5.6.2)) devDependencies: '@iconify-json/carbon': specifier: 'catalog:' version: 1.2.1 '@unocss/eslint-config': specifier: 'catalog:' - version: 0.62.4(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + version: 0.63.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) '@unocss/eslint-plugin': specifier: 'catalog:' - version: 0.62.4(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + version: 0.63.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) '@unocss/reset': specifier: 'catalog:' - version: 0.62.4 + version: 0.63.0 '@vitejs/plugin-vue': specifier: 'catalog:' - version: 5.1.4(vite@5.4.8(@types/node@22.7.3))(vue@3.5.9(typescript@5.6.2)) + version: 5.1.4(vite@5.4.8(@types/node@22.7.4))(vue@3.5.10(typescript@5.6.2)) '@vue-macros/volar': specifier: 'catalog:' - version: 0.30.2(rollup@4.21.1)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.9(typescript@5.6.2)) + version: 0.30.3(rollup@4.21.1)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.10(typescript@5.6.2)) typescript: specifier: 'catalog:' version: 5.6.2 unocss: specifier: 'catalog:' - version: 0.62.4(postcss@8.4.47)(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3)) + version: 0.63.0(postcss@8.4.47)(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4)) unplugin-auto-import: specifier: 'catalog:' - version: 0.18.3(@vueuse/core@11.1.0(vue@3.5.9(typescript@5.6.2)))(rollup@4.21.1)(webpack-sources@3.2.3) + version: 0.18.3(@vueuse/core@11.1.0(vue@3.5.10(typescript@5.6.2)))(rollup@4.21.1)(webpack-sources@3.2.3) unplugin-vue-components: specifier: 'catalog:' - version: 0.27.4(@babel/parser@7.25.6)(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) + version: 0.27.4(@babel/parser@7.25.6)(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) unplugin-vue-macros: specifier: 'catalog:' - version: 2.12.2(@vueuse/core@11.1.0(vue@3.5.9(typescript@5.6.2)))(esbuild@0.23.1)(rollup@4.21.1)(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.3))(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) + version: 2.12.3(@vueuse/core@11.1.0(vue@3.5.10(typescript@5.6.2)))(esbuild@0.23.1)(rollup@4.21.1)(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.4))(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) unplugin-vue-router: specifier: 'catalog:' - version: 0.10.8(rollup@4.21.1)(vue-router@4.4.5(vue@3.5.9(typescript@5.6.2)))(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) + version: 0.10.8(rollup@4.21.1)(vue-router@4.4.5(vue@3.5.10(typescript@5.6.2)))(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) vite: specifier: 'catalog:' - version: 5.4.8(@types/node@22.7.3) + version: 5.4.8(@types/node@22.7.4) vitest: specifier: 'catalog:' - version: 2.1.1(@types/node@22.7.3) + version: 2.1.1(@types/node@22.7.4) vue-tsc: specifier: 'catalog:' version: 2.1.6(typescript@5.6.2) @@ -1367,6 +1370,15 @@ packages: rollup: optional: true + '@rollup/pluginutils@5.1.2': + resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + '@rollup/rollup-android-arm-eabi@4.21.1': resolution: {integrity: sha512-2thheikVEuU7ZxFXubPDOtspKn1x0yqaYQwvALVtEcvFhMifPADBrgRPyHV0TF3b+9BgvgjgagVyvA/UqPZHmg==} cpu: [arm] @@ -1512,8 +1524,8 @@ packages: '@types/ms@0.7.34': resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - '@types/node@22.7.3': - resolution: {integrity: sha512-qXKfhXXqGTyBskvWEzJZPUxSslAiLaB6JGP1ic/XTH9ctGgzdgYguuLP1C601aRTSDNlLb0jbKqXjZ48GNraSA==} + '@types/node@22.7.4': + resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -1590,91 +1602,91 @@ packages: '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@unocss/astro@0.62.4': - resolution: {integrity: sha512-98KfkbrNhBLx2+uYxMiGsldIeIZ6/PbL4yaGRHeHoiHd7p4HmIyCF+auYe4Psntx3Yr8kU+XSIAhGDYebvTidQ==} + '@unocss/astro@0.63.0': + resolution: {integrity: sha512-ToF9X1uvm8CdxND+oVHrRPQyBsE5FZI1vz9lLVvqwzhOi9rfjGeoKeN7rV0njM2ohC+gbbPRDU9kKmZMnHLSzg==} peerDependencies: vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 peerDependenciesMeta: vite: optional: true - '@unocss/cli@0.62.4': - resolution: {integrity: sha512-p4VyS40mzn4LCOkIsbIRzN0Zi50rRepesREi2S1+R4Kpvd4QFeeuxTuZNHEyi2uCboQ9ZWl1gfStCXIrNECwTg==} + '@unocss/cli@0.63.0': + resolution: {integrity: sha512-nJuHLDxgxSYhPQ0OY5BIZ0XQJyphapAFHYNh1ahTfJRa6IBIcCZb/JZFHjczCCLSSp1PAO4SJBNEPjJxZWr3rQ==} engines: {node: '>=14'} hasBin: true - '@unocss/config@0.62.4': - resolution: {integrity: sha512-XKudKxxW8P44JvlIdS6HBpfE3qZA9rhbemy6/sb8HyZjKYjgeM9jx5yjk+9+4hXNma/KlwDXwjAqY29z0S0SrA==} + '@unocss/config@0.63.0': + resolution: {integrity: sha512-rlhki3GA6pNX05sjDGJO4vTDonOfDngL9CJWEbn9hELgMZQ3+OAO4mePMA6OsYfMxYz5qpfDKwofkuV4CGNDKQ==} engines: {node: '>=14'} - '@unocss/core@0.62.4': - resolution: {integrity: sha512-Cc+Vo6XlaQpyVejkJrrzzWtiK9pgMWzVVBpm9VCVtwZPUjD4GSc+g7VQCPXSsr7m03tmSuRySJx72QcASmauNQ==} + '@unocss/core@0.63.0': + resolution: {integrity: sha512-ZGvmQ3CgGlGJy8TDYUCLRzgv+uyUj2nv0a5MsVvLAD1BKHN96YSt/zRdvRprKUkSzP0yLw44k3kv59md8Bn8xw==} - '@unocss/eslint-config@0.62.4': - resolution: {integrity: sha512-bulYXf80MhTlN2oG/d1r23/FJTNiGxK/gG+p9nl/UeJZc5NOnes7fsqVscFTXDxVQGVIFgeKfch3DRmzlxHe9Q==} + '@unocss/eslint-config@0.63.0': + resolution: {integrity: sha512-uBomBa5C4oqoXbIDsByMAD6OXQKRBQgAPtnMd77r2f7H4V26347MLz3Xf5SXGaCB6KH0AR46AXyAEadqYa3ZvA==} engines: {node: '>=14'} - '@unocss/eslint-plugin@0.62.4': - resolution: {integrity: sha512-L4pm8L96OvE99FK+fZHQBXxsu+B/yvhf471Mf5o3idaq+pzptfpZcKKRXCeQKSAYbC80IV4Fm1V5dFxOHbDdPg==} + '@unocss/eslint-plugin@0.63.0': + resolution: {integrity: sha512-f42r0Bk9LAb/BTpsJWNmfobpR3hPPVtytjH4Q673t4Gi8EKwQ3TQ0sVdbNeV+RxwuIckdZ0k1ijmt5FWAJ6oDA==} engines: {node: '>=14'} - '@unocss/extractor-arbitrary-variants@0.62.4': - resolution: {integrity: sha512-e4hJfBMyFr6T6dYSTTjNv9CQwaU1CVEKxDlYP0GpfSgxsV58pguID9j1mt0/XZD6LvEDzwxj9RTRWKpUSWqp+Q==} + '@unocss/extractor-arbitrary-variants@0.63.0': + resolution: {integrity: sha512-zHSpKnXU+So15VtJV8CZE+VV6zxeard+fi3bfepCAZFI/8vxU7aTrEPeXniF06eIQeJZTGVn/EaOw4AKiy1ZRA==} - '@unocss/inspector@0.62.4': - resolution: {integrity: sha512-bRcnI99gZecNzrUr6kDMdwGHkhUuTPyvvadRdaOxHc9Ow3ANNyqymeFM1q5anZEUZt8h15TYN0mdyQyIWkU3zg==} + '@unocss/inspector@0.63.0': + resolution: {integrity: sha512-vcAHezenaP3TxiX7GBNyLFRNrhw8oZlz8xNDiuSR3QI6Z2gCrCxdEwblFdjJKhBcNWK79oXm2QCHzD3/Fb7xvg==} - '@unocss/postcss@0.62.4': - resolution: {integrity: sha512-kWdHy7UsSP4bDu8I7sCKeO0VuzvVpNHmn2rifK5gNstUx5dZ1H/SoyXTHx5sKtgfZBRzdNXFu2nZ3PzYGvEFbw==} + '@unocss/postcss@0.63.0': + resolution: {integrity: sha512-p0JvVJjOxi9O1dRfto6SOqFqV+aq0knqiTlyOmmINiwkcvXWYmFGXKTw6DTR8ACYF8MwpnACt81DF7yNqA5L3g==} engines: {node: '>=14'} peerDependencies: postcss: ^8.4.21 - '@unocss/preset-attributify@0.62.4': - resolution: {integrity: sha512-ei5nNT58GON9iyCGRRiIrphzyQbBIZ9iEqSBhIY0flcfi1uAPUXV32aO2slqJnWWAIwbRSb1GMpwYR8mmfuz8g==} + '@unocss/preset-attributify@0.63.0': + resolution: {integrity: sha512-9t9rlo7JIhd+SbjupYTwKmyPgqc9uFa6zuaq+ol5HdTdbnDvj9dUAJSEvQEzB0NebjIn+n94WpHhRTX8M6O2Lw==} - '@unocss/preset-icons@0.62.4': - resolution: {integrity: sha512-n9m2nRTxyiw0sqOwSioO3rro0kaPW0JJzWlzcfdwQ+ZORNR5WyJL298fLXYUFbZG3EOF+zSPg6CMDWudKk/tlA==} + '@unocss/preset-icons@0.63.0': + resolution: {integrity: sha512-MYxhrmyf+cneKp1mB35OCewlYSRuFhEb5cvNN0q/doAM18/beELPDTVLGiVzspin8de3fgiqy9XIQdEVgtujMQ==} - '@unocss/preset-mini@0.62.4': - resolution: {integrity: sha512-1O+QpQFx7FT61aheAZEYemW5e4AGib8TFGm+rWLudKq2IBNnXHcS5xsq5QvqdC7rp9Dn3lnW5du6ijow5kCBuw==} + '@unocss/preset-mini@0.63.0': + resolution: {integrity: sha512-lpGtqtXqr6yVLeWiQmY1lb7sJBcb2O3CuFduKlx7HZKZOJpnRtZoZeNRo1XYcH6BRPBxPgru/d/m43AGMnDqew==} - '@unocss/preset-tagify@0.62.4': - resolution: {integrity: sha512-8b2Kcsvt93xu1JqDqcD3QvvW0L5rqvH7ev3BlNEVx6n8ayBqfB5HEd4ILKr7wSC90re+EnCgnMm7EP2FiQAJkw==} + '@unocss/preset-tagify@0.63.0': + resolution: {integrity: sha512-RrXYruhvSqB4QaDTCHiRQUSfP2b1ie1eEhZ0HV9/WqCtgQjan1w9uV8bbA1TPXHLdMXWyt6tAoWUZPRdszBXZg==} - '@unocss/preset-typography@0.62.4': - resolution: {integrity: sha512-ZVh+NbcibMmD6ve8Deub/G+XAFcGPuzE2Fx/tMAfWfYlfyOAtrMxuL+AARMthpRxdE0JOtggXNTrJb0ZhGYl9g==} + '@unocss/preset-typography@0.63.0': + resolution: {integrity: sha512-4uhTRa2D6yB2sBjV3lksP/rpc2kq0p6v+yvpAvor73PADQCpLLMW+HPpS3YZe52nagHBf/LpY8gVNoGTIy/8FA==} - '@unocss/preset-uno@0.62.4': - resolution: {integrity: sha512-2S6+molIz8dH/al0nfkU7i/pMS0oERPr4k9iW80Byt4cKDIhh/0jhZrC83kgZRtCf5hclSBO4oCoMTi1JF7SBw==} + '@unocss/preset-uno@0.63.0': + resolution: {integrity: sha512-rXBz83FQG/FynPMhYQ5xlQ5ai9clYqmlubvDQR/UvEtuQWL0wIK2NiBFBGosn4Q0ukT0GrwOIicV8aizHu2tAg==} - '@unocss/preset-web-fonts@0.62.4': - resolution: {integrity: sha512-kaxgYBVyMdBlErseN8kWLiaS2N5OMlwg5ktAxUlei275fMoY7inQjOwppnjDVveJbN9SP6TcqqFpBIPfUayPkQ==} + '@unocss/preset-web-fonts@0.63.0': + resolution: {integrity: sha512-0ybW2EG6fAtK0XrB82wNK7ETiE12+ctfRxqWnKgLxpcYHIYVS0m8bRWgBWpJ+1l9I0fWilyB622rg6qIBHHU3g==} - '@unocss/preset-wind@0.62.4': - resolution: {integrity: sha512-YOzfQ11AmAnl1ZkcWLMMxCdezLjRKavLNk38LumUMtcdsa0DAy+1JjTp+KEvVQAnD+Et/ld5X+YcBWJkVy5WFQ==} + '@unocss/preset-wind@0.63.0': + resolution: {integrity: sha512-TVgFdxiIm4BfGLBE/4XqpeD2a+yMlrgTRY12WMEjj8DduNbuyuE+mnvaN7iY5+/DMIsng+eKyM3gamJew2r30w==} - '@unocss/reset@0.62.4': - resolution: {integrity: sha512-CtxjeDgN39fY/eZDLIXN4wy7C8W7+SD+41AlzGVU5JwhcXmnb1XoDpOd2lzMxc/Yy3F5dIJt2+MRDj9RnpX9Ew==} + '@unocss/reset@0.63.0': + resolution: {integrity: sha512-QAAXxITLSWaNNK2+Mn1m2IeaCqrS3U9dszId2GVaiTHVe30M7vpMZQ6NrJI7xcD7DZ0kuh48BoZl5ttuiJkeww==} - '@unocss/rule-utils@0.62.4': - resolution: {integrity: sha512-XUwLbLUzL+VSHCJNK5QBHC9RbFehumge1/XJmsRfmh0+oxgJoO1gvEvxi57gYEmdJdMRJHRJZ66se6+cB0Ymvw==} + '@unocss/rule-utils@0.63.0': + resolution: {integrity: sha512-OKA2LzSPUXsYtfzx2G8Mw7/IhIOYxJNprBg7QwRF0e3eVmo87Ae1G5m9cghBLh7h7Ur1SgG5PCNhI0dZg6f7XA==} engines: {node: '>=14'} - '@unocss/transformer-attributify-jsx@0.62.4': - resolution: {integrity: sha512-z9DDqS2DibDR9gno55diKfAVegeJ9uoyQXQhH3R0KY4YMF49N1fWy/t74gOiHtlPmvjQtDRZYgjgaMCc2w8oWg==} + '@unocss/transformer-attributify-jsx@0.63.0': + resolution: {integrity: sha512-+U+udpaRoUn5gXlejmT6h5l6ZcPr/8QCj4edCURyTOUZYrOd8siZzjDRisXP5/fskm4UqEgdlx97Qar97O6CYQ==} - '@unocss/transformer-compile-class@0.62.4': - resolution: {integrity: sha512-8yadY9T7LToJwSsrmYU3rUKlnDgPGVRvON7z9g1IjUCmFCGx7Gpg84x9KpKUG6eUTshPQFUI0YUHocrYFevAEA==} + '@unocss/transformer-compile-class@0.63.0': + resolution: {integrity: sha512-bCapGembNCy9xY8CJxCretx/lj7mTyhnoO79CkTxckHlnUGEgNj9gbvtLkXCPJAfRLmBWMtgeMdUivG5+auq1A==} - '@unocss/transformer-directives@0.62.4': - resolution: {integrity: sha512-bq9ZDG6/mr6X2mAogAo0PBVrLSLT0900MPqnj/ixadYHc7mRpX+y6bc/1AgWytZIFYSdNzf7XDoquZuwf42Ucg==} + '@unocss/transformer-directives@0.63.0': + resolution: {integrity: sha512-+qWfNKrOSuuaAfM5RSyqeCNy2s3nIct5knwlkzg/cYTT9UiKyIALeJY/k+plVM99WlGDNh/k6otNkNv5N/Z6wg==} - '@unocss/transformer-variant-group@0.62.4': - resolution: {integrity: sha512-W1fxMc2Lzxu4E+6JBQEBzK+AwoCQYI+EL2FT2BCUsAno37f3JdnwFFEVscck0epSdmdtidsSLDognyX8h10r8A==} + '@unocss/transformer-variant-group@0.63.0': + resolution: {integrity: sha512-JNTqxogGDd+XpbP3oRUulNEaY1H+42+4KXQxlfxllikgqe28QHorhBbM/4ObCw085tKhrM+oDH391KF+VUNkhQ==} - '@unocss/vite@0.62.4': - resolution: {integrity: sha512-JKq3V6bcevYl9X5Jl3p9crArbhzI8JVWQkOxKV2nGLFaqvnc47vMSDxlU4MUdRWp3aQvzDw132tcx27oSbrojw==} + '@unocss/vite@0.63.0': + resolution: {integrity: sha512-7UH36o7UEwMbrifuvTj6wOPJZ3DNK21HO+ACOlFaM9HGVmlEUEuzC5fRVid0Q/zRlo0URaI/82TkvEh3sUU8Zg==} peerDependencies: vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 @@ -1889,8 +1901,8 @@ packages: resolution: {integrity: sha512-DT/6ZWe90/qrFtgicKCRljdvcwM25Nk66lPF9UFydwOFHKa6yOwTdeexjU3W/uG8X4QLlQBTCsDKbjLbhK1i7g==} engines: {node: '>=16.14.0'} - '@vue-macros/volar@0.30.2': - resolution: {integrity: sha512-iBARxF4M76ZRKSximB+s9l3FBJEKZ7fQnfoexr1rQe7j+oDgSdTODpK5184c1uboZrkPcM8F77wM1yNV3rqDaA==} + '@vue-macros/volar@0.30.3': + resolution: {integrity: sha512-35ecwiHaKizySmEIsSHIdyBpf0AgP9wZkUJUIO4xq9lAlSXHkTMjELuwVCRFCCyjZS/UuB+rPqxguKiSaNKmGg==} engines: {node: '>=16.14.0'} peerDependencies: vue-tsc: 2.1.6 @@ -1898,15 +1910,27 @@ packages: vue-tsc: optional: true + '@vue/compiler-core@3.5.10': + resolution: {integrity: sha512-iXWlk+Cg/ag7gLvY0SfVucU8Kh2CjysYZjhhP70w9qI4MvSox4frrP+vDGvtQuzIcgD8+sxM6lZvCtdxGunTAA==} + '@vue/compiler-core@3.5.9': resolution: {integrity: sha512-KE1sCdwqSKq0CQ/ltg3XnlMTKeinjegIkuFsuq9DKvNPmqLGdmI51ChZdGBBRXIvEYTLm8X/JxOuBQ1HqF/+PA==} + '@vue/compiler-dom@3.5.10': + resolution: {integrity: sha512-DyxHC6qPcktwYGKOIy3XqnHRrrXyWR2u91AjP+nLkADko380srsC2DC3s7Y1Rk6YfOlxOlvEQKa9XXmLI+W4ZA==} + '@vue/compiler-dom@3.5.9': resolution: {integrity: sha512-gEAURwPo902AsJF50vl59VaWR+Cx6cX9SoqLYHu1jq9hDbmQlXvpZyYNIIbxa2JTJ+FD/oBQweVUwuTQv79KTg==} + '@vue/compiler-sfc@3.5.10': + resolution: {integrity: sha512-to8E1BgpakV7224ZCm8gz1ZRSyjNCAWEplwFMWKlzCdP9DkMKhRRwt0WkCjY7jkzi/Vz3xgbpeig5Pnbly4Tow==} + '@vue/compiler-sfc@3.5.9': resolution: {integrity: sha512-kp9qawcTXakYm0TN6YAwH24IurSywoXh4fWhRbLu0at4UVyo994bhEzJlQn82eiyqtut4GjkQodSfn8drFbpZQ==} + '@vue/compiler-ssr@3.5.10': + resolution: {integrity: sha512-hxP4Y3KImqdtyUKXDRSxKSRkSm1H9fCvhojEYrnaoWhE4w/y8vwWhnosJoPPe2AXm5sU7CSbYYAgkt2ZPhDz+A==} + '@vue/compiler-ssr@3.5.9': resolution: {integrity: sha512-fb1g2mQv32QzIei76rlXRTz08Grw+ZzBXSQfHo4StGFutm/flyebw3dGJkexKwcU3GjX9s5fIGjEv/cjO8j8Yw==} @@ -1924,19 +1948,22 @@ packages: typescript: optional: true - '@vue/reactivity@3.5.9': - resolution: {integrity: sha512-88ApgNZ6yPYpyYkTfXzcbWk6O8+LrPRIpa/U4AdeTzpfRUO+EUt5jemnTBVSlAUNmlYY96xa5feUNEq+BouLog==} + '@vue/reactivity@3.5.10': + resolution: {integrity: sha512-kW08v06F6xPSHhid9DJ9YjOGmwNDOsJJQk0ax21wKaUYzzuJGEuoKNU2Ujux8FLMrP7CFJJKsHhXN9l2WOVi2g==} - '@vue/runtime-core@3.5.9': - resolution: {integrity: sha512-YAeP0zNkjSl5mEc1NxOg9qoAhLNbREElHAhfYbMXT57oF0ixehEEJWBhg2uvVxslCGh23JhpEAyMvJrJHW9WGg==} + '@vue/runtime-core@3.5.10': + resolution: {integrity: sha512-9Q86I5Qq3swSkFfzrZ+iqEy7Vla325M7S7xc1NwKnRm/qoi1Dauz0rT6mTMmscqx4qz0EDJ1wjB+A36k7rl8mA==} - '@vue/runtime-dom@3.5.9': - resolution: {integrity: sha512-5Oq/5oenpB9lw94moKvOHqBDEaMSyDmcu2HS8AtAT6/pwdo/t9fR9aVtLh6FzYGGqZR9yRfoHAN6P7goblq1aA==} + '@vue/runtime-dom@3.5.10': + resolution: {integrity: sha512-t3x7ht5qF8ZRi1H4fZqFzyY2j+GTMTDxRheT+i8M9Ph0oepUxoadmbwlFwMoW7RYCpNQLpP2Yx3feKs+fyBdpA==} - '@vue/server-renderer@3.5.9': - resolution: {integrity: sha512-tbuUsZfMWGazR9LXLNiiDSTwkO8K9sLyR70diY+FbQmKmh7236PPz4jkTxymelV8D89IJUGtbfe4VdmpHkmuxg==} + '@vue/server-renderer@3.5.10': + resolution: {integrity: sha512-IVE97tt2kGKwHNq9yVO0xdh1IvYfZCShvDSy46JIh5OQxP1/EXSpoDqetVmyIzL7CYOWnnmMkVqd7YK2QSWkdw==} peerDependencies: - vue: 3.5.9 + vue: 3.5.10 + + '@vue/shared@3.5.10': + resolution: {integrity: sha512-VkkBhU97Ki+XJ0xvl4C9YJsIZ2uIlQ7HqPpZOS3m9VCvmROPaChZU6DexdMJqvz9tbgG+4EtFVrSuailUq5KGQ==} '@vue/shared@3.5.9': resolution: {integrity: sha512-8wiT/m0mnsLhTME0mPgc57jv+4TipRBSAAmheUdYgiOaO6AobZPNOmm87ub4np65VVDgLcWxc+Edc++5Wyz1uA==} @@ -2056,8 +2083,8 @@ packages: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} - bumpp@9.5.2: - resolution: {integrity: sha512-L0awRXkMY4MLasVy3dyfM+2aU2Q4tyCDU45O7hxiB2SHZF8jurw3nmyifrtFJ4cI/JZIvu5ChCtf0i8yLfnohQ==} + bumpp@9.6.1: + resolution: {integrity: sha512-lQlPfyS0GrO5FaOODK+OHQxfCT+6/xWfd3Zt8dzsmzm69RWQfh5fAU9igmeZWOzK/s+4vL+gQLo3yw474ntBZw==} engines: {node: '>=10'} hasBin: true @@ -2067,8 +2094,8 @@ packages: peerDependencies: esbuild: '>=0.18' - c12@1.11.1: - resolution: {integrity: sha512-KDU0TvSvVdaYcQKQ6iPHATGz/7p/KiVjPg4vQrB6Jg/wX9R0yl5RZxWm9IoZqaIHD2+6PZd81+KMGwRr/lRIUg==} + c12@1.11.2: + resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==} peerDependencies: magicast: ^0.3.4 peerDependenciesMeta: @@ -2250,6 +2277,10 @@ packages: resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + css-tree@3.0.0: + resolution: {integrity: sha512-o88DVQ6GzsABn1+6+zo2ct801dBO5OASVyxbbvA2W20ue2puSh/VOuqUj90eUeMSX/xqGqBmOKiRQN7tJOuBXw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + css-what@6.1.0: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} @@ -2304,6 +2335,15 @@ packages: supports-color: optional: true + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + decode-named-character-reference@1.0.2: resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} @@ -2436,6 +2476,10 @@ packages: resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} engines: {node: '>=6'} + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} @@ -2887,6 +2931,9 @@ packages: importx@0.4.3: resolution: {integrity: sha512-x6E6OxmWq/SUaj7wDeDeSjyHP+rMUbEaqJ5fw0uEtC/FTX9ocxNMFJ+ONnpJIsRpFz3ya6qJAK4orwSKqw0BSQ==} + importx@0.5.0: + resolution: {integrity: sha512-qROz3rSOjQYclmEQAajH9RhBuqpAGHM+5CNd9fk+TsF4JKmQsAI1egafW8XZZv8vARCo4nAmmt5d0eI2B8GUsA==} + imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} @@ -2968,6 +3015,10 @@ packages: resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} hasBin: true + jiti@2.0.0: + resolution: {integrity: sha512-CJ7e7Abb779OTRv3lomfp7Mns/Sy1+U4pcAx5VbjxCZD5ZM/VJaXPpPjNKjtSvWQy/H86E49REXR34dl1JEz9w==} + hasBin: true + jiti@2.0.0-beta.2: resolution: {integrity: sha512-c+PHQZakiQuMKbnhvrjZUvrK6E/AfmTOf4P+E3Y4FNVHcNMX9e/XrnbEvO+m4wS6ZjsvhHh/POQTlfy8uXFc0A==} hasBin: true @@ -3168,6 +3219,9 @@ packages: mdn-data@2.0.30: resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + mdn-data@2.10.0: + resolution: {integrity: sha512-qq7C3EtK3yJXMwz1zAab65pjl+UhohqMOctTgcqjLOWABqmwj+me02LSsCuEUxnst9X1lCBpoE0WArGKgdGDzw==} + merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -3397,8 +3451,8 @@ packages: ofetch@1.4.0: resolution: {integrity: sha512-MuHgsEhU6zGeX+EMh+8mSMrYTnsqJQQrpM00Q6QHMKNqQ0bKy0B43tk8tL1wg+CnsSTy1kg4Ir2T5Ig6rD+dfQ==} - ohash@1.1.3: - resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} + ohash@1.1.4: + resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} @@ -4081,6 +4135,11 @@ packages: engines: {node: '>=18.0.0'} hasBin: true + tsx@4.19.1: + resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==} + engines: {node: '>=18.0.0'} + hasBin: true + type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} @@ -4125,6 +4184,9 @@ packages: unconfig@0.5.5: resolution: {integrity: sha512-VQZ5PT9HDX+qag0XdgQi8tJepPhXiR/yVOkn707gJDKo31lGjRilPREiQJ9Z6zd/Ugpv6ZvO5VxVIcatldYcNQ==} + unconfig@0.6.0: + resolution: {integrity: sha512-4C67J0nIF2QwSXty2kW3zZx1pMZ3iXabylvJWWgHybWVUcMf9pxwsngoQt0gC+AVstRywFqrRBp3qOXJayhpOw==} + undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} @@ -4160,11 +4222,11 @@ packages: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} - unocss@0.62.4: - resolution: {integrity: sha512-SaGbxXQkk8GDPeJpWsBCZ8a23Knu4ixVTt6pvcQWKjOCGTd9XBd+vLZzN2WwdwgBPVwmMmx5wp+/gPHKFNOmIw==} + unocss@0.63.0: + resolution: {integrity: sha512-+C+qsKMDL2GyhY4/Dz3BrQcf/1yf1oRyej7ItW4Y7l1sIS1Zcsp9772IUlzuTEnLQQQOdOJVm99OB4TWnGndeg==} engines: {node: '>=14'} peerDependencies: - '@unocss/webpack': 0.62.4 + '@unocss/webpack': 0.63.0 vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 peerDependenciesMeta: '@unocss/webpack': @@ -4225,8 +4287,8 @@ packages: resolution: {integrity: sha512-Ss+sHK0D98UPrzrJ1Bh7QmZtdymvGn7IVniB/Y1vsWQiKNOznjN8XLo228AfaHSFuIfx5x7wuNDqKTL5xBqhgw==} engines: {node: '>=16.14.0'} - unplugin-vue-macros@2.12.2: - resolution: {integrity: sha512-qmhbI/o7wtRzdxQQIUBrTIPXUT3l+1sbg8TFfXzTo9IDtRhVUPhhegALyQUIUPx8Wf75fcaeWEKd5F9LVAPBNQ==} + unplugin-vue-macros@2.12.3: + resolution: {integrity: sha512-qzCMjgdN66amHYHb6IqXESeKOZfL058yoNyaOqhtLS98Xz1VU5C4q3Gsry0GHkkkVXfe2ckfvpP4u9CzWCUhGw==} engines: {node: '>=16.14.0'} peerDependencies: vue: ^2.7.0 || ^3.2.25 @@ -4373,8 +4435,8 @@ packages: peerDependencies: typescript: '>=5.0.0' - vue@3.5.9: - resolution: {integrity: sha512-nHzQhZ5cjFKynAY2beAm7XtJ5C13VKAFTLTgRYXy+Id1KEKBeiK6hO2RcW1hUjdbHMadz1YzxyHgQigOC54wug==} + vue@3.5.10: + resolution: {integrity: sha512-Vy2kmJwHPlouC/tSnIgXVg03SG+9wSqT1xu1Vehc+ChsXsRd7jLkKgMltVEFOzUdBr3uFwBCG+41LJtfAcBRng==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -4466,47 +4528,47 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@3.7.3(@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(@unocss/eslint-plugin@0.62.4(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(@vue/compiler-sfc@3.5.9)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@1.21.6)))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.3))': + '@antfu/eslint-config@3.7.3(@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(@unocss/eslint-plugin@0.63.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(@vue/compiler-sfc@3.5.10)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.0.0)))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.4))': dependencies: '@antfu/install-pkg': 0.4.1 '@clack/prompts': 0.7.0 - '@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.11.1(jiti@1.21.6)) - '@eslint/markdown': 6.1.0(eslint@9.11.1(jiti@1.21.6)) - '@stylistic/eslint-plugin': 2.8.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - '@typescript-eslint/parser': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - '@vitest/eslint-plugin': 1.1.4(@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.3)) - eslint: 9.11.1(jiti@1.21.6) - eslint-config-flat-gitignore: 0.3.0(eslint@9.11.1(jiti@1.21.6)) + '@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.11.1(jiti@2.0.0)) + '@eslint/markdown': 6.1.0(eslint@9.11.1(jiti@2.0.0)) + '@stylistic/eslint-plugin': 2.8.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + '@typescript-eslint/parser': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + '@vitest/eslint-plugin': 1.1.4(@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.4)) + eslint: 9.11.1(jiti@2.0.0) + eslint-config-flat-gitignore: 0.3.0(eslint@9.11.1(jiti@2.0.0)) eslint-flat-config-utils: 0.4.0 - eslint-merge-processors: 0.1.0(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-antfu: 2.7.0(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-command: 0.2.6(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-import-x: 4.3.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - eslint-plugin-jsdoc: 50.3.0(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-jsonc: 2.16.0(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-n: 17.10.3(eslint@9.11.1(jiti@1.21.6)) + eslint-merge-processors: 0.1.0(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-antfu: 2.7.0(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-command: 0.2.6(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-import-x: 4.3.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + eslint-plugin-jsdoc: 50.3.0(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-jsonc: 2.16.0(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-n: 17.10.3(eslint@9.11.1(jiti@2.0.0)) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 3.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@1.21.6))) - eslint-plugin-regexp: 2.6.0(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-toml: 0.11.1(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-unicorn: 55.0.0(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-vue: 9.28.0(eslint@9.11.1(jiti@1.21.6)) - eslint-plugin-yml: 1.14.0(eslint@9.11.1(jiti@1.21.6)) - eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.9)(eslint@9.11.1(jiti@1.21.6)) + eslint-plugin-perfectionist: 3.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.0.0))) + eslint-plugin-regexp: 2.6.0(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-toml: 0.11.1(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-unicorn: 55.0.0(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-vue: 9.28.0(eslint@9.11.1(jiti@2.0.0)) + eslint-plugin-yml: 1.14.0(eslint@9.11.1(jiti@2.0.0)) + eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.10)(eslint@9.11.1(jiti@2.0.0)) globals: 15.9.0 jsonc-eslint-parser: 2.4.0 local-pkg: 0.5.0 parse-gitignore: 2.0.0 picocolors: 1.1.0 toml-eslint-parser: 0.10.0 - vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@1.21.6)) + vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@2.0.0)) yaml-eslint-parser: 1.2.3 yargs: 17.7.2 optionalDependencies: - '@unocss/eslint-plugin': 0.62.4(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - eslint-plugin-format: 0.1.2(eslint@9.11.1(jiti@1.21.6)) + '@unocss/eslint-plugin': 0.63.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + eslint-plugin-format: 0.1.2(eslint@9.11.1(jiti@2.0.0)) transitivePeerDependencies: - '@typescript-eslint/utils' - '@vue/compiler-sfc' @@ -4943,15 +5005,15 @@ snapshots: '@esbuild/win32-x64@0.23.1': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.11.1(jiti@1.21.6))': + '@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.11.1(jiti@2.0.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) ignore: 5.3.1 - '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1(jiti@1.21.6))': + '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1(jiti@2.0.0))': dependencies: - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.11.0': {} @@ -4984,9 +5046,9 @@ snapshots: '@eslint/js@9.11.1': {} - '@eslint/markdown@6.1.0(eslint@9.11.1(jiti@1.21.6))': + '@eslint/markdown@6.1.0(eslint@9.11.1(jiti@2.0.0))': dependencies: - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) mdast-util-from-markdown: 2.0.1 mdast-util-gfm: 3.0.0 micromark-extension-gfm: 3.0.0 @@ -5288,6 +5350,14 @@ snapshots: optionalDependencies: rollup: 4.21.1 + '@rollup/pluginutils@5.1.2(rollup@4.21.1)': + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 2.3.1 + optionalDependencies: + rollup: 4.21.1 + '@rollup/rollup-android-arm-eabi@4.21.1': optional: true @@ -5365,10 +5435,10 @@ snapshots: '@sindresorhus/merge-streams@2.3.0': {} - '@stylistic/eslint-plugin@2.8.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': + '@stylistic/eslint-plugin@2.8.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)': dependencies: - '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - eslint: 9.11.1(jiti@1.21.6) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + eslint: 9.11.1(jiti@2.0.0) eslint-visitor-keys: 4.0.0 espree: 10.1.0 estraverse: 5.3.0 @@ -5381,7 +5451,7 @@ snapshots: '@types/adm-zip@0.5.5': dependencies: - '@types/node': 22.7.3 + '@types/node': 22.7.4 '@types/aws-lambda@8.10.137': {} @@ -5411,7 +5481,7 @@ snapshots: '@types/ms@0.7.34': {} - '@types/node@22.7.3': + '@types/node@22.7.4': dependencies: undici-types: 6.19.8 @@ -5425,15 +5495,15 @@ snapshots: '@types/web-bluetooth@0.0.20': {} - '@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/parser': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) '@typescript-eslint/scope-manager': 8.7.0 - '@typescript-eslint/type-utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/type-utils': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) '@typescript-eslint/visitor-keys': 8.7.0 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 @@ -5443,14 +5513,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)': dependencies: '@typescript-eslint/scope-manager': 8.7.0 '@typescript-eslint/types': 8.7.0 '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2) '@typescript-eslint/visitor-keys': 8.7.0 debug: 4.3.6 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) optionalDependencies: typescript: 5.6.2 transitivePeerDependencies: @@ -5461,10 +5531,10 @@ snapshots: '@typescript-eslint/types': 8.7.0 '@typescript-eslint/visitor-keys': 8.7.0 - '@typescript-eslint/type-utils@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/type-utils@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)': dependencies: '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2) - '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) debug: 4.3.6 ts-api-utils: 1.3.0(typescript@5.6.2) optionalDependencies: @@ -5490,13 +5560,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': + '@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.0.0)) '@typescript-eslint/scope-manager': 8.7.0 '@typescript-eslint/types': 8.7.0 '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2) - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) transitivePeerDependencies: - supports-color - typescript @@ -5508,24 +5578,24 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@unocss/astro@0.62.4(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3))': + '@unocss/astro@0.63.0(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4))': dependencies: - '@unocss/core': 0.62.4 - '@unocss/reset': 0.62.4 - '@unocss/vite': 0.62.4(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3)) + '@unocss/core': 0.63.0 + '@unocss/reset': 0.63.0 + '@unocss/vite': 0.63.0(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4)) optionalDependencies: - vite: 5.4.8(@types/node@22.7.3) + vite: 5.4.8(@types/node@22.7.4) transitivePeerDependencies: - rollup - supports-color - '@unocss/cli@0.62.4(rollup@4.21.1)': + '@unocss/cli@0.63.0(rollup@4.21.1)': dependencies: '@ampproject/remapping': 2.3.0 - '@rollup/pluginutils': 5.1.0(rollup@4.21.1) - '@unocss/config': 0.62.4 - '@unocss/core': 0.62.4 - '@unocss/preset-uno': 0.62.4 + '@rollup/pluginutils': 5.1.2(rollup@4.21.1) + '@unocss/config': 0.63.0 + '@unocss/core': 0.63.0 + '@unocss/preset-uno': 0.63.0 cac: 6.7.14 chokidar: 3.6.0 colorette: 2.0.20 @@ -5538,28 +5608,28 @@ snapshots: - rollup - supports-color - '@unocss/config@0.62.4': + '@unocss/config@0.63.0': dependencies: - '@unocss/core': 0.62.4 - unconfig: 0.5.5 + '@unocss/core': 0.63.0 + unconfig: 0.6.0 transitivePeerDependencies: - supports-color - '@unocss/core@0.62.4': {} + '@unocss/core@0.63.0': {} - '@unocss/eslint-config@0.62.4(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': + '@unocss/eslint-config@0.63.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)': dependencies: - '@unocss/eslint-plugin': 0.62.4(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@unocss/eslint-plugin': 0.63.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) transitivePeerDependencies: - eslint - supports-color - typescript - '@unocss/eslint-plugin@0.62.4(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)': + '@unocss/eslint-plugin@0.63.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)': dependencies: - '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - '@unocss/config': 0.62.4 - '@unocss/core': 0.62.4 + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + '@unocss/config': 0.63.0 + '@unocss/core': 0.63.0 magic-string: 0.30.11 synckit: 0.9.1 transitivePeerDependencies: @@ -5567,125 +5637,125 @@ snapshots: - supports-color - typescript - '@unocss/extractor-arbitrary-variants@0.62.4': + '@unocss/extractor-arbitrary-variants@0.63.0': dependencies: - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 - '@unocss/inspector@0.62.4': + '@unocss/inspector@0.63.0': dependencies: - '@unocss/core': 0.62.4 - '@unocss/rule-utils': 0.62.4 + '@unocss/core': 0.63.0 + '@unocss/rule-utils': 0.63.0 gzip-size: 6.0.0 sirv: 2.0.4 - '@unocss/postcss@0.62.4(postcss@8.4.47)': + '@unocss/postcss@0.63.0(postcss@8.4.47)': dependencies: - '@unocss/config': 0.62.4 - '@unocss/core': 0.62.4 - '@unocss/rule-utils': 0.62.4 - css-tree: 2.3.1 + '@unocss/config': 0.63.0 + '@unocss/core': 0.63.0 + '@unocss/rule-utils': 0.63.0 + css-tree: 3.0.0 postcss: 8.4.47 tinyglobby: 0.2.6 transitivePeerDependencies: - supports-color - '@unocss/preset-attributify@0.62.4': + '@unocss/preset-attributify@0.63.0': dependencies: - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 - '@unocss/preset-icons@0.62.4': + '@unocss/preset-icons@0.63.0': dependencies: '@iconify/utils': 2.1.33 - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 ofetch: 1.4.0 transitivePeerDependencies: - supports-color - '@unocss/preset-mini@0.62.4': + '@unocss/preset-mini@0.63.0': dependencies: - '@unocss/core': 0.62.4 - '@unocss/extractor-arbitrary-variants': 0.62.4 - '@unocss/rule-utils': 0.62.4 + '@unocss/core': 0.63.0 + '@unocss/extractor-arbitrary-variants': 0.63.0 + '@unocss/rule-utils': 0.63.0 - '@unocss/preset-tagify@0.62.4': + '@unocss/preset-tagify@0.63.0': dependencies: - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 - '@unocss/preset-typography@0.62.4': + '@unocss/preset-typography@0.63.0': dependencies: - '@unocss/core': 0.62.4 - '@unocss/preset-mini': 0.62.4 + '@unocss/core': 0.63.0 + '@unocss/preset-mini': 0.63.0 - '@unocss/preset-uno@0.62.4': + '@unocss/preset-uno@0.63.0': dependencies: - '@unocss/core': 0.62.4 - '@unocss/preset-mini': 0.62.4 - '@unocss/preset-wind': 0.62.4 - '@unocss/rule-utils': 0.62.4 + '@unocss/core': 0.63.0 + '@unocss/preset-mini': 0.63.0 + '@unocss/preset-wind': 0.63.0 + '@unocss/rule-utils': 0.63.0 - '@unocss/preset-web-fonts@0.62.4': + '@unocss/preset-web-fonts@0.63.0': dependencies: - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 ofetch: 1.4.0 - '@unocss/preset-wind@0.62.4': + '@unocss/preset-wind@0.63.0': dependencies: - '@unocss/core': 0.62.4 - '@unocss/preset-mini': 0.62.4 - '@unocss/rule-utils': 0.62.4 + '@unocss/core': 0.63.0 + '@unocss/preset-mini': 0.63.0 + '@unocss/rule-utils': 0.63.0 - '@unocss/reset@0.62.4': {} + '@unocss/reset@0.63.0': {} - '@unocss/rule-utils@0.62.4': + '@unocss/rule-utils@0.63.0': dependencies: - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 magic-string: 0.30.11 - '@unocss/transformer-attributify-jsx@0.62.4': + '@unocss/transformer-attributify-jsx@0.63.0': dependencies: - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 - '@unocss/transformer-compile-class@0.62.4': + '@unocss/transformer-compile-class@0.63.0': dependencies: - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 - '@unocss/transformer-directives@0.62.4': + '@unocss/transformer-directives@0.63.0': dependencies: - '@unocss/core': 0.62.4 - '@unocss/rule-utils': 0.62.4 - css-tree: 2.3.1 + '@unocss/core': 0.63.0 + '@unocss/rule-utils': 0.63.0 + css-tree: 3.0.0 - '@unocss/transformer-variant-group@0.62.4': + '@unocss/transformer-variant-group@0.63.0': dependencies: - '@unocss/core': 0.62.4 + '@unocss/core': 0.63.0 - '@unocss/vite@0.62.4(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3))': + '@unocss/vite@0.63.0(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4))': dependencies: '@ampproject/remapping': 2.3.0 - '@rollup/pluginutils': 5.1.0(rollup@4.21.1) - '@unocss/config': 0.62.4 - '@unocss/core': 0.62.4 - '@unocss/inspector': 0.62.4 + '@rollup/pluginutils': 5.1.2(rollup@4.21.1) + '@unocss/config': 0.63.0 + '@unocss/core': 0.63.0 + '@unocss/inspector': 0.63.0 chokidar: 3.6.0 magic-string: 0.30.11 tinyglobby: 0.2.6 - vite: 5.4.8(@types/node@22.7.3) + vite: 5.4.8(@types/node@22.7.4) transitivePeerDependencies: - rollup - supports-color - '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@22.7.3))(vue@3.5.9(typescript@5.6.2))': + '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@22.7.4))(vue@3.5.10(typescript@5.6.2))': dependencies: - vite: 5.4.8(@types/node@22.7.3) - vue: 3.5.9(typescript@5.6.2) + vite: 5.4.8(@types/node@22.7.4) + vue: 3.5.10(typescript@5.6.2) - '@vitest/eslint-plugin@1.1.4(@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.3))': + '@vitest/eslint-plugin@1.1.4(@typescript-eslint/utils@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)(vitest@2.1.1(@types/node@22.7.4))': dependencies: - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) optionalDependencies: - '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) typescript: 5.6.2 - vitest: 2.1.1(@types/node@22.7.3) + vitest: 2.1.1(@types/node@22.7.4) '@vitest/expect@2.1.1': dependencies: @@ -5694,13 +5764,13 @@ snapshots: chai: 5.1.1 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(vite@5.4.8(@types/node@22.7.3))': + '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(vite@5.4.8(@types/node@22.7.4))': dependencies: '@vitest/spy': 2.1.1 estree-walker: 3.0.3 magic-string: 0.30.11 optionalDependencies: - vite: 5.4.8(@types/node@22.7.3) + vite: 5.4.8(@types/node@22.7.4) '@vitest/pretty-format@2.1.1': dependencies: @@ -5739,43 +5809,43 @@ snapshots: path-browserify: 1.0.1 vscode-uri: 3.0.8 - '@vue-macros/api@0.11.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))': + '@vue-macros/api@0.11.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))': dependencies: '@babel/types': 7.25.6 - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) resolve.exports: 2.0.2 transitivePeerDependencies: - rollup - vue - '@vue-macros/better-define@1.9.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/better-define@1.9.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/api': 0.11.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/api': 0.11.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: - rollup - vue - webpack-sources - '@vue-macros/boolean-prop@0.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))': + '@vue-macros/boolean-prop@0.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) '@vue/compiler-core': 3.5.9 transitivePeerDependencies: - rollup - vue - '@vue-macros/chain-call@0.4.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/chain-call@0.4.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: - rollup - vue - webpack-sources - '@vue-macros/common@1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))': + '@vue-macros/common@1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))': dependencies: '@babel/types': 7.25.6 '@rollup/pluginutils': 5.1.0(rollup@4.21.1) @@ -5784,13 +5854,13 @@ snapshots: local-pkg: 0.5.0 magic-string-ast: 0.6.2 optionalDependencies: - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - '@vue-macros/config@0.4.2(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))': + '@vue-macros/config@0.4.2(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) make-synchronized: 0.2.9 unconfig: 0.5.5 transitivePeerDependencies: @@ -5798,115 +5868,115 @@ snapshots: - supports-color - vue - '@vue-macros/define-emit@0.4.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/define-emit@0.4.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/api': 0.11.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/api': 0.11.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/define-models@1.3.1(@vueuse/core@11.1.0(vue@3.5.9(typescript@5.6.2)))(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/define-models@1.3.1(@vueuse/core@11.1.0(vue@3.5.10(typescript@5.6.2)))(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) ast-walker-scope: 0.6.2 unplugin: 1.14.1(webpack-sources@3.2.3) optionalDependencies: - '@vueuse/core': 11.1.0(vue@3.5.9(typescript@5.6.2)) + '@vueuse/core': 11.1.0(vue@3.5.10(typescript@5.6.2)) transitivePeerDependencies: - rollup - vue - webpack-sources - '@vue-macros/define-prop@0.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/define-prop@0.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/api': 0.11.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/api': 0.11.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/define-props-refs@1.3.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/define-props-refs@1.3.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/define-props@4.0.1(@vue-macros/reactivity-transform@1.1.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3))(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/define-props@4.0.1(@vue-macros/reactivity-transform@1.1.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3))(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/reactivity-transform': 1.1.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/reactivity-transform': 1.1.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/define-render@1.6.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/define-render@1.6.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/define-slots@1.2.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/define-slots@1.2.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/devtools@0.4.0(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.3))': + '@vue-macros/devtools@0.4.0(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.4))': dependencies: sirv: 2.0.4 - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) optionalDependencies: - vite: 5.4.8(@types/node@22.7.3) + vite: 5.4.8(@types/node@22.7.4) transitivePeerDependencies: - typescript - '@vue-macros/export-expose@0.3.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/export-expose@0.3.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) '@vue/compiler-sfc': 3.5.9 unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/export-props@0.6.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/export-props@0.6.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/export-render@0.3.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/export-render@0.3.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/hoist-static@1.6.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/hoist-static@1.6.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: - rollup @@ -5915,17 +5985,17 @@ snapshots: '@vue-macros/jsx-directive@0.9.1(rollup@4.21.1)(typescript@5.6.2)(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - typescript - webpack-sources - '@vue-macros/named-template@0.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/named-template@0.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) '@vue/compiler-dom': 3.5.9 unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: @@ -5933,31 +6003,31 @@ snapshots: - vue - webpack-sources - '@vue-macros/reactivity-transform@1.1.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/reactivity-transform@1.1.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: '@babel/parser': 7.25.6 - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) '@vue/compiler-core': 3.5.9 '@vue/shared': 3.5.9 magic-string: 0.30.11 unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/script-lang@0.2.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/script-lang@0.2.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - rollup - webpack-sources - '@vue-macros/setup-block@0.4.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/setup-block@0.4.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) '@vue/compiler-dom': 3.5.9 unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: @@ -5965,56 +6035,56 @@ snapshots: - vue - webpack-sources - '@vue-macros/setup-component@0.18.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/setup-component@0.18.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: - rollup - vue - webpack-sources - '@vue-macros/setup-sfc@0.18.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/setup-sfc@0.18.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: - rollup - vue - webpack-sources - '@vue-macros/short-bind@1.1.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))': + '@vue-macros/short-bind@1.1.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) '@vue/compiler-core': 3.5.9 transitivePeerDependencies: - rollup - vue - '@vue-macros/short-emits@1.6.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3)': + '@vue-macros/short-emits@1.6.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3)': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: - rollup - vue - webpack-sources - '@vue-macros/short-vmodel@1.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))': + '@vue-macros/short-vmodel@1.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))': dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) '@vue/compiler-core': 3.5.9 transitivePeerDependencies: - rollup - vue - '@vue-macros/volar@0.30.2(rollup@4.21.1)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.9(typescript@5.6.2))': + '@vue-macros/volar@0.30.3(rollup@4.21.1)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.10(typescript@5.6.2))': dependencies: - '@vue-macros/boolean-prop': 0.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/config': 0.4.2(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/short-bind': 1.1.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/short-vmodel': 1.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/boolean-prop': 0.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/config': 0.4.2(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/short-bind': 1.1.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/short-vmodel': 1.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) '@vue/language-core': 2.1.6(typescript@5.6.2) muggle-string: 0.4.1 optionalDependencies: @@ -6025,6 +6095,14 @@ snapshots: - typescript - vue + '@vue/compiler-core@3.5.10': + dependencies: + '@babel/parser': 7.25.6 + '@vue/shared': 3.5.10 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + '@vue/compiler-core@3.5.9': dependencies: '@babel/parser': 7.25.6 @@ -6033,11 +6111,28 @@ snapshots: estree-walker: 2.0.2 source-map-js: 1.2.1 + '@vue/compiler-dom@3.5.10': + dependencies: + '@vue/compiler-core': 3.5.10 + '@vue/shared': 3.5.10 + '@vue/compiler-dom@3.5.9': dependencies: '@vue/compiler-core': 3.5.9 '@vue/shared': 3.5.9 + '@vue/compiler-sfc@3.5.10': + dependencies: + '@babel/parser': 7.25.6 + '@vue/compiler-core': 3.5.10 + '@vue/compiler-dom': 3.5.10 + '@vue/compiler-ssr': 3.5.10 + '@vue/shared': 3.5.10 + estree-walker: 2.0.2 + magic-string: 0.30.11 + postcss: 8.4.47 + source-map-js: 1.2.1 + '@vue/compiler-sfc@3.5.9': dependencies: '@babel/parser': 7.25.6 @@ -6050,6 +6145,11 @@ snapshots: postcss: 8.4.47 source-map-js: 1.2.1 + '@vue/compiler-ssr@3.5.10': + dependencies: + '@vue/compiler-dom': 3.5.10 + '@vue/shared': 3.5.10 + '@vue/compiler-ssr@3.5.9': dependencies: '@vue/compiler-dom': 3.5.9 @@ -6075,45 +6175,47 @@ snapshots: optionalDependencies: typescript: 5.6.2 - '@vue/reactivity@3.5.9': + '@vue/reactivity@3.5.10': dependencies: - '@vue/shared': 3.5.9 + '@vue/shared': 3.5.10 - '@vue/runtime-core@3.5.9': + '@vue/runtime-core@3.5.10': dependencies: - '@vue/reactivity': 3.5.9 - '@vue/shared': 3.5.9 + '@vue/reactivity': 3.5.10 + '@vue/shared': 3.5.10 - '@vue/runtime-dom@3.5.9': + '@vue/runtime-dom@3.5.10': dependencies: - '@vue/reactivity': 3.5.9 - '@vue/runtime-core': 3.5.9 - '@vue/shared': 3.5.9 + '@vue/reactivity': 3.5.10 + '@vue/runtime-core': 3.5.10 + '@vue/shared': 3.5.10 csstype: 3.1.3 - '@vue/server-renderer@3.5.9(vue@3.5.9(typescript@5.6.2))': + '@vue/server-renderer@3.5.10(vue@3.5.10(typescript@5.6.2))': dependencies: - '@vue/compiler-ssr': 3.5.9 - '@vue/shared': 3.5.9 - vue: 3.5.9(typescript@5.6.2) + '@vue/compiler-ssr': 3.5.10 + '@vue/shared': 3.5.10 + vue: 3.5.10(typescript@5.6.2) + + '@vue/shared@3.5.10': {} '@vue/shared@3.5.9': {} - '@vueuse/core@11.1.0(vue@3.5.9(typescript@5.6.2))': + '@vueuse/core@11.1.0(vue@3.5.10(typescript@5.6.2))': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 11.1.0 - '@vueuse/shared': 11.1.0(vue@3.5.9(typescript@5.6.2)) - vue-demi: 0.14.10(vue@3.5.9(typescript@5.6.2)) + '@vueuse/shared': 11.1.0(vue@3.5.10(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.10(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue '@vueuse/metadata@11.1.0': {} - '@vueuse/shared@11.1.0(vue@3.5.9(typescript@5.6.2))': + '@vueuse/shared@11.1.0(vue@3.5.10(typescript@5.6.2))': dependencies: - vue-demi: 0.14.10(vue@3.5.9(typescript@5.6.2)) + vue-demi: 0.14.10(vue@3.5.10(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -6214,12 +6316,12 @@ snapshots: builtin-modules@3.3.0: {} - bumpp@9.5.2: + bumpp@9.6.1: dependencies: '@jsdevtools/ez-spawn': 3.0.4 - c12: 1.11.1 + c12: 1.11.2 cac: 6.7.14 - escalade: 3.1.2 + escalade: 3.2.0 fast-glob: 3.3.2 js-yaml: 4.1.0 jsonc-parser: 3.3.1 @@ -6233,7 +6335,7 @@ snapshots: esbuild: 0.23.1 load-tsconfig: 0.2.5 - c12@1.11.1: + c12@1.11.2: dependencies: chokidar: 3.6.0 confbox: 0.1.7 @@ -6242,7 +6344,7 @@ snapshots: giget: 1.2.3 jiti: 1.21.6 mlly: 1.7.1 - ohash: 1.1.3 + ohash: 1.1.4 pathe: 1.1.2 perfect-debounce: 1.0.0 pkg-types: 1.2.0 @@ -6422,6 +6524,11 @@ snapshots: mdn-data: 2.0.30 source-map-js: 1.2.1 + css-tree@3.0.0: + dependencies: + mdn-data: 2.10.0 + source-map-js: 1.2.1 + css-what@6.1.0: {} cssesc@3.0.0: {} @@ -6486,6 +6593,10 @@ snapshots: dependencies: ms: 2.1.2 + debug@4.3.7: + dependencies: + ms: 2.1.3 + decode-named-character-reference@1.0.2: dependencies: character-entities: 2.0.2 @@ -6689,30 +6800,32 @@ snapshots: escalade@3.1.2: {} + escalade@3.2.0: {} + escape-string-regexp@1.0.5: {} escape-string-regexp@4.0.0: {} escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.5.0(eslint@9.11.1(jiti@1.21.6)): + eslint-compat-utils@0.5.0(eslint@9.11.1(jiti@2.0.0)): dependencies: - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) semver: 7.6.3 - eslint-config-flat-gitignore@0.3.0(eslint@9.11.1(jiti@1.21.6)): + eslint-config-flat-gitignore@0.3.0(eslint@9.11.1(jiti@2.0.0)): dependencies: '@eslint/compat': 1.1.1 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) find-up-simple: 1.0.0 eslint-flat-config-utils@0.4.0: dependencies: pathe: 1.1.2 - eslint-formatting-reporter@0.0.0(eslint@9.11.1(jiti@1.21.6)): + eslint-formatting-reporter@0.0.0(eslint@9.11.1(jiti@2.0.0)): dependencies: - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) prettier-linter-helpers: 1.0.0 optional: true @@ -6724,48 +6837,48 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-merge-processors@0.1.0(eslint@9.11.1(jiti@1.21.6)): + eslint-merge-processors@0.1.0(eslint@9.11.1(jiti@2.0.0)): dependencies: - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) eslint-parser-plain@0.1.0: optional: true - eslint-plugin-antfu@2.7.0(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-antfu@2.7.0(eslint@9.11.1(jiti@2.0.0)): dependencies: '@antfu/utils': 0.7.10 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) - eslint-plugin-command@0.2.6(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-command@0.2.6(eslint@9.11.1(jiti@2.0.0)): dependencies: '@es-joy/jsdoccomment': 0.48.0 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) - eslint-plugin-es-x@7.6.0(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-es-x@7.6.0(eslint@9.11.1(jiti@2.0.0)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.0.0)) '@eslint-community/regexpp': 4.11.0 - eslint: 9.11.1(jiti@1.21.6) - eslint-compat-utils: 0.5.0(eslint@9.11.1(jiti@1.21.6)) + eslint: 9.11.1(jiti@2.0.0) + eslint-compat-utils: 0.5.0(eslint@9.11.1(jiti@2.0.0)) - eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.0.0)): dependencies: '@dprint/formatter': 0.3.0 '@dprint/markdown': 0.17.6 '@dprint/toml': 0.6.2 - eslint: 9.11.1(jiti@1.21.6) - eslint-formatting-reporter: 0.0.0(eslint@9.11.1(jiti@1.21.6)) + eslint: 9.11.1(jiti@2.0.0) + eslint-formatting-reporter: 0.0.0(eslint@9.11.1(jiti@2.0.0)) eslint-parser-plain: 0.1.0 prettier: 3.3.3 synckit: 0.9.1 optional: true - eslint-plugin-import-x@4.3.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2): + eslint-plugin-import-x@4.3.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2): dependencies: - '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) debug: 4.3.6 doctrine: 3.0.0 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) eslint-import-resolver-node: 0.3.9 get-tsconfig: 4.7.6 is-glob: 4.0.3 @@ -6777,14 +6890,14 @@ snapshots: - supports-color - typescript - eslint-plugin-jsdoc@50.3.0(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-jsdoc@50.3.0(eslint@9.11.1(jiti@2.0.0)): dependencies: '@es-joy/jsdoccomment': 0.48.0 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.3.6 escape-string-regexp: 4.0.0 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) espree: 10.1.0 esquery: 1.6.0 parse-imports: 2.1.1 @@ -6794,23 +6907,23 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jsonc@2.16.0(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-jsonc@2.16.0(eslint@9.11.1(jiti@2.0.0)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) - eslint: 9.11.1(jiti@1.21.6) - eslint-compat-utils: 0.5.0(eslint@9.11.1(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.0.0)) + eslint: 9.11.1(jiti@2.0.0) + eslint-compat-utils: 0.5.0(eslint@9.11.1(jiti@2.0.0)) espree: 9.6.1 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 - eslint-plugin-n@17.10.3(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-n@17.10.3(eslint@9.11.1(jiti@2.0.0)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.0.0)) enhanced-resolve: 5.17.0 - eslint: 9.11.1(jiti@1.21.6) - eslint-plugin-es-x: 7.6.0(eslint@9.11.1(jiti@1.21.6)) + eslint: 9.11.1(jiti@2.0.0) + eslint-plugin-es-x: 7.6.0(eslint@9.11.1(jiti@2.0.0)) get-tsconfig: 4.7.6 globals: 15.9.0 ignore: 5.3.1 @@ -6819,48 +6932,48 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@3.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@1.21.6))): + eslint-plugin-perfectionist@3.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.0.0))): dependencies: '@typescript-eslint/types': 8.7.0 - '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) - eslint: 9.11.1(jiti@1.21.6) + '@typescript-eslint/utils': 8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) + eslint: 9.11.1(jiti@2.0.0) minimatch: 9.0.5 natural-compare-lite: 1.4.0 optionalDependencies: - vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@1.21.6)) + vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@2.0.0)) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-regexp@2.6.0(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-regexp@2.6.0(eslint@9.11.1(jiti@2.0.0)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.0.0)) '@eslint-community/regexpp': 4.11.0 comment-parser: 1.4.1 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) jsdoc-type-pratt-parser: 4.1.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 scslre: 0.3.0 - eslint-plugin-toml@0.11.1(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-toml@0.11.1(eslint@9.11.1(jiti@2.0.0)): dependencies: debug: 4.3.6 - eslint: 9.11.1(jiti@1.21.6) - eslint-compat-utils: 0.5.0(eslint@9.11.1(jiti@1.21.6)) + eslint: 9.11.1(jiti@2.0.0) + eslint-compat-utils: 0.5.0(eslint@9.11.1(jiti@2.0.0)) lodash: 4.17.21 toml-eslint-parser: 0.10.0 transitivePeerDependencies: - supports-color - eslint-plugin-unicorn@55.0.0(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-unicorn@55.0.0(eslint@9.11.1(jiti@2.0.0)): dependencies: '@babel/helper-validator-identifier': 7.24.7 - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.0.0)) ci-info: 4.0.0 clean-regexp: 1.0.0 core-js-compat: 3.37.0 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) esquery: 1.6.0 globals: 15.9.0 indent-string: 4.0.0 @@ -6873,41 +6986,41 @@ snapshots: semver: 7.6.3 strip-indent: 3.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0)): dependencies: - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.1(jiti@1.21.6))(typescript@5.6.2) + '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2))(eslint@9.11.1(jiti@2.0.0))(typescript@5.6.2) - eslint-plugin-vue@9.28.0(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-vue@9.28.0(eslint@9.11.1(jiti@2.0.0)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) - eslint: 9.11.1(jiti@1.21.6) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.0.0)) + eslint: 9.11.1(jiti@2.0.0) globals: 13.24.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.16 semver: 7.6.3 - vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@1.21.6)) + vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@2.0.0)) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color - eslint-plugin-yml@1.14.0(eslint@9.11.1(jiti@1.21.6)): + eslint-plugin-yml@1.14.0(eslint@9.11.1(jiti@2.0.0)): dependencies: debug: 4.3.6 - eslint: 9.11.1(jiti@1.21.6) - eslint-compat-utils: 0.5.0(eslint@9.11.1(jiti@1.21.6)) + eslint: 9.11.1(jiti@2.0.0) + eslint-compat-utils: 0.5.0(eslint@9.11.1(jiti@2.0.0)) lodash: 4.17.21 natural-compare: 1.4.0 yaml-eslint-parser: 1.2.3 transitivePeerDependencies: - supports-color - eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.9)(eslint@9.11.1(jiti@1.21.6)): + eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.10)(eslint@9.11.1(jiti@2.0.0)): dependencies: - '@vue/compiler-sfc': 3.5.9 - eslint: 9.11.1(jiti@1.21.6) + '@vue/compiler-sfc': 3.5.10 + eslint: 9.11.1(jiti@2.0.0) eslint-scope@7.2.2: dependencies: @@ -6923,9 +7036,9 @@ snapshots: eslint-visitor-keys@4.0.0: {} - eslint@9.11.1(jiti@1.21.6): + eslint@9.11.1(jiti@2.0.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@1.21.6)) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.0.0)) '@eslint-community/regexpp': 4.11.0 '@eslint/config-array': 0.18.0 '@eslint/core': 0.6.0 @@ -6963,7 +7076,7 @@ snapshots: strip-ansi: 6.0.1 text-table: 0.2.0 optionalDependencies: - jiti: 1.21.6 + jiti: 2.0.0 transitivePeerDependencies: - supports-color @@ -7128,7 +7241,7 @@ snapshots: defu: 6.1.4 node-fetch-native: 1.6.4 nypm: 0.3.8 - ohash: 1.1.3 + ohash: 1.1.4 pathe: 1.1.2 tar: 6.2.1 @@ -7260,6 +7373,17 @@ snapshots: transitivePeerDependencies: - supports-color + importx@0.5.0: + dependencies: + bundle-require: 5.0.0(esbuild@0.23.1) + debug: 4.3.7 + esbuild: 0.23.1 + jiti: 2.0.0 + pathe: 1.1.2 + tsx: 4.19.1 + transitivePeerDependencies: + - supports-color + imurmurhash@0.1.4: {} indent-string@4.0.0: {} @@ -7323,6 +7447,8 @@ snapshots: jiti@1.21.6: {} + jiti@2.0.0: {} + jiti@2.0.0-beta.2: {} js-tokens@4.0.0: {} @@ -7590,6 +7716,8 @@ snapshots: mdn-data@2.0.30: {} + mdn-data@2.10.0: {} + merge-stream@2.0.0: {} merge2@1.4.1: {} @@ -7923,7 +8051,7 @@ snapshots: node-fetch-native: 1.6.4 ufo: 1.5.4 - ohash@1.1.3: {} + ohash@1.1.4: {} once@1.4.0: dependencies: @@ -8568,6 +8696,13 @@ snapshots: optionalDependencies: fsevents: 2.3.3 + tsx@4.19.1: + dependencies: + esbuild: 0.23.1 + get-tsconfig: 4.7.6 + optionalDependencies: + fsevents: 2.3.3 + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 @@ -8629,6 +8764,14 @@ snapshots: transitivePeerDependencies: - supports-color + unconfig@0.6.0: + dependencies: + '@antfu/utils': 0.7.10 + defu: 6.1.4 + importx: 0.5.0 + transitivePeerDependencies: + - supports-color + undici-types@6.19.8: {} unicorn-magic@0.1.0: {} @@ -8681,33 +8824,33 @@ snapshots: universalify@2.0.1: {} - unocss@0.62.4(postcss@8.4.47)(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3)): - dependencies: - '@unocss/astro': 0.62.4(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3)) - '@unocss/cli': 0.62.4(rollup@4.21.1) - '@unocss/core': 0.62.4 - '@unocss/postcss': 0.62.4(postcss@8.4.47) - '@unocss/preset-attributify': 0.62.4 - '@unocss/preset-icons': 0.62.4 - '@unocss/preset-mini': 0.62.4 - '@unocss/preset-tagify': 0.62.4 - '@unocss/preset-typography': 0.62.4 - '@unocss/preset-uno': 0.62.4 - '@unocss/preset-web-fonts': 0.62.4 - '@unocss/preset-wind': 0.62.4 - '@unocss/transformer-attributify-jsx': 0.62.4 - '@unocss/transformer-compile-class': 0.62.4 - '@unocss/transformer-directives': 0.62.4 - '@unocss/transformer-variant-group': 0.62.4 - '@unocss/vite': 0.62.4(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3)) + unocss@0.63.0(postcss@8.4.47)(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4)): + dependencies: + '@unocss/astro': 0.63.0(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4)) + '@unocss/cli': 0.63.0(rollup@4.21.1) + '@unocss/core': 0.63.0 + '@unocss/postcss': 0.63.0(postcss@8.4.47) + '@unocss/preset-attributify': 0.63.0 + '@unocss/preset-icons': 0.63.0 + '@unocss/preset-mini': 0.63.0 + '@unocss/preset-tagify': 0.63.0 + '@unocss/preset-typography': 0.63.0 + '@unocss/preset-uno': 0.63.0 + '@unocss/preset-web-fonts': 0.63.0 + '@unocss/preset-wind': 0.63.0 + '@unocss/transformer-attributify-jsx': 0.63.0 + '@unocss/transformer-compile-class': 0.63.0 + '@unocss/transformer-directives': 0.63.0 + '@unocss/transformer-variant-group': 0.63.0 + '@unocss/vite': 0.63.0(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4)) optionalDependencies: - vite: 5.4.8(@types/node@22.7.3) + vite: 5.4.8(@types/node@22.7.4) transitivePeerDependencies: - postcss - rollup - supports-color - unplugin-auto-import@0.18.3(@vueuse/core@11.1.0(vue@3.5.9(typescript@5.6.2)))(rollup@4.21.1)(webpack-sources@3.2.3): + unplugin-auto-import@0.18.3(@vueuse/core@11.1.0(vue@3.5.10(typescript@5.6.2)))(rollup@4.21.1)(webpack-sources@3.2.3): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.0(rollup@4.21.1) @@ -8718,23 +8861,23 @@ snapshots: unimport: 3.12.0(rollup@4.21.1)(webpack-sources@3.2.3) unplugin: 1.14.1(webpack-sources@3.2.3) optionalDependencies: - '@vueuse/core': 11.1.0(vue@3.5.9(typescript@5.6.2)) + '@vueuse/core': 11.1.0(vue@3.5.10(typescript@5.6.2)) transitivePeerDependencies: - rollup - webpack-sources - unplugin-combine@1.0.3(esbuild@0.23.1)(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3))(webpack-sources@3.2.3): + unplugin-combine@1.0.3(esbuild@0.23.1)(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4))(webpack-sources@3.2.3): dependencies: '@antfu/utils': 0.7.10 unplugin: 1.14.1(webpack-sources@3.2.3) optionalDependencies: esbuild: 0.23.1 rollup: 4.21.1 - vite: 5.4.8(@types/node@22.7.3) + vite: 5.4.8(@types/node@22.7.4) transitivePeerDependencies: - webpack-sources - unplugin-vue-components@0.27.4(@babel/parser@7.25.6)(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3): + unplugin-vue-components@0.27.4(@babel/parser@7.25.6)(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.0(rollup@4.21.1) @@ -8746,7 +8889,7 @@ snapshots: minimatch: 9.0.5 mlly: 1.7.1 unplugin: 1.14.1(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) optionalDependencies: '@babel/parser': 7.25.6 transitivePeerDependencies: @@ -8754,9 +8897,9 @@ snapshots: - supports-color - webpack-sources - unplugin-vue-define-options@1.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3): + unplugin-vue-define-options@1.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3): dependencies: - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) ast-walker-scope: 0.6.2 unplugin: 1.14.1(webpack-sources@3.2.3) transitivePeerDependencies: @@ -8764,40 +8907,40 @@ snapshots: - vue - webpack-sources - unplugin-vue-macros@2.12.2(@vueuse/core@11.1.0(vue@3.5.9(typescript@5.6.2)))(esbuild@0.23.1)(rollup@4.21.1)(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.3))(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3): - dependencies: - '@vue-macros/better-define': 1.9.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/boolean-prop': 0.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/chain-call': 0.4.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/config': 0.4.2(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/define-emit': 0.4.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/define-models': 1.3.1(@vueuse/core@11.1.0(vue@3.5.9(typescript@5.6.2)))(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/define-prop': 0.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/define-props': 4.0.1(@vue-macros/reactivity-transform@1.1.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3))(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/define-props-refs': 1.3.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/define-render': 1.6.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/define-slots': 1.2.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/devtools': 0.4.0(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.3)) - '@vue-macros/export-expose': 0.3.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/export-props': 0.6.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/export-render': 0.3.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/hoist-static': 1.6.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) + unplugin-vue-macros@2.12.3(@vueuse/core@11.1.0(vue@3.5.10(typescript@5.6.2)))(esbuild@0.23.1)(rollup@4.21.1)(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.4))(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3): + dependencies: + '@vue-macros/better-define': 1.9.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/boolean-prop': 0.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/chain-call': 0.4.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/config': 0.4.2(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/define-emit': 0.4.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/define-models': 1.3.1(@vueuse/core@11.1.0(vue@3.5.10(typescript@5.6.2)))(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/define-prop': 0.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/define-props': 4.0.1(@vue-macros/reactivity-transform@1.1.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3))(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/define-props-refs': 1.3.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/define-render': 1.6.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/define-slots': 1.2.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/devtools': 0.4.0(typescript@5.6.2)(vite@5.4.8(@types/node@22.7.4)) + '@vue-macros/export-expose': 0.3.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/export-props': 0.6.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/export-render': 0.3.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/hoist-static': 1.6.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) '@vue-macros/jsx-directive': 0.9.1(rollup@4.21.1)(typescript@5.6.2)(webpack-sources@3.2.3) - '@vue-macros/named-template': 0.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/reactivity-transform': 1.1.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/script-lang': 0.2.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/setup-block': 0.4.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/setup-component': 0.18.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/setup-sfc': 0.18.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/short-bind': 1.1.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/short-emits': 1.6.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - '@vue-macros/short-vmodel': 1.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) - '@vue-macros/volar': 0.30.2(rollup@4.21.1)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/named-template': 0.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/reactivity-transform': 1.1.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/script-lang': 0.2.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/setup-block': 0.4.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/setup-component': 0.18.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/setup-sfc': 0.18.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/short-bind': 1.1.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/short-emits': 1.6.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + '@vue-macros/short-vmodel': 1.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) + '@vue-macros/volar': 0.30.3(rollup@4.21.1)(typescript@5.6.2)(vue-tsc@2.1.6(typescript@5.6.2))(vue@3.5.10(typescript@5.6.2)) unplugin: 1.14.1(webpack-sources@3.2.3) - unplugin-combine: 1.0.3(esbuild@0.23.1)(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.3))(webpack-sources@3.2.3) - unplugin-vue-define-options: 1.5.1(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3) - vue: 3.5.9(typescript@5.6.2) + unplugin-combine: 1.0.3(esbuild@0.23.1)(rollup@4.21.1)(vite@5.4.8(@types/node@22.7.4))(webpack-sources@3.2.3) + unplugin-vue-define-options: 1.5.1(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3) + vue: 3.5.10(typescript@5.6.2) transitivePeerDependencies: - '@rspack/core' - '@vueuse/core' @@ -8811,11 +8954,11 @@ snapshots: - webpack - webpack-sources - unplugin-vue-router@0.10.8(rollup@4.21.1)(vue-router@4.4.5(vue@3.5.9(typescript@5.6.2)))(vue@3.5.9(typescript@5.6.2))(webpack-sources@3.2.3): + unplugin-vue-router@0.10.8(rollup@4.21.1)(vue-router@4.4.5(vue@3.5.10(typescript@5.6.2)))(vue@3.5.10(typescript@5.6.2))(webpack-sources@3.2.3): dependencies: '@babel/types': 7.25.6 '@rollup/pluginutils': 5.1.0(rollup@4.21.1) - '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.9(typescript@5.6.2)) + '@vue-macros/common': 1.14.0(rollup@4.21.1)(vue@3.5.10(typescript@5.6.2)) ast-walker-scope: 0.6.2 chokidar: 3.6.0 fast-glob: 3.3.2 @@ -8828,7 +8971,7 @@ snapshots: unplugin: 1.14.1(webpack-sources@3.2.3) yaml: 2.5.1 optionalDependencies: - vue-router: 4.4.5(vue@3.5.9(typescript@5.6.2)) + vue-router: 4.4.5(vue@3.5.10(typescript@5.6.2)) transitivePeerDependencies: - rollup - vue @@ -8886,12 +9029,12 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-node@2.1.1(@types/node@22.7.3): + vite-node@2.1.1(@types/node@22.7.4): dependencies: cac: 6.7.14 debug: 4.3.6 pathe: 1.1.2 - vite: 5.4.8(@types/node@22.7.3) + vite: 5.4.8(@types/node@22.7.4) transitivePeerDependencies: - '@types/node' - less @@ -8903,19 +9046,19 @@ snapshots: - supports-color - terser - vite@5.4.8(@types/node@22.7.3): + vite@5.4.8(@types/node@22.7.4): dependencies: esbuild: 0.21.5 postcss: 8.4.47 rollup: 4.21.1 optionalDependencies: - '@types/node': 22.7.3 + '@types/node': 22.7.4 fsevents: 2.3.3 - vitest@2.1.1(@types/node@22.7.3): + vitest@2.1.1(@types/node@22.7.4): dependencies: '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(vite@5.4.8(@types/node@22.7.3)) + '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(vite@5.4.8(@types/node@22.7.4)) '@vitest/pretty-format': 2.1.1 '@vitest/runner': 2.1.1 '@vitest/snapshot': 2.1.1 @@ -8930,11 +9073,11 @@ snapshots: tinyexec: 0.3.0 tinypool: 1.0.0 tinyrainbow: 1.2.0 - vite: 5.4.8(@types/node@22.7.3) - vite-node: 2.1.1(@types/node@22.7.3) + vite: 5.4.8(@types/node@22.7.4) + vite-node: 2.1.1(@types/node@22.7.4) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.7.3 + '@types/node': 22.7.4 transitivePeerDependencies: - less - lightningcss @@ -8948,14 +9091,14 @@ snapshots: vscode-uri@3.0.8: {} - vue-demi@0.14.10(vue@3.5.9(typescript@5.6.2)): + vue-demi@0.14.10(vue@3.5.10(typescript@5.6.2)): dependencies: - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) - vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@1.21.6)): + vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.0.0)): dependencies: debug: 4.3.6 - eslint: 9.11.1(jiti@1.21.6) + eslint: 9.11.1(jiti@2.0.0) eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 @@ -8965,10 +9108,10 @@ snapshots: transitivePeerDependencies: - supports-color - vue-router@4.4.5(vue@3.5.9(typescript@5.6.2)): + vue-router@4.4.5(vue@3.5.10(typescript@5.6.2)): dependencies: '@vue/devtools-api': 6.6.4 - vue: 3.5.9(typescript@5.6.2) + vue: 3.5.10(typescript@5.6.2) vue-tsc@2.1.6(typescript@5.6.2): dependencies: @@ -8977,13 +9120,13 @@ snapshots: semver: 7.6.3 typescript: 5.6.2 - vue@3.5.9(typescript@5.6.2): + vue@3.5.10(typescript@5.6.2): dependencies: - '@vue/compiler-dom': 3.5.9 - '@vue/compiler-sfc': 3.5.9 - '@vue/runtime-dom': 3.5.9 - '@vue/server-renderer': 3.5.9(vue@3.5.9(typescript@5.6.2)) - '@vue/shared': 3.5.9 + '@vue/compiler-dom': 3.5.10 + '@vue/compiler-sfc': 3.5.10 + '@vue/runtime-dom': 3.5.10 + '@vue/server-renderer': 3.5.10(vue@3.5.10(typescript@5.6.2)) + '@vue/shared': 3.5.10 optionalDependencies: typescript: 5.6.2 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index d37d8a0..b452e70 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -13,17 +13,17 @@ catalog: '@types/cson': ^7.20.3 '@types/js-yaml': ^4.0.9 '@types/json-stable-stringify': ^1.0.36 - '@types/node': ^22.7.3 + '@types/node': ^22.7.4 '@types/semver': ^7.5.8 - '@unocss/eslint-config': ^0.62.4 - '@unocss/eslint-plugin': ^0.62.4 - '@unocss/reset': ^0.62.4 + '@unocss/eslint-config': ^0.63.0 + '@unocss/eslint-plugin': ^0.63.0 + '@unocss/reset': ^0.63.0 '@vitejs/plugin-vue': ^5.1.4 '@vitest/expect': ^2.1.1 - '@vue-macros/volar': ^0.30.2 + '@vue-macros/volar': ^0.30.3 '@vueuse/core': ^11.1.0 adm-zip: ^0.5.16 - bumpp: ^9.5.2 + bumpp: ^9.6.1 chai: ^5.1.1 chalk: ^5.3.0 cson: ^8.4.0 @@ -47,14 +47,14 @@ catalog: simple-git-hooks: ^2.11.1 typescript: ^5.6.2 unbuild: ^2.0.0 - unocss: ^0.62.4 + unocss: ^0.63.0 unplugin-auto-import: ^0.18.3 unplugin-vue-components: ^0.27.4 - unplugin-vue-macros: ^2.12.2 + unplugin-vue-macros: ^2.12.3 unplugin-vue-router: ^0.10.8 vite: ^5.4.8 vitest: ^2.1.1 - vue: ^3.5.9 + vue: ^3.5.10 vue-router: ^4.4.5 vue-tsc: ^2.1.6 yaml: ^2.5.1 diff --git a/scripts/shared/github.ts b/scripts/shared/github.ts index cf452c1..85c9ed3 100644 --- a/scripts/shared/github.ts +++ b/scripts/shared/github.ts @@ -2,6 +2,7 @@ import type { GrammarInfo } from '../../packages/tm-grammars/index' import type { ThemeInfo } from '../../packages/tm-themes/index' import type { GrammarSource } from '../grammars/types' import type { ThemeSource } from '../themes/types' +import { hash as getHash } from 'ohash' import { octokit } from './octokit' interface CommitInfo { @@ -63,10 +64,15 @@ export async function resolveSourceGitHub(source: GrammarSource | ThemeSource, o if (!commit) throw new Error(`Failed to resolve commit for ${source.name} from ${source.source}`) - if (old?.sha === commit.sha) + const hash = getHash({ + source, + sha: commit.sha, + }) + if (old?.sha === commit.sha && old?.hash === hash) return old info.sha = commit.sha + info.hash = hash info.lastUpdate = commit.date const license = await getLicenseUrl(repo)