├── .npmrc
├── CODEOWNERS
├── .DS_Store
├── .gitattributes
├── src
├── .DS_Store
├── images
│ └── icon.png
├── assets
│ ├── .DS_Store
│ └── images
│ │ ├── .DS_Store
│ │ ├── init-cli.png
│ │ ├── shadcn-vue-docs.png
│ │ ├── add-new-component.png
│ │ ├── shadcn-vue-import.png
│ │ ├── add-new-components.png
│ │ ├── add-multiple-components.png
│ │ ├── shadcn-vue-component-docs.png
│ │ └── add-multiple-components-preview.png
├── utils
│ ├── index.ts
│ ├── logs.ts
│ ├── registry.ts
│ └── vscode.ts
├── snippets
│ ├── help.code-snippets
│ ├── imports.code-snippets
│ └── usage.code-snippets
└── extension.ts
├── renovate.json
├── .gitignore
├── .vscodeignore
├── .vscode
├── extensions.json
├── tasks.json
├── settings.json
└── launch.json
├── tsup.config.ts
├── .github
├── dependabot.yml
└── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
├── tsconfig.json
├── eslint.config.mjs
├── LICENSE
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── package.json
├── README.md
├── CHANGELOG.md
└── pnpm-lock.yaml
/.npmrc:
--------------------------------------------------------------------------------
1 | --ignore-engines true
--------------------------------------------------------------------------------
/CODEOWNERS:
--------------------------------------------------------------------------------
1 | * @selemondev
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/.DS_Store
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
--------------------------------------------------------------------------------
/src/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/.DS_Store
--------------------------------------------------------------------------------
/src/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/images/icon.png
--------------------------------------------------------------------------------
/src/assets/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/.DS_Store
--------------------------------------------------------------------------------
/src/assets/images/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/.DS_Store
--------------------------------------------------------------------------------
/src/assets/images/init-cli.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/init-cli.png
--------------------------------------------------------------------------------
/src/assets/images/shadcn-vue-docs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/shadcn-vue-docs.png
--------------------------------------------------------------------------------
/src/assets/images/add-new-component.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/add-new-component.png
--------------------------------------------------------------------------------
/src/assets/images/shadcn-vue-import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/shadcn-vue-import.png
--------------------------------------------------------------------------------
/src/assets/images/add-new-components.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/add-new-components.png
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3 | "extends": [
4 | "config:recommended"
5 | ]
6 | }
7 |
--------------------------------------------------------------------------------
/src/assets/images/add-multiple-components.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/add-multiple-components.png
--------------------------------------------------------------------------------
/src/assets/images/shadcn-vue-component-docs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/shadcn-vue-component-docs.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | out
2 | dist
3 | node_modules
4 | .vscode-test/
5 | *.vsix
6 | .DS_STORE
7 | .env
8 | *.log*
9 | .eslintcache
10 | *.DS_Store
11 | node_modules
--------------------------------------------------------------------------------
/src/assets/images/add-multiple-components-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/selemondev/vscode-shadcn-vue/HEAD/src/assets/images/add-multiple-components-preview.png
--------------------------------------------------------------------------------
/.vscodeignore:
--------------------------------------------------------------------------------
1 | .vscode/**
2 | .vscode-test/**
3 | out/**
4 | node_modules/**
5 | .gitignore
6 | .npmrc
7 | vsc-extension-quickstart.md
8 | **/tsconfig.json
9 | **/.eslintrc.json
10 | **/*.map
11 | **/*.ts
12 | **/.vscode-test.*
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | // See http://go.microsoft.com/fwlink/?LinkId=827846
3 | // for the documentation about the extensions.json format
4 | "recommendations": ["dbaeumer.vscode-eslint", "amodio.tsl-problem-matcher"]
5 | }
6 |
--------------------------------------------------------------------------------
/src/utils/index.ts:
--------------------------------------------------------------------------------
1 | export const to = async (promise: Promise) => {
2 | try {
3 | const res = await promise;
4 | return [res, null] as const;
5 | } catch (error) {
6 | return [null, error] as const;
7 | }
8 | };
9 |
--------------------------------------------------------------------------------
/tsup.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from "tsup";
2 |
3 | export default defineConfig({
4 | entry: ['./src/extension.ts'],
5 | outDir: "dist",
6 | dts: false,
7 | splitting: false,
8 | clean: true,
9 | platform: 'node',
10 | sourcemap: false,
11 | external: ['vscode'],
12 | noExternal: ['ofetch']
13 | })
--------------------------------------------------------------------------------
/.vscode/tasks.json:
--------------------------------------------------------------------------------
1 | // See https://go.microsoft.com/fwlink/?LinkId=733558
2 | // for the documentation about the tasks.json format
3 | {
4 | "version": "2.0.0",
5 | "tasks": [
6 | {
7 | "type": "npm",
8 | "script": "dev",
9 | "problemMatcher": "$tsc-watch",
10 | "isBackground": true,
11 | "presentation": {
12 | "reveal": "never",
13 | "group": "watchers"
14 | },
15 | "group": {
16 | "kind": "build",
17 | "isDefault": true
18 | }
19 | },
20 | ]
21 | }
22 |
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: "npm" # See documentation for possible values
9 | directory: "/" # Location of package manifests
10 | schedule:
11 | interval: "weekly"
12 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "Node16",
4 | "target": "ES2022",
5 | "lib": [
6 | "ES2022"
7 | ],
8 | "sourceMap": true,
9 | "rootDir": "src",
10 | "strict": true /* enable all strict type-checking options */
11 | /* Additional Checks */
12 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
13 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
14 | // "noUnusedParameters": true, /* Report errors on unused parameters. */
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **To Reproduce**
14 | Steps to reproduce the behavior:
15 | 1. Go to '...'
16 | 2. Click on '....'
17 | 3. Scroll down to '....'
18 | 4. See error
19 |
20 | **Expected behavior**
21 | A clear and concise description of what you expected to happen.
22 |
23 | **Screenshots**
24 | If applicable, add screenshots to help explain your problem.
25 |
26 | **Additional context**
27 | Add any other context about the problem here.
28 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | // Place your settings in this file to overwrite default and user settings.
2 | {
3 | "files.exclude": {
4 | "out": false, // set this to true to hide the "out" folder with the compiled JS files
5 | "dist": false // set this to true to hide the "dist" folder with the compiled JS files
6 | },
7 | "search.exclude": {
8 | "out": true, // set this to false to include "out" folder in search results
9 | "dist": true // set this to false to include "dist" folder in search results
10 | },
11 | // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
12 | "typescript.tsc.autoDetect": "off"
13 | }
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **Describe the solution you'd like**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Describe alternatives you've considered**
17 | A clear and concise description of any alternative solutions or features you've considered.
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the feature request here.
21 |
--------------------------------------------------------------------------------
/src/snippets/help.code-snippets:
--------------------------------------------------------------------------------
1 | {
2 | "shadcn/vue help cn": {
3 | "prefix": ["cn-help"],
4 | "body": [
5 | "// cni-[component] e.g. cni-button",
6 | "import { Button } from \"@/components/ui/button\"",
7 | "",
8 | "// cnx-[component] e.g. cnx-button",
9 | "",
10 | ""
11 | ]
12 | },
13 |
14 | "shadcn/vue help shadcn": {
15 | "prefix": ["shadcn-help"],
16 | "body": [
17 | "// shadcn-i-[component] e.g. shadcn-i-button",
18 | "import { Button } from \"@/components/ui/button\"",
19 | "",
20 | "// shadcn-x-[component] e.g. shadcn-x-button",
21 | "",
22 | ""
23 | ]
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/src/utils/logs.ts:
--------------------------------------------------------------------------------
1 | import * as vscode from "vscode";
2 | import { ofetch } from "ofetch";
3 | import { type } from "os";
4 | import { detectPackageManager } from "./vscode";
5 |
6 | // Endpoint to visualize the mostly used commands, package manager, Operating system and VSCode version.
7 |
8 | const BASE_URL = "";
9 |
10 | export const logCmd = async (cmd: string) => {
11 | const packageManager = await detectPackageManager();
12 | const log = {
13 | cmd,
14 | packageManager,
15 | os: type,
16 | vscodeVersion: vscode.version,
17 | };
18 |
19 | const reqUrl = `${BASE_URL}/api/log`;
20 | await ofetch(reqUrl, {
21 | method: "POST",
22 | headers: {
23 | "Content-Type": "application/json",
24 | authentication: `Bearer ${process.env.BEARER_TOKE}`,
25 | },
26 | body: JSON.stringify(log),
27 | });
28 | };
29 |
--------------------------------------------------------------------------------
/eslint.config.mjs:
--------------------------------------------------------------------------------
1 | import { defineConfig, globalIgnores } from "eslint/config";
2 | import typescriptEslint from "@typescript-eslint/eslint-plugin";
3 | import tsParser from "@typescript-eslint/parser";
4 |
5 | export default defineConfig([globalIgnores(["**/out", "**/dist", "**/*.d.ts"]), {
6 | plugins: {
7 | "@typescript-eslint": typescriptEslint,
8 | },
9 |
10 | languageOptions: {
11 | parser: tsParser,
12 | ecmaVersion: 6,
13 | sourceType: "module",
14 | },
15 |
16 | rules: {
17 | "@typescript-eslint/naming-convention": ["warn", {
18 | selector: "import",
19 | format: ["camelCase", "PascalCase"],
20 | }],
21 |
22 | "@/semi": "warn",
23 | curly: "warn",
24 | eqeqeq: "warn",
25 | "no-throw-literal": "warn",
26 | semi: "off",
27 | },
28 | }]);
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | // A launch configuration that compiles the extension and then opens it inside a new window
2 | // Use IntelliSense to learn about possible attributes.
3 | // Hover to view descriptions of existing attributes.
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 | {
6 | "version": "0.2.0",
7 | "configurations": [
8 | {
9 | "name": "Run Extension",
10 | "type": "extensionHost",
11 | "request": "launch",
12 | "args": [
13 | "--extensionDevelopmentPath=${workspaceFolder}"
14 | ],
15 | "outFiles": [
16 | "${workspaceFolder}/dist/**/*.js"
17 | ],
18 | "preLaunchTask": "${defaultBuildTask}"
19 | },
20 | {
21 | "name": "Extension Tests",
22 | "type": "extensionHost",
23 | "request": "launch",
24 | "args": [
25 | "--extensionDevelopmentPath=${workspaceFolder}",
26 | "--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
27 | ],
28 | "outFiles": [
29 | "${workspaceFolder}/out/**/*.js",
30 | "${workspaceFolder}/dist/**/*.js"
31 | ],
32 | "preLaunchTask": "tasks: watch-tests"
33 | }
34 | ]
35 | }
36 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023 vscode-shadcn-vue and Selemondev
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/src/utils/registry.ts:
--------------------------------------------------------------------------------
1 | import { ofetch } from "ofetch";
2 | import { to } from "./index";
3 | import { detectPackageManager } from "./vscode";
4 |
5 | type OgComponent = {
6 | type: "registry:ui";
7 | name: string;
8 | files: string[];
9 | dependencies?: string[];
10 | registryDependencies?: string[];
11 | };
12 |
13 | export type Component = {
14 | label: string;
15 | detail?: string;
16 | };
17 |
18 | export const shadCnDocUrl = "https://shadcn-vue.com/docs";
19 |
20 | export type Components = Component[];
21 |
22 | export const getRegistry = async (): Promise => {
23 | const reqUrl = "https://www.shadcn-vue.com/r/index.json";
24 | const [res, err] = await to(ofetch(reqUrl));
25 |
26 | if (err || !res) {
27 | return null;
28 | }
29 |
30 | const [data] = await to(res);
31 |
32 | if (!data) {
33 | return null;
34 | }
35 |
36 | const components: Components = (data as OgComponent[]).map((c) => {
37 | const component: Component = {
38 | label: c.name,
39 | detail: `dependencies: ${c.dependencies && c.dependencies.length > 0 ? c.dependencies.join(" ") : "no dependency"}`,
40 | };
41 |
42 | return component;
43 | });
44 |
45 | return components;
46 | };
47 |
48 | export const getInstallCmd = async (components: string[], cwd: string) => {
49 | const packageManager = await detectPackageManager();
50 | const componentStr = components.join(" ");
51 |
52 | if (packageManager === "bun") {
53 | return `bunx shadcn-vue add ${componentStr} -c ${cwd}`;
54 | }
55 |
56 | if (packageManager === "pnpm") {
57 | return `pnpm dlx shadcn-vue@latest add ${componentStr} -c ${cwd}`;
58 | }
59 |
60 | return `npx shadcn-vue@latest add ${componentStr} -c ${cwd}`;
61 | };
62 |
63 | export const getInitCmd = async (cwd: string) => {
64 | const packageManager = await detectPackageManager();
65 |
66 | if (packageManager === "bun") {
67 | return `bunx shadcn-vue@latest init -c ${cwd}`;
68 | }
69 |
70 | if (packageManager === "pnpm") {
71 | return `pnpm dlx shadcn-vue@latest init -c ${cwd}`;
72 | }
73 |
74 | return `npx shadcn-vue@latest init -c ${cwd}`;
75 | };
76 |
77 | export const getComponentDocLink = (component: string) => {
78 | return `${shadCnDocUrl}/components/${component}`;
79 | };
80 |
--------------------------------------------------------------------------------
/src/utils/vscode.ts:
--------------------------------------------------------------------------------
1 | import * as vscode from "vscode";
2 |
3 | export type PackageManager = "npm" | "pnpm" | "yarn" | "bun";
4 |
5 | export const executeCommand = (cmd: string, createNew = true): void => {
6 | let terminal = vscode.window.activeTerminal;
7 | if (createNew || !terminal) {
8 | terminal = vscode.window.createTerminal();
9 | }
10 |
11 | terminal.show();
12 | terminal.sendText(cmd);
13 | };
14 |
15 | export const getFileStat = async (fileName: string) => {
16 | // Get the currently opened workspace folders
17 | const workspaceFolders = vscode.workspace.workspaceFolders;
18 |
19 | if (!workspaceFolders) {
20 | return null;
21 | }
22 |
23 | for (const workspaceFolder of workspaceFolders) {
24 | const filePath = vscode.Uri.joinPath(workspaceFolder.uri, fileName);
25 | try {
26 | const fileMetadata = await vscode.workspace.fs.stat(filePath);
27 |
28 | return fileMetadata;
29 | } catch (error) {
30 | return null;
31 | }
32 | }
33 | };
34 |
35 | export const detectPackageManager = async (): Promise => {
36 | const lockFiles = ["bun.lock", "bun.lockb"];
37 | const results = await Promise.all(
38 | lockFiles.map((file) =>
39 | getFileStat(file).catch(err => err.code === 'ENOENT' ? false : Promise.reject(err))
40 | )
41 | );
42 |
43 | if (results.some(Boolean)) {
44 | return 'bun';
45 | }
46 |
47 | const pnpmLockExists = await getFileStat("pnpm-lock.yaml");
48 | if (pnpmLockExists) {
49 | return "pnpm";
50 | }
51 |
52 | const yarnLockExists = await getFileStat("yarn.lock");
53 | if (yarnLockExists) {
54 | return "yarn";
55 | }
56 |
57 | return "npm";
58 | };
59 |
60 |
61 | export const getOrChooseCwd = async (): Promise => {
62 | let cwd = "";
63 | const prefix = "${workspaceFolder}/";
64 |
65 | const workspaceFolders = (vscode.workspace.workspaceFolders ?? []).filter(
66 | (f) => f.uri.scheme === "file"
67 | );
68 |
69 | if (!workspaceFolders.length) { return "./"; }
70 |
71 | const workspacePath = workspaceFolders[0]?.uri.fsPath ?? "";
72 | const cwdFromConfig = vscode.workspace
73 | .getConfiguration()
74 | .get("terminal.integrated.cwd")
75 | ?.trim();
76 |
77 | if (cwdFromConfig) {
78 | if (cwdFromConfig.startsWith(prefix)) {
79 | cwd = cwdFromConfig.slice(prefix.length);
80 | }
81 | else if (cwdFromConfig.startsWith(workspacePath)) {
82 | cwd = cwdFromConfig.replace(new RegExp(`^${workspacePath}/?`), "");
83 | } else {
84 | cwd = cwdFromConfig;
85 | }
86 |
87 | return `${workspacePath}/${cwd}`;
88 | }
89 |
90 | const choice = await vscode.window.showQuickPick(
91 | workspaceFolders.map((f) => f.name)
92 | );
93 |
94 | if (!choice) { return "./"; }
95 |
96 | return workspaceFolders.find((f) => f.name === choice)?.uri.fsPath ?? "./";
97 | };
98 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 |
2 | # Contributor Covenant Code of Conduct
3 |
4 | ## Our Pledge
5 |
6 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, race, body size, disability, ethnicity, sex characteristics, and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
7 |
8 | ## Our Standards
9 |
10 | Examples of behavior that contributes to creating a positive environment include:
11 |
12 | - Using welcoming and inclusive language
13 | - Being respectful of differing viewpoints and experiences
14 | - Gracefully accepting constructive criticism
15 | - Focusing on what is best for the community
16 | - Showing empathy towards other community members
17 |
18 | Examples of unacceptable behavior by participants include:
19 |
20 | - The use of sexualized language or imagery and unwelcome sexual attention or advances
21 | - Trolling, insulting/derogatory comments, and personal or political attacks
22 | - Public or private harassment
23 | - Publishing others' private information, such as a physical or electronic address, without explicit permission
24 | - Other conduct which could reasonably be considered inappropriate in a professional setting
25 |
26 | ## Our Responsibilities
27 |
28 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
29 |
30 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
31 |
32 | ## Scope
33 |
34 | This Code of Conduct applies within all project spaces, and it also applies when an individual is representing the project or its community in public spaces. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
35 |
36 | ## Enforcement
37 |
38 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at selemondev19@gmail.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
39 |
40 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
41 |
42 | ## Attribution
43 |
44 | This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
45 |
46 | For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing
2 |
3 | Thank you for your valuable contribution and dedication to improving this project! We greatly appreciate your involvement. To ensure a smooth and cohesive collaboration, we have provided some guidelines to help you get started. Kindly take a moment to review them before submitting your contributions. Your efforts will undoubtedly make this project even better, and we look forward to working together on its success!.
4 |
5 | ## Code of Conduct
6 |
7 | This project is governed by the [Contributor Covenant Code of Conduct](./CODE_OF_CONDUCT.md). By participating, you are expected to adhere to it.
8 |
9 | ## Open Development
10 |
11 | All work happens directly on `GitHub`. Both core team members and external contributors send pull requests which go through the same `code review` process.
12 |
13 | ## Semantic Versioning
14 |
15 | This project follows semantic versioning. We release patch versions for bug fixes or other changes that do not change the behavior of the API, minor versions for new features that are backward-compatible, and major versions for any breaking changes.
16 |
17 | Every significant change is documented in the changelog file.
18 |
19 | ## Reporting Issues
20 |
21 | Welcome to vscode-shadcn-vue! We value your feedback and contributions to make this project better. If you encounter any bugs or have feature requests, please use [Github issues](https://github.com/selemondev/vscode-shadcn-vue/issues) issues to submit them.
22 |
23 | Before reporting an issue, we ask you to:
24 |
25 | 1. `Search for Similar Issues` : Ensure you have searched through our existing issues to see if the problem or feature request has already been addressed or is under discussion.
26 |
27 | 2. `Reproduce the Bug` : If reporting a bug, please provide the minimum code required to reproduce the issue. This will help us understand and resolve the problem more efficiently.
28 |
29 | 3. `Describe Feature Requests` : For feature requests, please describe the desired functionality and any additional context that might be helpful.
30 |
31 | Your participation and attention to these guidelines will help us maintain a more organized and effective development process.
32 |
33 | ## Commit Guidelines
34 |
35 | Commit messages are required to follow the [conventional-changelog standard](https://www.conventionalcommits.org/en/v1.0.0/):
36 |
37 | ```bash
38 | [optional scope]:
39 |
40 | [optional body]
41 |
42 | [optional footer(s)]
43 | ```
44 |
45 | 👉 [Commit example](https://github.com/unocss/unocss/releases/tag/v0.39.0)
46 |
47 | ### Commit types
48 |
49 | The following is a list of commit types:
50 |
51 | ### Commit Types:
52 |
53 | - `feat`: Adding a new snippet or significant functionality to the vscode-shadcn-vue extension.
54 |
55 | - `fix`: Addressing bugs or issues in existing vscode-shadcn-vue extension.
56 |
57 | - `docs`: Commits related to documentation changes for vscode-shadcn-vue extension.
58 |
59 | - `style`: Commits related to code formatting, styling, or theming of vscode-shadcn-vue extension.
60 |
61 | - `refactor`: Code changes that enhance the library's structure without introducing new features or fixing bugs extension.
62 |
63 | - `perf`: Commits aimed at improving performance for vscode-shadcn-vue extension.
64 |
65 | - `test`: Commits related to testing vscode-shadcn-vue extension.
66 |
67 | - `chore`: Other commits not affecting source or test files directly extension.
68 |
69 | ## License
70 |
71 | By contributing your code to the repository, you agree to license your contribution under the [MIT license](./LICENSE).
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "shadcn-vue",
3 | "version": "0.1.0",
4 | "displayName": "shadcn/vue",
5 | "description": "Integrate components and snippets from Shadcn/Vue directly into your IDE.",
6 | "publisher": "Selemondev",
7 | "repository": {
8 | "type": "git",
9 | "url": "https://github.com/selemondev/vscode-shadcn-vue"
10 | },
11 | "bugs": {
12 | "url": "https://github.com/selemondev/vscode-shadcn-vue/issues",
13 | "email": "selemonsrdev@gmail.com"
14 | },
15 | "engines": {
16 | "vscode": "^1.85.0"
17 | },
18 | "categories": [
19 | "Other",
20 | "Snippets"
21 | ],
22 | "keywords": [
23 | "vue3",
24 | "shadcn-vue",
25 | "shadcn-vue-snippet",
26 | "shadcn-vue-snippets",
27 | "snippet",
28 | "snippets",
29 | "vue snippets",
30 | "shadcn-vue snippets",
31 | "vue 3 typescript snippets"
32 | ],
33 | "icon": "src/images/icon.png",
34 | "galleryBanner": {
35 | "color": "#C80000",
36 | "theme": "dark"
37 | },
38 | "activationEvents": [],
39 | "main": "./dist/extension.js",
40 | "contributes": {
41 | "snippets": [
42 | {
43 | "language": "javascript",
44 | "path": "./src/snippets/imports.code-snippets"
45 | },
46 | {
47 | "language": "typescript",
48 | "path": "./src/snippets/imports.code-snippets"
49 | },
50 | {
51 | "language": "html",
52 | "path": "./src/snippets/help.code-snippets"
53 | },
54 | {
55 | "language": "javascript",
56 | "path": "./src/snippets/help.code-snippets"
57 | },
58 | {
59 | "language": "typescript",
60 | "path": "./src/snippets/help.code-snippets"
61 | },
62 | {
63 | "language": "html",
64 | "path": "./src/snippets/usage.code-snippets"
65 | },
66 | {
67 | "language": "vue-html",
68 | "path": "./src/snippets/usage.code-snippets"
69 | }
70 | ],
71 | "commands": [
72 | {
73 | "command": "shadcn-vue.initCli",
74 | "title": "shadcn/vue: Install CLI"
75 | },
76 | {
77 | "command": "shadcn-vue.addNewComponent",
78 | "title": "shadcn/vue: Add New Component"
79 | },
80 | {
81 | "command": "shadcn-vue.addMultipleComponents",
82 | "title": "shadcn/vue: Add Multiple Components"
83 | },
84 | {
85 | "command": "shadcn-vue.gotoComponentDoc",
86 | "title": "shadcn/vue: Open Component Documentation"
87 | },
88 | {
89 | "command": "shadcn-vue.reloadComponentList",
90 | "title": "shadcn/vue: Reload Component List"
91 | },
92 | {
93 | "command": "shadcn-vue.gotoDoc",
94 | "title": "shadcn/vue: Open Documentation"
95 | }
96 | ]
97 | },
98 | "scripts": {
99 | "vscode:prepublish": "pnpm build",
100 | "generate:release": "npx changelogen@latest --release",
101 | "build": "tsup",
102 | "dev": "pnpm build -- --watch",
103 | "vscode": "pnpx vsce publish --no-dependencies",
104 | "ovsx": "pnpx ovsx publish --no-dependencies",
105 | "lint": "eslint src --ext ts"
106 | },
107 | "devDependencies": {
108 | "@types/node": "24.6.0",
109 | "@types/vscode": "^1.85.0",
110 | "@typescript-eslint/eslint-plugin": "^8.43.0",
111 | "@typescript-eslint/parser": "^8.45.0",
112 | "eslint": "^9.39.1",
113 | "tsup": "^8.5.0",
114 | "typescript": "^5.9.2"
115 | },
116 | "dependencies": {
117 | "ofetch": "^1.4.1"
118 | },
119 | "packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
120 | }
--------------------------------------------------------------------------------
/src/extension.ts:
--------------------------------------------------------------------------------
1 | import * as vscode from "vscode";
2 |
3 | import {
4 | getInitCmd,
5 | getInstallCmd,
6 | getComponentDocLink,
7 | getRegistry,
8 | shadCnDocUrl,
9 | } from "./utils/registry";
10 | import { executeCommand, getOrChooseCwd } from "./utils/vscode";
11 | import type { Components, Component } from "./utils/registry";
12 |
13 | const commands = {
14 | initCli: "shadcn-vue.initCli",
15 | addNewComponent: "shadcn-vue.addNewComponent",
16 | addMultipleComponents: "shadcn-vue.addMultipleComponents",
17 | gotoComponentDoc: "shadcn-vue.gotoComponentDoc",
18 | reloadComponentList: "shadcn-vue.reloadComponentList",
19 | gotoDoc: "shadcn-vue.gotoDoc",
20 | } as const;
21 |
22 | export function activate(context: vscode.ExtensionContext) {
23 | let registryData: Components;
24 |
25 | const disposables: vscode.Disposable[] = [
26 | vscode.commands.registerCommand(commands.initCli, async () => {
27 | const cwd = await getOrChooseCwd();
28 | const intCmd = await getInitCmd(cwd);
29 | executeCommand(intCmd);
30 | }),
31 | vscode.commands.registerCommand(commands.addNewComponent, async () => {
32 | if (!registryData) {
33 | const newRegistryData = await getRegistry();
34 |
35 | if (!newRegistryData) {
36 | vscode.window.showErrorMessage("Can not get the component list");
37 | return;
38 | }
39 |
40 | registryData = newRegistryData;
41 | }
42 |
43 | const selectedComponent = await vscode.window.showQuickPick(registryData, {
44 | matchOnDescription: true,
45 | });
46 |
47 | if (!selectedComponent) {
48 | return;
49 | }
50 | const cwd = await getOrChooseCwd();
51 | const installCmd = await getInstallCmd([selectedComponent.label], cwd);
52 | executeCommand(installCmd);
53 | }),
54 |
55 | vscode.commands.registerCommand(commands.addMultipleComponents, async () => {
56 | if (!registryData) {
57 | const newRegistryData = await getRegistry();
58 |
59 | if (!newRegistryData) {
60 | vscode.window.showErrorMessage("Can not get the component list");
61 | return;
62 | }
63 |
64 | registryData = newRegistryData;
65 | }
66 |
67 | const selectedComponents = await vscode.window.showQuickPick(registryData, {
68 | matchOnDescription: true,
69 | canPickMany: true,
70 | });
71 |
72 | if (!selectedComponents) {
73 | return;
74 | }
75 |
76 | const selectedComponent = selectedComponents.map((component: Component) => component.label);
77 | const cwd = await getOrChooseCwd();
78 | const installCmd = await getInstallCmd(selectedComponent, cwd);
79 | executeCommand(installCmd);
80 | }),
81 | vscode.commands.registerCommand(commands.gotoComponentDoc, async () => {
82 | if (!registryData) {
83 | const newRegistryData = await getRegistry();
84 |
85 | if (!newRegistryData) {
86 | vscode.window.showErrorMessage("Can not get the component list");
87 | return;
88 | }
89 |
90 | registryData = newRegistryData;
91 | }
92 |
93 | const selectedComponent = await vscode.window.showQuickPick(registryData, {
94 | matchOnDescription: true,
95 | });
96 |
97 | if (!selectedComponent) {
98 | return;
99 | }
100 |
101 | const componentDocLink = getComponentDocLink(selectedComponent.label);
102 | vscode.env.openExternal(vscode.Uri.parse(componentDocLink));
103 | }),
104 | vscode.commands.registerCommand(commands.reloadComponentList, async () => {
105 | const newRegistryData = await getRegistry();
106 |
107 | if (!newRegistryData) {
108 | vscode.window.showErrorMessage("Can not get the component list");
109 | return;
110 | }
111 |
112 | registryData = newRegistryData;
113 | vscode.window.showInformationMessage("shadcn/vue: Reloaded components");
114 | }),
115 | vscode.commands.registerCommand(commands.gotoDoc, async () => {
116 | vscode.env.openExternal(vscode.Uri.parse(shadCnDocUrl));
117 | }),
118 | ];
119 |
120 | context.subscriptions.push(...disposables);
121 | }
122 |
123 | // This method is called when your extension is deactivated
124 | export function deactivate() { }
125 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | shadcn-vue
5 |
6 |
7 |
8 | This VSCode extension enables you to install [shadcn/vue](https://shadcn-vue.com) components directly from your IDE ✨.
9 |
10 | ## Initialize the Shadcn/Vue CLI.
11 |
12 | 
13 |
14 | ## Install components.
15 |
16 | 
17 |
18 |
19 | ## Choose a component to install from the list.
20 |
21 | 
22 |
23 | ## Install multiple components.
24 | 
25 |
26 | ## Choose components to install from the list.
27 | 
28 |
29 |
30 | ## Open the Shadcn-Vue documentation.
31 |
32 | 
33 |
34 |
35 | ## Navigate to a particular component's documentation page.
36 |
37 | 
38 |
39 |
40 |
41 | ## Shadcn/Vue Snippets
42 |
43 | Easily import and use shadcn-vue components with ease using snippets within VSCode. Just type `cn` or `shadcn` in your vue file and choose from an array of components to use.
44 |
45 | 
46 |
47 |
48 | ### How it works
49 |
50 | | Snippet | Description |
51 | | ----------------- | -------------------------------------- |
52 | | `cn-help` | How to use shadcn/vue snippets |
53 | | `cni-[component]` | Adds imports for the component |
54 | | `cnx-[component]` | Adds the template for the vue component|
55 |
56 | ### How to use?
57 |
58 | 1. Components
59 |
60 | For `Alert` component, type `cni-alert` to add imports in your vue file, and to use the component, use `cnx-alert`.
61 |
62 | > Similarly, for any other component, use `cni-[component]` to add imports and `cnx-[component]` to use.
63 |
64 | ```tsx
65 | // cni-alert
66 | import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"
67 |
68 | // cnx-alert
69 |
70 | Heads up!
71 |
72 | You can add components using the Shadcn/Vue VSCode extension.
73 |
74 | ;
75 | ```
76 |
77 | ### How to contribute?
78 |
79 | Contributions are welcome and encouraged! If you have any ideas or suggestions for new features, or if you encounter any bugs or issues, please open an issue or submit a pull request on the GitHub repository.
80 |
81 | Developers interested in contributing should read the [Code of Conduct](./CODE_OF_CONDUCT.md) and the [Contributing Guide](./CONTRIBUTING.md).
82 |
83 | Use this link - [Snippet Generation](https://snippet-generator.app/?description=https://shadcn-vue.com/docs/components&tabtrigger=shadcn-&snippet=%22https://shadcn-vue.com/docs/components%22:+%7B%0A++%22prefix%22:+%22shadcn-%22,%0A++%22body%22:+%5B%0A++%5D,%0A++%22description%22:+%22https://shadcn-vue.com/docs/components%22%0A%7D&mode=vscode) to generate snippets and add/update them to the `snippets` folder that is located in the `src` accordingly.
84 |
85 |
86 | ### Credits
87 |
88 | All credits go to these amazing developers
89 |
90 | - [Shadcn UI](https://ui.shadcn.com) for creating this beautiful project.
91 | - [Shadcn Vue](https://shadcn-vue.com) for creating the Vue port of Shadcn UI.
92 | - [Radix Vue](https://radix-vue.com) for doing all the hard work to make sure components are accessible.
93 | - [VueUse](https://vueuse.org) for providing many useful utilities.
94 | - [Suhel Makkad](https://github.com/SuhelMakkad/vscode-shadcn-ui) for creating the Shadcn UI VSCode extension.
95 | - [Neeraj Dalal](https://github.com/nrjdalal/shadcn-ui-snippets) for creating the Shadcn UI Snippets VSCode extension.
96 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 |
3 | All notable changes to the "shadcn-vue" extension will be documented in this file.
4 |
5 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6 |
7 | ## v0.1.0
8 |
9 | [compare changes](https://github.com/selemondev/vscode-shadcn-vue/compare/v0.0.11...v0.1.0)
10 |
11 | ### 🩹 Fixes
12 |
13 | - User's cwd preference ([73d5b84](https://github.com/selemondev/vscode-shadcn-vue/commit/73d5b84))
14 |
15 | ### 🏡 Chore
16 |
17 | - Set npm as the package ecosystem for Dependabot ([c256cb9](https://github.com/selemondev/vscode-shadcn-vue/commit/c256cb9))
18 | - **deps-dev:** Bump tsup from 8.0.1 to 8.5.0 ([17deab4](https://github.com/selemondev/vscode-shadcn-vue/commit/17deab4))
19 | - **deps-dev:** Bump @types/vscode from 1.86.0 to 1.103.0 ([246dec3](https://github.com/selemondev/vscode-shadcn-vue/commit/246dec3))
20 | - **deps-dev:** Bump @types/node from 20.2.5 to 24.3.1 ([82b4682](https://github.com/selemondev/vscode-shadcn-vue/commit/82b4682))
21 | - **deps-dev:** Bump typescript from 5.3.3 to 5.9.2 ([4ecfe75](https://github.com/selemondev/vscode-shadcn-vue/commit/4ecfe75))
22 | - **deps-dev:** Bump @types/node from 24.3.1 to 24.5.2 ([c01670e](https://github.com/selemondev/vscode-shadcn-vue/commit/c01670e))
23 | - **deps-dev:** Bump @types/node from 24.5.2 to 24.6.0 ([c6289ea](https://github.com/selemondev/vscode-shadcn-vue/commit/c6289ea))
24 | - **package.json:** Update dependencies ([22ffb67](https://github.com/selemondev/vscode-shadcn-vue/commit/22ffb67))
25 | - **eslint:** Migrate to Eslint v9 file structure ([47545ca](https://github.com/selemondev/vscode-shadcn-vue/commit/47545ca))
26 | - Update settings.json ([4d8dbb2](https://github.com/selemondev/vscode-shadcn-vue/commit/4d8dbb2))
27 |
28 | ### ❤️ Contributors
29 |
30 | - Selemondev
31 | - Selemon Brahanu ([@selemondev](https://github.com/selemondev))
32 |
33 | ## v0.0.11
34 |
35 | [compare changes](https://github.com/selemondev/vscode-shadcn-vue/compare/v0.0.10...v0.0.11)
36 |
37 | ### 🏡 Chore
38 |
39 | - Add vue-html language for usage snippet ([562012d](https://github.com/selemondev/vscode-shadcn-vue/pull/37))
40 |
41 | ### ❤️ Contributors
42 |
43 | - [Misbah Ansori](@misbahansori)
44 |
45 | ## v0.0.10
46 |
47 | [compare changes](https://github.com/selemondev/vscode-shadcn-vue/compare/v0.0.9...v0.0.10)
48 |
49 | ### 💅 Refactors
50 |
51 | - Bun-lock file ([00699b1](https://github.com/selemondev/vscode-shadcn-vue/commit/00699b1))
52 |
53 | ### 🏡 Chore
54 |
55 | - Release ([4109d7b](https://github.com/selemondev/vscode-shadcn-vue/commit/4109d7b))
56 | - Add deployment scripts ([0cd39c9](https://github.com/selemondev/vscode-shadcn-vue/commit/0cd39c9))
57 |
58 | ### ❤️ Contributors
59 |
60 | - Selemondev
61 |
62 | ## v0.0.6
63 |
64 | [compare changes](https://github.com/selemondev/vscode-shadcn-vue/compare/v0.0.5...v0.0.6)
65 |
66 | ### 🚀 Enhancements
67 |
68 | - **snippets:** Add Sonner snippets ([5711055](https://github.com/selemondev/vscode-shadcn-vue/commit/5711055))
69 | - **snippets:** Add Carousel snippets ([0eb3f8b](https://github.com/selemondev/vscode-shadcn-vue/commit/0eb3f8b))
70 |
71 | ### 💅 Refactors
72 |
73 | - Use getInstallCmd function ([f1e4f58](https://github.com/selemondev/vscode-shadcn-vue/commit/f1e4f58))
74 | - **bundler:** Migrate from webpack to tsup ([e086953](https://github.com/selemondev/vscode-shadcn-vue/commit/e086953))
75 |
76 | ### 📖 Documentation
77 |
78 | - Update README.md ([db25930](https://github.com/selemondev/vscode-shadcn-vue/commit/db25930))
79 |
80 | ### 🏡 Chore
81 |
82 | - **release:** V0.0.4 ([634aab6](https://github.com/selemondev/vscode-shadcn-vue/commit/634aab6))
83 | - **release:** V0.0.5 ([727bf3d](https://github.com/selemondev/vscode-shadcn-vue/commit/727bf3d))
84 | - Use help-code snippets in script block ([7d8faa8](https://github.com/selemondev/vscode-shadcn-vue/commit/7d8faa8))
85 | - Use getInstallCmd function ([4dd7a07](https://github.com/selemondev/vscode-shadcn-vue/commit/4dd7a07))
86 | - . ([1a4a27a](https://github.com/selemondev/vscode-shadcn-vue/commit/1a4a27a))
87 |
88 | ### ❤️ Contributors
89 |
90 | - Selemondev
91 |
92 | ## v0.0.5
93 |
94 | [compare changes](https://github.com/selemondev/vscode-shadcn-vue/compare/v0.0.4...v0.0.5)
95 |
96 | ### 📖 Documentation
97 |
98 | - Update README file ([ed975af](https://github.com/selemondev/vscode-shadcn-vue/commit/ed975af))
99 |
100 | ### 🏡 Chore
101 |
102 | - Release v0.0.3 ([acabf7d](https://github.com/selemondev/vscode-shadcn-vue/commit/acabf7d))
103 | - **release:** V0.0.4 ([634aab6](https://github.com/selemondev/vscode-shadcn-vue/commit/634aab6))
104 |
105 | ### ❤️ Contributors
106 |
107 | - Selemondev
108 |
109 | ## v0.0.4
110 |
111 | [compare changes](https://github.com/selemondev/vscode-shadcn-vue/compare/v0.0.4...v0.0.4)
112 |
113 | ### 📖 Documentation
114 |
115 | - Update README file ([ed975af](https://github.com/selemondev/vscode-shadcn-vue/commit/ed975af))
116 |
117 | ### 🏡 Chore
118 |
119 | - Release v0.0.3 ([acabf7d](https://github.com/selemondev/vscode-shadcn-vue/commit/acabf7d))
120 |
121 | ### ❤️ Contributors
122 |
123 | - Selemondev
124 |
125 | ## v0.0.4
126 |
127 | [compare changes](https://github.com/selemondev/vscode-shadcn-vue/compare/v0.0.2...v0.0.4)
128 |
129 | ### 🚀 Enhancements
130 |
131 | - Add issue templates ([cf6fc5c](https://github.com/selemondev/vscode-shadcn-vue/commit/cf6fc5c))
132 | - Add multiple components ([76bfa7b](https://github.com/selemondev/vscode-shadcn-vue/commit/76bfa7b))
133 |
134 | ### 🏡 Chore
135 |
136 | - **release:** V0.0.2 ([c66297b](https://github.com/selemondev/vscode-shadcn-vue/commit/c66297b))
137 | - Add codeowners ([982e047](https://github.com/selemondev/vscode-shadcn-vue/commit/982e047))
138 | - Remove console logs ([404399c](https://github.com/selemondev/vscode-shadcn-vue/commit/404399c))
139 | - Bumpp version ([c910cb6](https://github.com/selemondev/vscode-shadcn-vue/commit/c910cb6))
140 |
141 | ### ❤️ Contributors
142 |
143 | - Selemondev
144 |
145 | ## v0.0.2
146 |
147 |
148 | ### 📖 Documentation
149 |
150 | - Update docs ([5cabe2f](https://github.com/selemondev/vscode-shadcn-vue/commit/5cabe2f))
151 | - Update docs ([11ffb8b](https://github.com/selemondev/vscode-shadcn-vue/commit/11ffb8b))
152 |
153 | ### 🏡 Chore
154 |
155 | - Add files to .gitignore ([d85f78b](https://github.com/selemondev/vscode-shadcn-vue/commit/d85f78b))
156 | - Remove tests ([44d5e10](https://github.com/selemondev/vscode-shadcn-vue/commit/44d5e10))
157 |
158 | ### ❤️ Contributors
159 |
160 | - Selemondev
161 |
162 | ## [Unreleased]
163 |
164 | - Initial release
--------------------------------------------------------------------------------
/src/snippets/imports.code-snippets:
--------------------------------------------------------------------------------
1 | {
2 | "Accordion": {
3 | "prefix": ["shadcn-i-accordion", "cni-accordion"],
4 | "body": [
5 | "import {",
6 | " Accordion,",
7 | " AccordionContent,",
8 | " AccordionItem,",
9 | " AccordionTrigger,",
10 | "} from \"@/components/ui/accordion\"",
11 | ""
12 | ],
13 | "description": "https://shadcn-vue.com/docs/components"
14 | },
15 |
16 | "Alert": {
17 | "prefix": ["shadcn-i-alert", "cni-alert"],
18 | "body": [
19 | "import { Alert, AlertDescription, AlertTitle } from \"@/components/ui/alert\"",
20 | ""
21 | ],
22 | "description": "https://shadcn-vue.com/docs/components/alert.html"
23 | },
24 |
25 | "Alert Dialog": {
26 | "prefix": ["shadcn-i-alert-dialog", "cni-alert-dialog"],
27 | "body": [
28 | "import {",
29 | " AlertDialog,",
30 | " AlertDialogAction,",
31 | " AlertDialogCancel,",
32 | " AlertDialogContent,",
33 | " AlertDialogDescription,",
34 | " AlertDialogFooter,",
35 | " AlertDialogHeader,",
36 | " AlertDialogTitle,",
37 | " AlertDialogTrigger,",
38 | "} from \"@/components/ui/alert-dialog\"",
39 | ""
40 | ],
41 | "description": "https://shadcn-vue.com/docs/components/alert-dialog.html"
42 | },
43 |
44 | "Aspect Ratio": {
45 | "prefix": ["shadcn-i-aspect-ratio", "cni-aspect-ratio"],
46 | "body": [
47 | "import { AspectRatio } from \"@/components/ui/aspect-ratio\"",
48 | ""
49 | ],
50 | "description": "https://shadcn-vue.com/docs/components/aspect-ratio.html"
51 | },
52 |
53 | "Avatar": {
54 | "prefix": ["shadcn-i-avatar", "cni-avatar"],
55 | "body": [
56 | "import { Avatar, AvatarFallback, AvatarImage } from \"@/components/ui/avatar\"",
57 | ""
58 | ],
59 | "description": "https://shadcn-vue.com/docs/components/avatar.html"
60 | },
61 |
62 | "Badge": {
63 | "prefix": ["shadcn-i-badge", "cni-badge"],
64 | "body": ["import { Badge } from \"@/components/ui/badge\"", ""],
65 | "description": "https://shadcn-vue.com/docs/components/badge.html"
66 | },
67 |
68 | "Button": {
69 | "prefix": ["shadcn-i-button", "cni-button"],
70 | "body": ["import { Button } from \"@/components/ui/button\"", ""],
71 | "description": "https://shadcn-vue.com/docs/components/button.html"
72 | },
73 |
74 | "Calendar": {
75 | "prefix": ["shadcn-i-calendar", "cni-calendar"],
76 | "body": [
77 | "import { Calendar } from \"@/components/ui/calendar\"",
78 | ""
79 | ],
80 | "description": "https://shadcn-vue.com/docs/components/calendar.html"
81 | },
82 |
83 | "Card": {
84 | "prefix": ["shadcn-i-card", "cni-card"],
85 | "body": [
86 | "import {",
87 | " Card,",
88 | " CardContent,",
89 | " CardDescription,",
90 | " CardFooter,",
91 | " CardHeader,",
92 | " CardTitle,",
93 | "} from \"@/components/ui/card\"",
94 | ""
95 | ],
96 | "description": "https://shadcn-vue.com/docs/components/card.html"
97 | },
98 |
99 | "Carousel": {
100 | "prefix": ["shadcn-i-carousel", "cni-carousel"],
101 | "body": [
102 | "import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from '@/components/ui/carousel'",
103 | "import { Card, CardContent } from '@/components/ui/card'"
104 | ],
105 | "description": "https://shadcn-vue.com/docs/components/carousel.html"
106 | },
107 |
108 | "Checkbox": {
109 | "prefix": ["shadcn-i-checkbox", "cni-checkbox"],
110 | "body": ["import { Checkbox } from \"@/components/ui/checkbox\"", ""],
111 | "description": "https://shadcn-vue.com/docs/components/checkbox.html"
112 | },
113 |
114 | "Collapsible": {
115 | "prefix": ["shadcn-i-collapsible", "cni-collapsible"],
116 | "body": [
117 | "import {",
118 | " Collapsible,",
119 | " CollapsibleContent,",
120 | " CollapsibleTrigger,",
121 | "} from \"@/components/ui/collapsible\"",
122 | ""
123 | ],
124 | "description": "https://shadcn-vue.com/docs/components/collapsible.html"
125 | },
126 |
127 | "Command": {
128 | "prefix": ["shadcn-i-command", "cni-command"],
129 | "body": [
130 | "import {",
131 | " Command,",
132 | " CommandDialog,",
133 | " CommandEmpty,",
134 | " CommandGroup,",
135 | " CommandInput,",
136 | " CommandItem,",
137 | " CommandList,",
138 | " CommandSeparator,",
139 | " CommandShortcut,",
140 | "} from \"@/components/ui/command\"",
141 | ""
142 | ],
143 | "description": "https://shadcn-vue.com/docs/components/command.html"
144 | },
145 |
146 | "Context Menu": {
147 | "prefix": ["shadcn-i-context-menu", "cni-context-menu"],
148 | "body": [
149 | "import { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from \"@/components/ui/context-menu\"",
150 | ""
151 | ],
152 | "description": "https://shadcn-vue.com/docs/components/context-menu.html"
153 | },
154 |
155 | "Dialog": {
156 | "prefix": ["shadcn-i-dialog", "cni-dialog"],
157 | "body": [
158 | "import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from \"@/components/ui/dialog\"",
159 | ""
160 | ],
161 | "description": "https://shadcn-vue.com/docs/components/dialog.html"
162 | },
163 |
164 | "Drawer": {
165 | "prefix": ["shadcn-i-drawer", "cni-drawer"],
166 | "body": [
167 | "import {",
168 | " Drawer,",
169 | " DrawerClose,",
170 | " DrawerContent,",
171 | " DrawerDescription,",
172 | " DrawerFooter,",
173 | " DrawerHeader,",
174 | " DrawerTitle,",
175 | " DrawerTrigger,",
176 | "} from '@/components/ui/drawer'"
177 | ],
178 | "description": "https://shadcn-vue.com/docs/components/drawer.html"
179 | },
180 |
181 |
182 | "Dropdown Menu": {
183 | "prefix": ["shadcn-i-dropdown-menu", "cni-dropdown-menu"],
184 | "body": [
185 | "import {",
186 | " DropdownMenu,",
187 | " DropdownMenuContent,",
188 | " DropdownMenuGroup,",
189 | " DropdownMenuItem,",
190 | " DropdownMenuLabel,",
191 | " DropdownMenuPortal,",
192 | " DropdownMenuSeparator,",
193 | " DropdownMenuShortcut,",
194 | " DropdownMenuSub,",
195 | " DropdownMenuSubContent,",
196 | " DropdownMenuSubTrigger,",
197 | " DropdownMenuTrigger,",
198 | "} from \"@/components/ui/dropdown-menu\"",
199 | ""
200 | ],
201 | "description": "https://shadcn-vue.com/docs/components/dropdown-menu.html"
202 | },
203 |
204 | "Hover Card": {
205 | "prefix": ["shadcn-i-hover-card", "cni-hover-card"],
206 | "body": [
207 | "import {",
208 | " HoverCard,",
209 | " HoverCardContent,",
210 | " HoverCardTrigger,",
211 | "} from \"@/components/ui/hover-card\"",
212 | ""
213 | ],
214 | "description": "https://shadcn-vue.com/docs/components/hover-card.html"
215 | },
216 |
217 | "Input": {
218 | "prefix": ["shadcn-i-input", "cni-input"],
219 | "body": ["import { Input } from \"@/components/ui/input\"", ""],
220 | "description": "https://shadcn-vue.com/docs/components/input.html"
221 | },
222 |
223 | "Label": {
224 | "prefix": ["shadcn-i-label", "cni-label"],
225 | "body": ["import { Label } from \"@/components/ui/label\"", ""],
226 | "description": "https://shadcn-vue.com/docs/components/label.html"
227 | },
228 |
229 | "Menubar": {
230 | "prefix": ["shadcn-i-menubar", "cni-menubar"],
231 | "body": [
232 | "import {",
233 | " Menubar,",
234 | " MenubarContent,",
235 | " MenubarItem,",
236 | " MenubarMenu,",
237 | " MenubarSeparator,",
238 | " MenubarShortcut,",
239 | " MenubarTrigger,",
240 | "} from \"@/components/ui/menubar\"",
241 | ""
242 | ],
243 | "description": "https://shadcn-vue.com/docs/components/menu-bar.html"
244 | },
245 |
246 | "Navigation Menu": {
247 | "prefix": ["shadcn-i-navigation-menu", "cni-navigation-menu"],
248 | "body": [
249 | "import {",
250 | " NavigationMenu,",
251 | " NavigationMenuContent,",
252 | " NavigationMenuIndicator,",
253 | " NavigationMenuItem,",
254 | " NavigationMenuLink,",
255 | " NavigationMenuList,",
256 | " NavigationMenuTrigger,",
257 | " NavigationMenuViewport,",
258 | "} from \"@/components/ui/navigation-menu\"",
259 | ""
260 | ],
261 | "description": "https://shadcn-vue.com/docs/components/navigation-menu.html"
262 | },
263 | "Pagination": {
264 | "prefix": ["shadcn-i-pagination", "cni-pagination"],
265 | "body": [
266 | "import {",
267 | " Pagination,",
268 | " PaginationEllipsis,",
269 | " PaginationFirst,",
270 | " PaginationLast,",
271 | " PaginationList,",
272 | " PaginationListItem,",
273 | " PaginationNext,",
274 | " PaginationPrev,",
275 | "} from '@/components/ui/pagination'",
276 | ""
277 | ],
278 | "description": "https://shadcn-vue.com/docs/components/pagination.html"
279 | },
280 |
281 | "Pin Input": {
282 | "prefix": ["shadcn-i-pin-input", "cni-i-input"],
283 | "body": [
284 | "import {",
285 | " PinInput,",
286 | " PinInputInput,",
287 | "} from '@/components/ui/pin-input'"
288 | ""
289 | ],
290 | "description": "https://shadcn-vue.com/docs/components/pin-input.html"
291 | },
292 |
293 | "Popover": {
294 | "prefix": ["shadcn-i-popover", "cni-popover"],
295 | "body": [
296 | "import {",
297 | " Popover,",
298 | " PopoverContent,",
299 | " PopoverTrigger,",
300 | "} from \"@/components/ui/popover\"",
301 | ""
302 | ],
303 | "description": "https://shadcn-vue.com/docs/components/popover.html"
304 | },
305 |
306 | "Progress": {
307 | "prefix": ["shadcn-i-progress", "cni-progress"],
308 | "body": ["import { Progress } from \"@/components/ui/progress\"", ""],
309 | "description": "https://shadcn-vue.com/docs/components/progress.html"
310 | },
311 |
312 | "Radio Group": {
313 | "prefix": ["shadcn-i-radio-group", "cni-radio-group"],
314 | "body": [
315 | "import { Label } from \"@/components/ui/label\"",
316 | "import { RadioGroup, RadioGroupItem } from \"@/components/ui/radio-group\"",
317 | ""
318 | ],
319 | "description": "https://shadcn-vue.com/docs/components/radio-group.html"
320 | },
321 |
322 | "Resizable": {
323 | "prefix": ["shadcn-i-resizable", "cni-resizable"],
324 | "body": [
325 | "import {",
326 | " ResizableHandle,",
327 | " ResizablePanel,",
328 | " ResizablePanelGroup,",
329 | "} from '@/components/ui/resizable'"
330 | ],
331 | "description": "https://shadcn-vue.com/docs/components/resizable.html"
332 | },
333 |
334 | "Scroll Area": {
335 | "prefix": ["shadcn-i-scroll-area", "cni-scroll-area"],
336 | "body": ["import { ScrollArea } from \"@/components/ui/scroll-area\"", ""],
337 | "description": "https://shadcn-vue.com/docs/components/scroll-area.html"
338 | },
339 |
340 | "Select": {
341 | "prefix": ["cni-select"],
342 | "body": [
343 | "import {",
344 | " Select,",
345 | " SelectContent,",
346 | " SelectItem,",
347 | " SelectTrigger,",
348 | " SelectValue,",
349 | "} from \"@/components/ui/select\"",
350 | ""
351 | ],
352 | "description": "https://shadcn-vue.com/docs/components/select.html"
353 | },
354 |
355 | "Separator": {
356 | "prefix": ["shadcn-i-separator", "cni-separator"],
357 | "body": ["import { Separator } from \"@/components/ui/separator\"", ""],
358 | "description": "https://shadcn-vue.com/docs/components/separator.html"
359 | },
360 |
361 | "Sheet": {
362 | "prefix": ["shadcn-i-sheet", "cni-sheet"],
363 | "body": [
364 | "import {",
365 | " Sheet,",
366 | " SheetContent,",
367 | " SheetDescription,",
368 | " SheetHeader,",
369 | " SheetTitle,",
370 | " SheetTrigger,",
371 | "} from \"@/components/ui/sheet\"",
372 | ""
373 | ],
374 | "description": "https://shadcn-vue.com/docs/components/sheet.html"
375 | },
376 |
377 | "Skeleton": {
378 | "prefix": ["shadcn-i-skeleton", "cni-skeleton"],
379 | "body": ["import { Skeleton } from \"@/components/ui/skeleton\"", ""],
380 | "description": "https://shadcn-vue.com/docs/components/skeleton.html"
381 | },
382 |
383 | "Slider": {
384 | "prefix": ["shadcn-i-slider", "cni-slider"],
385 | "body": ["import { Slider } from \"@/components/ui/slider\"", "import { cn } from \"@/lib/utils\"", ""],
386 | "description": "https://shadcn-vue.com/docs/components/slider.html"
387 | },
388 |
389 | "Sonner": {
390 | "prefix": ["shadcn-i-sonner", "cni-sonner"],
391 | "body": [
392 | "import { Toaster } from \"@/components/ui/sonner\""
393 | ],
394 | "description": "https://www.shadcn-vue.com/docs/components/sonner.html"
395 | },
396 |
397 | "Switch": {
398 | "prefix": ["shadcn-i-switch", "cni-switch"],
399 | "body": ["import { Switch } from \"@/components/ui/switch\"", ""],
400 | "description": "https://shadcn-vue.com/docs/components/switch.html"
401 | },
402 |
403 | "Table": {
404 | "prefix": ["shadcn-i-table", "cni-table"],
405 | "body": [
406 | "import {",
407 | " Table,",
408 | " TableBody,",
409 | " TableCaption,",
410 | " TableCell,",
411 | " TableHead,",
412 | " TableHeader,",
413 | " TableRow,",
414 | "} from \"@/components/ui/table\"",
415 | ""
416 | ],
417 | "description": "https://shadcn-vue.com/docs/components/table.html"
418 | },
419 |
420 | "Tabs": {
421 | "prefix": ["shadcn-i-tabs", "cni-tabs"],
422 | "body": [
423 | "import { Tabs, TabsContent, TabsList, TabsTrigger } from \"@/components/ui/tabs\"",
424 | ""
425 | ],
426 | "description": "https://shadcn-vue.com/docs/components/tabs.html"
427 | },
428 |
429 | "Tags Input": {
430 | "prefix": ["shadcn-i-tags-input", "cni-tags-input"],
431 | "body": [
432 | "import { TagsInput, TagsInputInput, TagsInputItem, TagsInputItemDelete, TagsInputItemText } from '@/components/ui/tags-input'"
433 | ""
434 | ],
435 | "description": "https://shadcn-vue.com/docs/components/tags-input.html"
436 | },
437 |
438 | "Textarea": {
439 | "prefix": ["shadcn-i-textarea", "cni-textarea"],
440 | "body": ["import { Textarea } from \"@/components/ui/textarea\"", ""],
441 | "description": "https://shadcn-vue.com/docs/components/textarea.html"
442 | },
443 |
444 | "Toast": {
445 | "prefix": ["shadcn-i-toast", "cni-toast"],
446 | "body": [
447 | "import { Button } from '@/components/ui/button'",
448 | "import { useToast } from '@/components/ui/toast/use-toast'"
449 | ],
450 | "description": "https://shadcn-vue.com/docs/components/toast.html"
451 | },
452 |
453 | "Toggle": {
454 | "prefix": ["shadcn-i-toggle", "cni-toggle"],
455 | "body": ["import { Toggle } from \"@/components/ui/toggle\"", ""],
456 | "description": "https://shadcn-vue.com/docs/components/toggle.html"
457 | },
458 |
459 | "Tooltip": {
460 | "prefix": ["shadcn-i-tooltip", "cni-tooltip"],
461 | "body": [
462 | "import {",
463 | " Tooltip,",
464 | " TooltipContent,",
465 | " TooltipProvider,",
466 | " TooltipTrigger,",
467 | "} from \"@/components/ui/tooltip\"",
468 | ""
469 | ],
470 | "description": "https://shadcn-vue.com/docs/components/tooltip.html"
471 | }
472 | }
473 |
--------------------------------------------------------------------------------
/src/snippets/usage.code-snippets:
--------------------------------------------------------------------------------
1 | {
2 | "Accordion": {
3 | "prefix": ["shadcn-x-accordion", "cnx-accordion"],
4 | "body": [
5 | " ",
6 | " ",
7 | " Is it accessible?",
8 | " ",
9 | " Yes. It adheres to the WAI-ARIA design pattern.",
10 | " ",
11 | " ",
12 | " ",
13 | ],
14 | "description": "https://shadcn-vue.com/docs/components/accordion.html"
15 | },
16 |
17 | "Alert": {
18 | "prefix": ["shadcn-x-alert", "cnx-alert"],
19 | "body": [
20 | " ",
21 | " Heads up!",
22 | " ",
23 | " You can add components to your app using the cli.",
24 | " ",
25 | " ",
26 | ],
27 | "description": "https://shadcn-vue.com/docs/components/alert.html"
28 | },
29 |
30 | "Alert Destructive": {
31 | "prefix": ["shadcn-x-alert-destructive", "cnx-alert-destructive"],
32 | "body": [
33 | " ",
34 | " Error",
35 | " ",
36 | " Your session has expired. Please log in again.",
37 | " ",
38 | " ",
39 | ],
40 | "description": "https://shadcn-vue.com/docs/components/alert.html"
41 | },
42 |
43 | "Alert Dialog": {
44 | "prefix": ["shadcn-x-alert-dialog", "cnx-alert-dialog"],
45 | "body": [
46 | " ",
47 | " Open",
48 | " ",
49 | " ",
50 | " Are you absolutely sure?",
51 | " ",
52 | " This action cannot be undone. This will permanently delete your account",
53 | " and remove your data from our servers.",
54 | " ",
55 | " ",
56 | " ",
57 | " Cancel",
58 | " Continue",
59 | " ",
60 | " ",
61 | " ",
62 | ],
63 | "description": "https://shadcn-vue.com/docs/components/alert-dialog.html"
64 | },
65 |
66 | "Aspect Ratio": {
67 | "prefix": ["shadcn-x-aspect-ratio", "cnx-aspect-ratio"],
68 | "body": [
69 | "",
70 | "
",
71 | "
",
72 | " ",
73 | "
",
74 | ],
75 | "description": "https://shadcn-vue.com/docs/components/aspect-ratio.html"
76 | },
77 |
78 | "Avatar": {
79 | "prefix": ["shadcn-x-avatar", "cnx-avatar"],
80 | "body": [
81 | "",
82 | " ",
83 | " CN",
84 | "",
85 | ],
86 | "description": "https://shadcn-vue.com/docs/components/avatar.html"
87 | },
88 |
89 | "Badge": {
90 | "prefix": ["shadcn-x-badge", "cnx-badge"],
91 | "body": [
92 | "Badge",
93 | ],
94 | "description": "https://shadcn-vue.com/docs/components/badge.html"
95 | },
96 |
97 | "Badge Destructive": {
98 | "prefix": ["shadcn-x-badge-destructive", "cnx-badge-destructive"],
99 | "body": [
100 | "",
101 | " Destructive",
102 | "",
103 | ],
104 | "description": "https://shadcn-vue.com/docs/components/badge.html"
105 | },
106 |
107 | "Badge Outline": {
108 | "prefix": ["shadcn-x-badge-outline", "cnx-badge-outline"],
109 | "body": [
110 | "",
111 | " Outline",
112 | "",
113 | ],
114 | "description": "https://shadcn-vue.com/docs/components/badge.html"
115 | },
116 |
117 | "Badge Secondary": {
118 | "prefix": ["shadcn-x-badge-secondary", "cnx-badge-secondary"],
119 | "body": [
120 | "",
121 | " Secondary",
122 | "",
123 | ],
124 | "description": "https://shadcn-vue.com/docs/components/badge.html"
125 | },
126 |
127 | "Button": {
128 | "prefix": ["shadcn-x-button", "cnx-button"],
129 | "body": [
130 | "",
131 | ],
132 | "description": "https://shadcn-vue.com/docs/components/button.html"
133 | },
134 |
135 | "Calendar": {
136 | "prefix": ["shadcn-x-calendar", "cnx-calendar"],
137 | "body": [
138 | "",
139 | ],
140 | "description": "https://shadcn-vue.com/docs/components/calendar.html"
141 | },
142 |
143 |
144 | "Card": {
145 | "prefix": ["shadcn-x-card", "cnx-card"],
146 | "body": [
147 | " ",
148 | " ",
149 | " Card Title",
150 | " Card Description",
151 | " ",
152 | " ",
153 | " Card Content",
154 | " ",
155 | " ",
156 | " Card Footer",
157 | " ",
158 | " ",
159 | ],
160 | "description": "https://shadcn-vue.com/docs/components/card.html"
161 | },
162 |
163 | "Carousel": {
164 | "prefix": ["shadcn-x-carousel", "cnx-carousel"],
165 | "body": [
166 | " ",
167 | " ",
168 | " ",
169 | " ",
170 | " ",
171 | " ",
172 | " {{ index + 1 }}",
173 | " ",
174 | " ",
175 | "
",
176 | " ",
177 | " ",
178 | " ",
179 | " ",
180 | " "
181 | ],
182 | "description": "https://shadcn-vue.com/docs/components/carousel.html"
183 | },
184 |
185 | "Carousel-Vertical": {
186 | "prefix": ["shadcn-x-carousel-vertical", "cnx-carousel-vertical"],
187 | "body": [
188 | " ",
195 | " ",
196 | " ",
197 | " ",
198 | " ",
199 | " ",
200 | " {{ index + 1 }}",
201 | " ",
202 | " ",
203 | "
",
204 | " ",
205 | " ",
206 | " ",
207 | " ",
208 | " "
209 | ],
210 | "description": "https://shadcn-vue.com/docs/components/carousel.html"
211 | },
212 |
213 | "Checkbox": {
214 | "prefix": ["shadcn-x-checkbox", "cnx-checkbox"],
215 | "body": [
216 | "",
217 | ],
218 | "description": "https://shadcn-vue.com/docs/components/checkbox.html"
219 | },
220 |
221 | "Collapsible": {
222 | "prefix": ["shadcn-x-collapsible", "cnx-collapsible"],
223 | "body": [
224 | "",
225 | " Can I use this in my project?",
226 | " ",
227 | " Yes. Free to use for personal and commercial projects. No attribution",
228 | " required.",
229 | " ",
230 | "",
231 | ""
232 | ],
233 | "description": "https://shadcn-vue.com/docs/components/collapsible.html"
234 | },
235 |
236 | "Command": {
237 | "prefix": ["shadcn-x-command", "cnx-command"],
238 | "body": [
239 | "",
240 | " ",
241 | " ",
242 | " No results found.",
243 | " ",
244 | " Calendar",
245 | " Search Emoji",
246 | " Calculator",
247 | " ",
248 | " ",
249 | " ",
250 | " Profile",
251 | " Billing",
252 | " Settings",
253 | " ",
254 | " ",
255 | "",
256 | ""
257 | ],
258 | "description": "https://shadcn-vue.com/docs/components/command.html"
259 | },
260 |
261 | "Context Menu": {
262 | "prefix": ["shadcn-x-context-menu", "cnx-context-menu"],
263 | "body": [
264 | "",
265 | " Right click",
266 | " ",
267 | " Profile",
268 | " Billing",
269 | " Team",
270 | " Subscription",
271 | " ",
272 | "",
273 | ""
274 | ],
275 | "description": "https://shadcn-vue.com/docs/components/context-menu.html"
276 | },
277 |
278 | "Dialog": {
279 | "prefix": ["shadcn-x-dialog", "cnx-dialog"],
280 | "body": [
281 | "",
293 | ""
294 | ],
295 | "description": "https://shadcn-vue.com/docs/components/dialog.html"
296 | },
297 |
298 | "Drawer": {
299 | "prefix": ["shadcn-x-drawer", "cnx-drawer"],
300 | "body": [
301 | " ",
302 | " Open",
303 | " ",
304 | " ",
305 | " Are you absolutely sure?",
306 | " This action cannot be undone.",
307 | " ",
308 | " ",
309 | " ",
310 | " ",
311 | " ",
314 | " ",
315 | " ",
316 | " ",
317 | " "
318 | ],
319 | "description": "https://shadcn-vue.com/docs/components/drawer.html"
320 | },
321 |
322 | "Dropdown Menu": {
323 | "prefix": ["shadcn-x-dropdown-menu", "cnx-dropdown-menu"],
324 | "body": [
325 | "",
326 | " Open",
327 | " ",
328 | " My Account",
329 | " ",
330 | " Profile",
331 | " Billing",
332 | " Team",
333 | " Subscription",
334 | " ",
335 | "",
336 | ""
337 | ],
338 | "description": "https://shadcn-vue.com/docs/components/dropdown-menu.html"
339 | },
340 |
341 | "Hover Card": {
342 | "prefix": ["shadcn-x-hover-card", "cnx-hover-card"],
343 | "body": [
344 | "",
345 | " Hover",
346 | " ",
347 | " The React Framework – created and maintained by @vercel.",
348 | " ",
349 | "",
350 | ""
351 | ],
352 | "description": "https://shadcn-vue.com/docs/components/hover-card.html"
353 | },
354 |
355 | "Input": {
356 | "prefix": ["shadcn-x-input", "cnx-input"],
357 | "body": ["", ""],
358 | "description": "https://shadcn-vue.com/docs/components/input.html"
359 | },
360 |
361 | "Label": {
362 | "prefix": ["shadcn-x-label", "cnx-label"],
363 | "body": ["", ""],
364 | "description": "https://shadcn-vue.com/docs/components/label.html"
365 | },
366 |
367 | "Menubar": {
368 | "prefix": ["shadcn-x-menubar", "cnx-menubar"],
369 | "body": [
370 | "",
371 | " ",
372 | " File",
373 | " ",
374 | " ",
375 | " New Tab ⌘T",
376 | " ",
377 | " New Window",
378 | " ",
379 | " Share",
380 | " ",
381 | " Print",
382 | " ",
383 | " ",
384 | "",
385 | ""
386 | ],
387 | "description": "https://shadcn-vue.com/docs/components/menubar.html"
388 | },
389 |
390 | "Navigation Menu": {
391 | "prefix": ["shadcn-x-navigation-menu", "cnx-navigation-menu"],
392 | "body": [
393 | "",
394 | " ",
395 | " ",
396 | " Item One",
397 | " ",
398 | " Link",
399 | " ",
400 | " ",
401 | " ",
402 | "",
403 | ""
404 | ],
405 | "description": "https://shadcn-vue.com/docs/components/navigation-menu.html"
406 | },
407 |
408 | "Pagination": {
409 | "prefix": ["shadcn-x-pagination", "cnx-pagination"],
410 | "body": [
411 | " ",
412 | " ",
413 | " ",
414 | " ",
415 | "",
416 | " ",
417 | " ",
418 | " ",
421 | " ",
422 | " ",
423 | " ",
424 | "",
425 | " ",
426 | " ",
427 | " ",
428 | " "
429 | ],
430 | "description": "https://shadcn-vue.com/docs/components/pagination.html"
431 | },
432 |
433 | "Pin Input": {
434 | "prefix": ["shadcn-x-pin-input", "cnx-pin-input"],
435 | "body": [
436 | " ",
443 | " ",
448 | " "
449 | ],
450 | "description": "https://shadcn-vue.com/docs/components/pin-input.html"
451 | },
452 |
453 | "Popover": {
454 | "prefix": ["shadcn-x-popover", "cnx-popover"],
455 | "body": [
456 | "",
457 | " Open",
458 | " Place content for the popover here.",
459 | "",
460 | ""
461 | ],
462 | "description": "https://shadcn-vue.com/docs/components/popover.html"
463 | },
464 |
465 | "Progress": {
466 | "prefix": ["shadcn-x-progress", "cnx-progress"],
467 | "body": ["", ""],
468 | "description": "https://shadcn-vue.com/docs/components/progress.html"
469 | },
470 |
471 | "Radio Group": {
472 | "prefix": ["shadcn-x-radio-group", "cnx-radio-group"],
473 | "body": [
474 | " ",
475 | " ",
476 | " ",
477 | " ",
478 | "
",
479 | " ",
480 | " ",
481 | " ",
482 | "
",
483 | " ",
484 | " ",
485 | " ",
486 | "
",
487 | " "
488 | ],
489 | "description": "https://shadcn-vue.com/docs/components/radio-group.html"
490 | },
491 |
492 |
493 | "Resizable": {
494 | "prefix": ["shadcn-x-resizable", "cnx-resizable"],
495 | "body": [
496 | " ",
497 | " One",
498 | " ",
499 | " Two",
500 | " "
501 | ],
502 | "description": "https://shadcn-vue.com/docs/components/resizable.html"
503 | },
504 |
505 | "Scroll Area": {
506 | "prefix": ["shadcn-x-scroll-area", "cnx-scroll-area"],
507 | "body": [
508 | "",
509 | " Jokester began sneaking into the castle in the middle of the night and leaving",
510 | " jokes all over the place: under the king's pillow, in his soup, even in the",
511 | " royal toilet. The king was furious, but he couldn't seem to stop Jokester. And",
512 | " then, one day, the people of the kingdom discovered that the jokes left by",
513 | " Jokester were so funny that they couldn't help but laugh. And once they",
514 | " started laughing, they couldn't stop.",
515 | "",
516 | ""
517 | ],
518 | "description": "https://shadcn-vue.com/docs/components/scroll-area.html"
519 | },
520 |
521 | "Select": {
522 | "prefix": ["cnx-select", "shadcn-x-select"],
523 | "body": [
524 | " "
537 | ],
538 | "description": "https://shadcn-vue.com/docs/components/select.html"
539 | },
540 |
541 | "Separator": {
542 | "prefix": ["shadcn-x-separator", "cnx-separator"],
543 | "body": ["", ""],
544 | "description": "https://shadcn-vue.com/docs/components/separator.html"
545 | },
546 |
547 | "Sheet": {
548 | "prefix": ["shadcn-x-sheet", "cnx-sheet"],
549 | "body": [
550 | " ",
551 | " Open",
552 | " ",
553 | " ",
554 | " Are you sure absolutely sure?",
555 | " ",
556 | " This action cannot be undone. This will permanently delete your account",
557 | " and remove your data from our servers.",
558 | " ",
559 | " ",
560 | " ",
561 | " "
562 | ],
563 | "description": "https://shadcn-vue.com/docs/components/sheet.html"
564 | },
565 |
566 | "Skeleton": {
567 | "prefix": ["shadcn-x-skeleton", "cnx-skeleton"],
568 | "body": [
569 | " ",
570 | "
",
571 | "
",
572 | " ",
573 | " ",
574 | "
",
575 | "
"
576 | ],
577 | "description": "https://shadcn-vue.com/docs/components/skeleton.html"
578 | },
579 |
580 | "Slider": {
581 | "prefix": ["shadcn-x-slider", "cnx-slider"],
582 | "body": [
583 | " "
589 | ],
590 | "description": "https://shadcn-vue.com/docs/components/slider.html"
591 | },
592 |
593 | "Sonner": {
594 | "prefix": ["shadcn-x-sonner", "cnx-sonner"],
595 | "body": [
596 | ""
597 | ],
598 | "description": "https://shadcn-vue.com/docs/components/sonner.html"
599 | },
600 |
601 | "Switch": {
602 | "prefix": ["shadcn-x-switch", "cnx-switch"],
603 | "body": ["", ""],
604 | "description": "https://shadcn-vue.com/docs/components/switch.html"
605 | },
606 |
607 | "Table": {
608 | "prefix": ["shadcn-x-table", "cnx-table"],
609 | "body": [
610 | " ",
611 | " A list of your recent invoices.",
612 | " ",
613 | " ",
614 | " ",
615 | " Invoice",
616 | " ",
617 | " Status",
618 | " Method",
619 | " ",
620 | " Amount",
621 | " ",
622 | " ",
623 | " ",
624 | " ",
625 | " ",
626 | " ",
627 | " INV001",
628 | " ",
629 | " Paid",
630 | " Credit Card",
631 | " ",
632 | " $250.00",
633 | " ",
634 | " ",
635 | " ",
636 | "
"
637 | ],
638 | "description": "https://shadcn-vue.com/docs/components/table.html"
639 | },
640 |
641 | "Tabs": {
642 | "prefix": ["shadcn-x-tabs", "cnx-tabs"],
643 | "body": [
644 | " ",
645 | " ",
646 | " ",
647 | " Account",
648 | " ",
649 | " ",
650 | " Password",
651 | " ",
652 | " ",
653 | " ",
654 | " Make changes to your account here.",
655 | " ",
656 | " ",
657 | " Change your password here.",
658 | " ",
659 | " "
660 | ],
661 | "description": "https://shadcn-vue.com/docs/components/tabs.html"
662 | },
663 |
664 | "Tags Input": {
665 | "prefix": ["shadcn-x-tags-input", "cnx-tags-input"],
666 | "body": [
667 | " ",
668 | " ",
669 | " ",
670 | " ",
671 | " ",
672 | "",
673 | " ",
674 | " "
675 | ""
676 | ],
677 | "description": "https://shadcn-vue.com/docs/components/tags-input.html"
678 | },
679 |
680 | "Textarea": {
681 | "prefix": ["shadcn-x-textarea", "cnx-textarea"],
682 | "body": ["", ""],
683 | "description": "https://shadcn-vue.com/docs/components/textarea.html"
684 | },
685 |
686 | "Toast": {
687 | "prefix": ["shadcn-x-toast", "cnx-toast"],
688 | "body": [
689 | " "
699 | ],
700 | "description": "https://shadcn-vue.com/docs/components/toast.html"
701 | },
702 |
703 | "Toggle": {
704 | "prefix": ["shadcn-x-toggle", "cnx-toggle"],
705 | "body": ["Toggle", ""],
706 | "description": "https://shadcn-vue.com/docs/components/toggle.html"
707 | },
708 |
709 | "Tooltip": {
710 | "prefix": ["shadcn-x-tooltip", "cnx-tooltip"],
711 | "body": [
712 | "",
713 | " ",
714 | " Hover",
715 | " ",
716 | " Add to library
",
717 | " ",
718 | " ",
719 | "",
720 | ""
721 | ],
722 | "description": "https://shadcn-vue.com/docs/components/tooltip.html"
723 | }
724 | }
725 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | ofetch:
12 | specifier: ^1.4.1
13 | version: 1.4.1
14 | devDependencies:
15 | '@types/node':
16 | specifier: 24.6.0
17 | version: 24.6.0
18 | '@types/vscode':
19 | specifier: ^1.85.0
20 | version: 1.103.0
21 | '@typescript-eslint/eslint-plugin':
22 | specifier: ^8.43.0
23 | version: 8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(typescript@5.9.3)
24 | '@typescript-eslint/parser':
25 | specifier: ^8.45.0
26 | version: 8.46.3(eslint@9.39.1)(typescript@5.9.3)
27 | eslint:
28 | specifier: ^9.39.1
29 | version: 9.39.1
30 | tsup:
31 | specifier: ^8.5.0
32 | version: 8.5.0(typescript@5.9.3)
33 | typescript:
34 | specifier: ^5.9.2
35 | version: 5.9.3
36 |
37 | packages:
38 |
39 | '@aashutoshrathi/word-wrap@1.2.6':
40 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
41 | engines: {node: '>=0.10.0'}
42 |
43 | '@esbuild/aix-ppc64@0.25.9':
44 | resolution: {integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==}
45 | engines: {node: '>=18'}
46 | cpu: [ppc64]
47 | os: [aix]
48 |
49 | '@esbuild/android-arm64@0.25.9':
50 | resolution: {integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==}
51 | engines: {node: '>=18'}
52 | cpu: [arm64]
53 | os: [android]
54 |
55 | '@esbuild/android-arm@0.25.9':
56 | resolution: {integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==}
57 | engines: {node: '>=18'}
58 | cpu: [arm]
59 | os: [android]
60 |
61 | '@esbuild/android-x64@0.25.9':
62 | resolution: {integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==}
63 | engines: {node: '>=18'}
64 | cpu: [x64]
65 | os: [android]
66 |
67 | '@esbuild/darwin-arm64@0.25.9':
68 | resolution: {integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==}
69 | engines: {node: '>=18'}
70 | cpu: [arm64]
71 | os: [darwin]
72 |
73 | '@esbuild/darwin-x64@0.25.9':
74 | resolution: {integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==}
75 | engines: {node: '>=18'}
76 | cpu: [x64]
77 | os: [darwin]
78 |
79 | '@esbuild/freebsd-arm64@0.25.9':
80 | resolution: {integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==}
81 | engines: {node: '>=18'}
82 | cpu: [arm64]
83 | os: [freebsd]
84 |
85 | '@esbuild/freebsd-x64@0.25.9':
86 | resolution: {integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==}
87 | engines: {node: '>=18'}
88 | cpu: [x64]
89 | os: [freebsd]
90 |
91 | '@esbuild/linux-arm64@0.25.9':
92 | resolution: {integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==}
93 | engines: {node: '>=18'}
94 | cpu: [arm64]
95 | os: [linux]
96 |
97 | '@esbuild/linux-arm@0.25.9':
98 | resolution: {integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==}
99 | engines: {node: '>=18'}
100 | cpu: [arm]
101 | os: [linux]
102 |
103 | '@esbuild/linux-ia32@0.25.9':
104 | resolution: {integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==}
105 | engines: {node: '>=18'}
106 | cpu: [ia32]
107 | os: [linux]
108 |
109 | '@esbuild/linux-loong64@0.25.9':
110 | resolution: {integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==}
111 | engines: {node: '>=18'}
112 | cpu: [loong64]
113 | os: [linux]
114 |
115 | '@esbuild/linux-mips64el@0.25.9':
116 | resolution: {integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==}
117 | engines: {node: '>=18'}
118 | cpu: [mips64el]
119 | os: [linux]
120 |
121 | '@esbuild/linux-ppc64@0.25.9':
122 | resolution: {integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==}
123 | engines: {node: '>=18'}
124 | cpu: [ppc64]
125 | os: [linux]
126 |
127 | '@esbuild/linux-riscv64@0.25.9':
128 | resolution: {integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==}
129 | engines: {node: '>=18'}
130 | cpu: [riscv64]
131 | os: [linux]
132 |
133 | '@esbuild/linux-s390x@0.25.9':
134 | resolution: {integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==}
135 | engines: {node: '>=18'}
136 | cpu: [s390x]
137 | os: [linux]
138 |
139 | '@esbuild/linux-x64@0.25.9':
140 | resolution: {integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==}
141 | engines: {node: '>=18'}
142 | cpu: [x64]
143 | os: [linux]
144 |
145 | '@esbuild/netbsd-arm64@0.25.9':
146 | resolution: {integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==}
147 | engines: {node: '>=18'}
148 | cpu: [arm64]
149 | os: [netbsd]
150 |
151 | '@esbuild/netbsd-x64@0.25.9':
152 | resolution: {integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==}
153 | engines: {node: '>=18'}
154 | cpu: [x64]
155 | os: [netbsd]
156 |
157 | '@esbuild/openbsd-arm64@0.25.9':
158 | resolution: {integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==}
159 | engines: {node: '>=18'}
160 | cpu: [arm64]
161 | os: [openbsd]
162 |
163 | '@esbuild/openbsd-x64@0.25.9':
164 | resolution: {integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==}
165 | engines: {node: '>=18'}
166 | cpu: [x64]
167 | os: [openbsd]
168 |
169 | '@esbuild/openharmony-arm64@0.25.9':
170 | resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==}
171 | engines: {node: '>=18'}
172 | cpu: [arm64]
173 | os: [openharmony]
174 |
175 | '@esbuild/sunos-x64@0.25.9':
176 | resolution: {integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==}
177 | engines: {node: '>=18'}
178 | cpu: [x64]
179 | os: [sunos]
180 |
181 | '@esbuild/win32-arm64@0.25.9':
182 | resolution: {integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==}
183 | engines: {node: '>=18'}
184 | cpu: [arm64]
185 | os: [win32]
186 |
187 | '@esbuild/win32-ia32@0.25.9':
188 | resolution: {integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==}
189 | engines: {node: '>=18'}
190 | cpu: [ia32]
191 | os: [win32]
192 |
193 | '@esbuild/win32-x64@0.25.9':
194 | resolution: {integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==}
195 | engines: {node: '>=18'}
196 | cpu: [x64]
197 | os: [win32]
198 |
199 | '@eslint-community/eslint-utils@4.9.0':
200 | resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
201 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
202 | peerDependencies:
203 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
204 |
205 | '@eslint-community/regexpp@4.12.2':
206 | resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
207 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
208 |
209 | '@eslint/config-array@0.21.1':
210 | resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
211 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
212 |
213 | '@eslint/config-helpers@0.4.2':
214 | resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
215 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
216 |
217 | '@eslint/core@0.17.0':
218 | resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
219 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
220 |
221 | '@eslint/eslintrc@3.3.1':
222 | resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
223 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
224 |
225 | '@eslint/js@9.39.1':
226 | resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==}
227 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
228 |
229 | '@eslint/object-schema@2.1.7':
230 | resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
231 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
232 |
233 | '@eslint/plugin-kit@0.4.1':
234 | resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
235 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
236 |
237 | '@humanfs/core@0.19.1':
238 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
239 | engines: {node: '>=18.18.0'}
240 |
241 | '@humanfs/node@0.16.7':
242 | resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
243 | engines: {node: '>=18.18.0'}
244 |
245 | '@humanwhocodes/module-importer@1.0.1':
246 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
247 | engines: {node: '>=12.22'}
248 |
249 | '@humanwhocodes/retry@0.4.3':
250 | resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
251 | engines: {node: '>=18.18'}
252 |
253 | '@isaacs/cliui@8.0.2':
254 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
255 | engines: {node: '>=12'}
256 |
257 | '@jridgewell/gen-mapping@0.3.13':
258 | resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
259 |
260 | '@jridgewell/resolve-uri@3.1.2':
261 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
262 | engines: {node: '>=6.0.0'}
263 |
264 | '@jridgewell/sourcemap-codec@1.5.5':
265 | resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
266 |
267 | '@jridgewell/trace-mapping@0.3.30':
268 | resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
269 |
270 | '@nodelib/fs.scandir@2.1.5':
271 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
272 | engines: {node: '>= 8'}
273 |
274 | '@nodelib/fs.stat@2.0.5':
275 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
276 | engines: {node: '>= 8'}
277 |
278 | '@nodelib/fs.walk@1.2.8':
279 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
280 | engines: {node: '>= 8'}
281 |
282 | '@pkgjs/parseargs@0.11.0':
283 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
284 | engines: {node: '>=14'}
285 |
286 | '@rollup/rollup-android-arm-eabi@4.50.1':
287 | resolution: {integrity: sha512-HJXwzoZN4eYTdD8bVV22DN8gsPCAj3V20NHKOs8ezfXanGpmVPR7kalUHd+Y31IJp9stdB87VKPFbsGY3H/2ag==}
288 | cpu: [arm]
289 | os: [android]
290 |
291 | '@rollup/rollup-android-arm64@4.50.1':
292 | resolution: {integrity: sha512-PZlsJVcjHfcH53mOImyt3bc97Ep3FJDXRpk9sMdGX0qgLmY0EIWxCag6EigerGhLVuL8lDVYNnSo8qnTElO4xw==}
293 | cpu: [arm64]
294 | os: [android]
295 |
296 | '@rollup/rollup-darwin-arm64@4.50.1':
297 | resolution: {integrity: sha512-xc6i2AuWh++oGi4ylOFPmzJOEeAa2lJeGUGb4MudOtgfyyjr4UPNK+eEWTPLvmPJIY/pgw6ssFIox23SyrkkJw==}
298 | cpu: [arm64]
299 | os: [darwin]
300 |
301 | '@rollup/rollup-darwin-x64@4.50.1':
302 | resolution: {integrity: sha512-2ofU89lEpDYhdLAbRdeyz/kX3Y2lpYc6ShRnDjY35bZhd2ipuDMDi6ZTQ9NIag94K28nFMofdnKeHR7BT0CATw==}
303 | cpu: [x64]
304 | os: [darwin]
305 |
306 | '@rollup/rollup-freebsd-arm64@4.50.1':
307 | resolution: {integrity: sha512-wOsE6H2u6PxsHY/BeFHA4VGQN3KUJFZp7QJBmDYI983fgxq5Th8FDkVuERb2l9vDMs1D5XhOrhBrnqcEY6l8ZA==}
308 | cpu: [arm64]
309 | os: [freebsd]
310 |
311 | '@rollup/rollup-freebsd-x64@4.50.1':
312 | resolution: {integrity: sha512-A/xeqaHTlKbQggxCqispFAcNjycpUEHP52mwMQZUNqDUJFFYtPHCXS1VAG29uMlDzIVr+i00tSFWFLivMcoIBQ==}
313 | cpu: [x64]
314 | os: [freebsd]
315 |
316 | '@rollup/rollup-linux-arm-gnueabihf@4.50.1':
317 | resolution: {integrity: sha512-54v4okehwl5TaSIkpp97rAHGp7t3ghinRd/vyC1iXqXMfjYUTm7TfYmCzXDoHUPTTf36L8pr0E7YsD3CfB3ZDg==}
318 | cpu: [arm]
319 | os: [linux]
320 |
321 | '@rollup/rollup-linux-arm-musleabihf@4.50.1':
322 | resolution: {integrity: sha512-p/LaFyajPN/0PUHjv8TNyxLiA7RwmDoVY3flXHPSzqrGcIp/c2FjwPPP5++u87DGHtw+5kSH5bCJz0mvXngYxw==}
323 | cpu: [arm]
324 | os: [linux]
325 |
326 | '@rollup/rollup-linux-arm64-gnu@4.50.1':
327 | resolution: {integrity: sha512-2AbMhFFkTo6Ptna1zO7kAXXDLi7H9fGTbVaIq2AAYO7yzcAsuTNWPHhb2aTA6GPiP+JXh85Y8CiS54iZoj4opw==}
328 | cpu: [arm64]
329 | os: [linux]
330 |
331 | '@rollup/rollup-linux-arm64-musl@4.50.1':
332 | resolution: {integrity: sha512-Cgef+5aZwuvesQNw9eX7g19FfKX5/pQRIyhoXLCiBOrWopjo7ycfB292TX9MDcDijiuIJlx1IzJz3IoCPfqs9w==}
333 | cpu: [arm64]
334 | os: [linux]
335 |
336 | '@rollup/rollup-linux-loongarch64-gnu@4.50.1':
337 | resolution: {integrity: sha512-RPhTwWMzpYYrHrJAS7CmpdtHNKtt2Ueo+BlLBjfZEhYBhK00OsEqM08/7f+eohiF6poe0YRDDd8nAvwtE/Y62Q==}
338 | cpu: [loong64]
339 | os: [linux]
340 |
341 | '@rollup/rollup-linux-ppc64-gnu@4.50.1':
342 | resolution: {integrity: sha512-eSGMVQw9iekut62O7eBdbiccRguuDgiPMsw++BVUg+1K7WjZXHOg/YOT9SWMzPZA+w98G+Fa1VqJgHZOHHnY0Q==}
343 | cpu: [ppc64]
344 | os: [linux]
345 |
346 | '@rollup/rollup-linux-riscv64-gnu@4.50.1':
347 | resolution: {integrity: sha512-S208ojx8a4ciIPrLgazF6AgdcNJzQE4+S9rsmOmDJkusvctii+ZvEuIC4v/xFqzbuP8yDjn73oBlNDgF6YGSXQ==}
348 | cpu: [riscv64]
349 | os: [linux]
350 |
351 | '@rollup/rollup-linux-riscv64-musl@4.50.1':
352 | resolution: {integrity: sha512-3Ag8Ls1ggqkGUvSZWYcdgFwriy2lWo+0QlYgEFra/5JGtAd6C5Hw59oojx1DeqcA2Wds2ayRgvJ4qxVTzCHgzg==}
353 | cpu: [riscv64]
354 | os: [linux]
355 |
356 | '@rollup/rollup-linux-s390x-gnu@4.50.1':
357 | resolution: {integrity: sha512-t9YrKfaxCYe7l7ldFERE1BRg/4TATxIg+YieHQ966jwvo7ddHJxPj9cNFWLAzhkVsbBvNA4qTbPVNsZKBO4NSg==}
358 | cpu: [s390x]
359 | os: [linux]
360 |
361 | '@rollup/rollup-linux-x64-gnu@4.50.1':
362 | resolution: {integrity: sha512-MCgtFB2+SVNuQmmjHf+wfI4CMxy3Tk8XjA5Z//A0AKD7QXUYFMQcns91K6dEHBvZPCnhJSyDWLApk40Iq/H3tA==}
363 | cpu: [x64]
364 | os: [linux]
365 |
366 | '@rollup/rollup-linux-x64-musl@4.50.1':
367 | resolution: {integrity: sha512-nEvqG+0jeRmqaUMuwzlfMKwcIVffy/9KGbAGyoa26iu6eSngAYQ512bMXuqqPrlTyfqdlB9FVINs93j534UJrg==}
368 | cpu: [x64]
369 | os: [linux]
370 |
371 | '@rollup/rollup-openharmony-arm64@4.50.1':
372 | resolution: {integrity: sha512-RDsLm+phmT3MJd9SNxA9MNuEAO/J2fhW8GXk62G/B4G7sLVumNFbRwDL6v5NrESb48k+QMqdGbHgEtfU0LCpbA==}
373 | cpu: [arm64]
374 | os: [openharmony]
375 |
376 | '@rollup/rollup-win32-arm64-msvc@4.50.1':
377 | resolution: {integrity: sha512-hpZB/TImk2FlAFAIsoElM3tLzq57uxnGYwplg6WDyAxbYczSi8O2eQ+H2Lx74504rwKtZ3N2g4bCUkiamzS6TQ==}
378 | cpu: [arm64]
379 | os: [win32]
380 |
381 | '@rollup/rollup-win32-ia32-msvc@4.50.1':
382 | resolution: {integrity: sha512-SXjv8JlbzKM0fTJidX4eVsH+Wmnp0/WcD8gJxIZyR6Gay5Qcsmdbi9zVtnbkGPG8v2vMR1AD06lGWy5FLMcG7A==}
383 | cpu: [ia32]
384 | os: [win32]
385 |
386 | '@rollup/rollup-win32-x64-msvc@4.50.1':
387 | resolution: {integrity: sha512-StxAO/8ts62KZVRAm4JZYq9+NqNsV7RvimNK+YM7ry//zebEH6meuugqW/P5OFUCjyQgui+9fUxT6d5NShvMvA==}
388 | cpu: [x64]
389 | os: [win32]
390 |
391 | '@types/estree@1.0.8':
392 | resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
393 |
394 | '@types/json-schema@7.0.15':
395 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
396 |
397 | '@types/node@24.6.0':
398 | resolution: {integrity: sha512-F1CBxgqwOMc4GKJ7eY22hWhBVQuMYTtqI8L0FcszYcpYX0fzfDGpez22Xau8Mgm7O9fI+zA/TYIdq3tGWfweBA==}
399 |
400 | '@types/vscode@1.103.0':
401 | resolution: {integrity: sha512-o4hanZAQdNfsKecexq9L3eHICd0AAvdbLk6hA60UzGXbGH/q8b/9xv2RgR7vV3ZcHuyKVq7b37IGd/+gM4Tu+Q==}
402 |
403 | '@typescript-eslint/eslint-plugin@8.46.3':
404 | resolution: {integrity: sha512-sbaQ27XBUopBkRiuY/P9sWGOWUW4rl8fDoHIUmLpZd8uldsTyB4/Zg6bWTegPoTLnKj9Hqgn3QD6cjPNB32Odw==}
405 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
406 | peerDependencies:
407 | '@typescript-eslint/parser': ^8.46.3
408 | eslint: ^8.57.0 || ^9.0.0
409 | typescript: '>=4.8.4 <6.0.0'
410 |
411 | '@typescript-eslint/parser@8.46.3':
412 | resolution: {integrity: sha512-6m1I5RmHBGTnUGS113G04DMu3CpSdxCAU/UvtjNWL4Nuf3MW9tQhiJqRlHzChIkhy6kZSAQmc+I1bcGjE3yNKg==}
413 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
414 | peerDependencies:
415 | eslint: ^8.57.0 || ^9.0.0
416 | typescript: '>=4.8.4 <6.0.0'
417 |
418 | '@typescript-eslint/project-service@8.46.3':
419 | resolution: {integrity: sha512-Fz8yFXsp2wDFeUElO88S9n4w1I4CWDTXDqDr9gYvZgUpwXQqmZBr9+NTTql5R3J7+hrJZPdpiWaB9VNhAKYLuQ==}
420 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
421 | peerDependencies:
422 | typescript: '>=4.8.4 <6.0.0'
423 |
424 | '@typescript-eslint/scope-manager@8.46.3':
425 | resolution: {integrity: sha512-FCi7Y1zgrmxp3DfWfr+3m9ansUUFoy8dkEdeQSgA9gbm8DaHYvZCdkFRQrtKiedFf3Ha6VmoqoAaP68+i+22kg==}
426 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
427 |
428 | '@typescript-eslint/tsconfig-utils@8.46.3':
429 | resolution: {integrity: sha512-GLupljMniHNIROP0zE7nCcybptolcH8QZfXOpCfhQDAdwJ/ZTlcaBOYebSOZotpti/3HrHSw7D3PZm75gYFsOA==}
430 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
431 | peerDependencies:
432 | typescript: '>=4.8.4 <6.0.0'
433 |
434 | '@typescript-eslint/type-utils@8.46.3':
435 | resolution: {integrity: sha512-ZPCADbr+qfz3aiTTYNNkCbUt+cjNwI/5McyANNrFBpVxPt7GqpEYz5ZfdwuFyGUnJ9FdDXbGODUu6iRCI6XRXw==}
436 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
437 | peerDependencies:
438 | eslint: ^8.57.0 || ^9.0.0
439 | typescript: '>=4.8.4 <6.0.0'
440 |
441 | '@typescript-eslint/types@8.46.3':
442 | resolution: {integrity: sha512-G7Ok9WN/ggW7e/tOf8TQYMaxgID3Iujn231hfi0Pc7ZheztIJVpO44ekY00b7akqc6nZcvregk0Jpah3kep6hA==}
443 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
444 |
445 | '@typescript-eslint/typescript-estree@8.46.3':
446 | resolution: {integrity: sha512-f/NvtRjOm80BtNM5OQtlaBdM5BRFUv7gf381j9wygDNL+qOYSNOgtQ/DCndiYi80iIOv76QqaTmp4fa9hwI0OA==}
447 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
448 | peerDependencies:
449 | typescript: '>=4.8.4 <6.0.0'
450 |
451 | '@typescript-eslint/utils@8.46.3':
452 | resolution: {integrity: sha512-VXw7qmdkucEx9WkmR3ld/u6VhRyKeiF1uxWwCy/iuNfokjJ7VhsgLSOTjsol8BunSw190zABzpwdNsze2Kpo4g==}
453 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
454 | peerDependencies:
455 | eslint: ^8.57.0 || ^9.0.0
456 | typescript: '>=4.8.4 <6.0.0'
457 |
458 | '@typescript-eslint/visitor-keys@8.46.3':
459 | resolution: {integrity: sha512-uk574k8IU0rOF/AjniX8qbLSGURJVUCeM5e4MIMKBFFi8weeiLrG1fyQejyLXQpRZbU/1BuQasleV/RfHC3hHg==}
460 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
461 |
462 | acorn-jsx@5.3.2:
463 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
464 | peerDependencies:
465 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
466 |
467 | acorn@8.15.0:
468 | resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
469 | engines: {node: '>=0.4.0'}
470 | hasBin: true
471 |
472 | ajv@6.12.6:
473 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
474 |
475 | ansi-regex@5.0.1:
476 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
477 | engines: {node: '>=8'}
478 |
479 | ansi-regex@6.2.0:
480 | resolution: {integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==}
481 | engines: {node: '>=12'}
482 |
483 | ansi-styles@4.3.0:
484 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
485 | engines: {node: '>=8'}
486 |
487 | ansi-styles@6.2.1:
488 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
489 | engines: {node: '>=12'}
490 |
491 | any-promise@1.3.0:
492 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
493 |
494 | argparse@2.0.1:
495 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
496 |
497 | balanced-match@1.0.2:
498 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
499 |
500 | brace-expansion@1.1.12:
501 | resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
502 |
503 | brace-expansion@2.0.2:
504 | resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
505 |
506 | braces@3.0.3:
507 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
508 | engines: {node: '>=8'}
509 |
510 | bundle-require@5.1.0:
511 | resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
512 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
513 | peerDependencies:
514 | esbuild: '>=0.18'
515 |
516 | cac@6.7.14:
517 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
518 | engines: {node: '>=8'}
519 |
520 | callsites@3.1.0:
521 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
522 | engines: {node: '>=6'}
523 |
524 | chalk@4.1.2:
525 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
526 | engines: {node: '>=10'}
527 |
528 | chokidar@4.0.3:
529 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
530 | engines: {node: '>= 14.16.0'}
531 |
532 | color-convert@2.0.1:
533 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
534 | engines: {node: '>=7.0.0'}
535 |
536 | color-name@1.1.4:
537 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
538 |
539 | commander@4.1.1:
540 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
541 | engines: {node: '>= 6'}
542 |
543 | concat-map@0.0.1:
544 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
545 |
546 | confbox@0.1.8:
547 | resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
548 |
549 | consola@3.4.2:
550 | resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
551 | engines: {node: ^14.18.0 || >=16.10.0}
552 |
553 | cross-spawn@7.0.6:
554 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
555 | engines: {node: '>= 8'}
556 |
557 | debug@4.4.1:
558 | resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
559 | engines: {node: '>=6.0'}
560 | peerDependencies:
561 | supports-color: '*'
562 | peerDependenciesMeta:
563 | supports-color:
564 | optional: true
565 |
566 | deep-is@0.1.4:
567 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
568 |
569 | destr@2.0.5:
570 | resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==}
571 |
572 | eastasianwidth@0.2.0:
573 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
574 |
575 | emoji-regex@8.0.0:
576 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
577 |
578 | emoji-regex@9.2.2:
579 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
580 |
581 | esbuild@0.25.9:
582 | resolution: {integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==}
583 | engines: {node: '>=18'}
584 | hasBin: true
585 |
586 | escape-string-regexp@4.0.0:
587 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
588 | engines: {node: '>=10'}
589 |
590 | eslint-scope@8.4.0:
591 | resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
592 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
593 |
594 | eslint-visitor-keys@3.4.3:
595 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
596 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
597 |
598 | eslint-visitor-keys@4.2.1:
599 | resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
600 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
601 |
602 | eslint@9.39.1:
603 | resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==}
604 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
605 | hasBin: true
606 | peerDependencies:
607 | jiti: '*'
608 | peerDependenciesMeta:
609 | jiti:
610 | optional: true
611 |
612 | espree@10.4.0:
613 | resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
614 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
615 |
616 | esquery@1.5.0:
617 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
618 | engines: {node: '>=0.10'}
619 |
620 | esrecurse@4.3.0:
621 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
622 | engines: {node: '>=4.0'}
623 |
624 | estraverse@5.3.0:
625 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
626 | engines: {node: '>=4.0'}
627 |
628 | esutils@2.0.3:
629 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
630 | engines: {node: '>=0.10.0'}
631 |
632 | fast-deep-equal@3.1.3:
633 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
634 |
635 | fast-glob@3.3.2:
636 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
637 | engines: {node: '>=8.6.0'}
638 |
639 | fast-json-stable-stringify@2.1.0:
640 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
641 |
642 | fast-levenshtein@2.0.6:
643 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
644 |
645 | fastq@1.17.0:
646 | resolution: {integrity: sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==}
647 |
648 | fdir@6.5.0:
649 | resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
650 | engines: {node: '>=12.0.0'}
651 | peerDependencies:
652 | picomatch: ^3 || ^4
653 | peerDependenciesMeta:
654 | picomatch:
655 | optional: true
656 |
657 | file-entry-cache@8.0.0:
658 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
659 | engines: {node: '>=16.0.0'}
660 |
661 | fill-range@7.1.1:
662 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
663 | engines: {node: '>=8'}
664 |
665 | find-up@5.0.0:
666 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
667 | engines: {node: '>=10'}
668 |
669 | fix-dts-default-cjs-exports@1.0.1:
670 | resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
671 |
672 | flat-cache@4.0.1:
673 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
674 | engines: {node: '>=16'}
675 |
676 | flatted@3.2.9:
677 | resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
678 |
679 | foreground-child@3.3.1:
680 | resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
681 | engines: {node: '>=14'}
682 |
683 | fsevents@2.3.3:
684 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
685 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
686 | os: [darwin]
687 |
688 | glob-parent@5.1.2:
689 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
690 | engines: {node: '>= 6'}
691 |
692 | glob-parent@6.0.2:
693 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
694 | engines: {node: '>=10.13.0'}
695 |
696 | glob@10.4.5:
697 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
698 | hasBin: true
699 |
700 | globals@14.0.0:
701 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
702 | engines: {node: '>=18'}
703 |
704 | graphemer@1.4.0:
705 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
706 |
707 | has-flag@4.0.0:
708 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
709 | engines: {node: '>=8'}
710 |
711 | ignore@5.3.1:
712 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
713 | engines: {node: '>= 4'}
714 |
715 | ignore@7.0.5:
716 | resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
717 | engines: {node: '>= 4'}
718 |
719 | import-fresh@3.3.0:
720 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
721 | engines: {node: '>=6'}
722 |
723 | imurmurhash@0.1.4:
724 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
725 | engines: {node: '>=0.8.19'}
726 |
727 | is-extglob@2.1.1:
728 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
729 | engines: {node: '>=0.10.0'}
730 |
731 | is-fullwidth-code-point@3.0.0:
732 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
733 | engines: {node: '>=8'}
734 |
735 | is-glob@4.0.3:
736 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
737 | engines: {node: '>=0.10.0'}
738 |
739 | is-number@7.0.0:
740 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
741 | engines: {node: '>=0.12.0'}
742 |
743 | isexe@2.0.0:
744 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
745 |
746 | jackspeak@3.4.3:
747 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
748 |
749 | joycon@3.1.1:
750 | resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
751 | engines: {node: '>=10'}
752 |
753 | js-yaml@4.1.0:
754 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
755 | hasBin: true
756 |
757 | json-buffer@3.0.1:
758 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
759 |
760 | json-schema-traverse@0.4.1:
761 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
762 |
763 | json-stable-stringify-without-jsonify@1.0.1:
764 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
765 |
766 | keyv@4.5.4:
767 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
768 |
769 | levn@0.4.1:
770 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
771 | engines: {node: '>= 0.8.0'}
772 |
773 | lilconfig@3.1.3:
774 | resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
775 | engines: {node: '>=14'}
776 |
777 | lines-and-columns@1.2.4:
778 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
779 |
780 | load-tsconfig@0.2.5:
781 | resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
782 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
783 |
784 | locate-path@6.0.0:
785 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
786 | engines: {node: '>=10'}
787 |
788 | lodash.merge@4.6.2:
789 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
790 |
791 | lodash.sortby@4.7.0:
792 | resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
793 |
794 | lru-cache@10.4.3:
795 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
796 |
797 | magic-string@0.30.18:
798 | resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==}
799 |
800 | merge2@1.4.1:
801 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
802 | engines: {node: '>= 8'}
803 |
804 | micromatch@4.0.8:
805 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
806 | engines: {node: '>=8.6'}
807 |
808 | minimatch@3.1.2:
809 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
810 |
811 | minimatch@9.0.5:
812 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
813 | engines: {node: '>=16 || 14 >=14.17'}
814 |
815 | minipass@7.1.2:
816 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
817 | engines: {node: '>=16 || 14 >=14.17'}
818 |
819 | mlly@1.8.0:
820 | resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
821 |
822 | ms@2.1.3:
823 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
824 |
825 | mz@2.7.0:
826 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
827 |
828 | natural-compare@1.4.0:
829 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
830 |
831 | node-fetch-native@1.6.7:
832 | resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==}
833 |
834 | object-assign@4.1.1:
835 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
836 | engines: {node: '>=0.10.0'}
837 |
838 | ofetch@1.4.1:
839 | resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==}
840 |
841 | optionator@0.9.3:
842 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
843 | engines: {node: '>= 0.8.0'}
844 |
845 | p-limit@3.1.0:
846 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
847 | engines: {node: '>=10'}
848 |
849 | p-locate@5.0.0:
850 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
851 | engines: {node: '>=10'}
852 |
853 | package-json-from-dist@1.0.1:
854 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
855 |
856 | parent-module@1.0.1:
857 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
858 | engines: {node: '>=6'}
859 |
860 | path-exists@4.0.0:
861 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
862 | engines: {node: '>=8'}
863 |
864 | path-key@3.1.1:
865 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
866 | engines: {node: '>=8'}
867 |
868 | path-scurry@1.11.1:
869 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
870 | engines: {node: '>=16 || 14 >=14.18'}
871 |
872 | pathe@2.0.3:
873 | resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
874 |
875 | picocolors@1.1.1:
876 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
877 |
878 | picomatch@2.3.1:
879 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
880 | engines: {node: '>=8.6'}
881 |
882 | picomatch@4.0.3:
883 | resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
884 | engines: {node: '>=12'}
885 |
886 | pirates@4.0.7:
887 | resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
888 | engines: {node: '>= 6'}
889 |
890 | pkg-types@1.3.1:
891 | resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
892 |
893 | postcss-load-config@6.0.1:
894 | resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
895 | engines: {node: '>= 18'}
896 | peerDependencies:
897 | jiti: '>=1.21.0'
898 | postcss: '>=8.0.9'
899 | tsx: ^4.8.1
900 | yaml: ^2.4.2
901 | peerDependenciesMeta:
902 | jiti:
903 | optional: true
904 | postcss:
905 | optional: true
906 | tsx:
907 | optional: true
908 | yaml:
909 | optional: true
910 |
911 | prelude-ls@1.2.1:
912 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
913 | engines: {node: '>= 0.8.0'}
914 |
915 | punycode@2.3.1:
916 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
917 | engines: {node: '>=6'}
918 |
919 | queue-microtask@1.2.3:
920 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
921 |
922 | readdirp@4.1.2:
923 | resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
924 | engines: {node: '>= 14.18.0'}
925 |
926 | resolve-from@4.0.0:
927 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
928 | engines: {node: '>=4'}
929 |
930 | resolve-from@5.0.0:
931 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
932 | engines: {node: '>=8'}
933 |
934 | reusify@1.0.4:
935 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
936 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
937 |
938 | rollup@4.50.1:
939 | resolution: {integrity: sha512-78E9voJHwnXQMiQdiqswVLZwJIzdBKJ1GdI5Zx6XwoFKUIk09/sSrr+05QFzvYb8q6Y9pPV45zzDuYa3907TZA==}
940 | engines: {node: '>=18.0.0', npm: '>=8.0.0'}
941 | hasBin: true
942 |
943 | run-parallel@1.2.0:
944 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
945 |
946 | semver@7.7.3:
947 | resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
948 | engines: {node: '>=10'}
949 | hasBin: true
950 |
951 | shebang-command@2.0.0:
952 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
953 | engines: {node: '>=8'}
954 |
955 | shebang-regex@3.0.0:
956 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
957 | engines: {node: '>=8'}
958 |
959 | signal-exit@4.1.0:
960 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
961 | engines: {node: '>=14'}
962 |
963 | source-map@0.8.0-beta.0:
964 | resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
965 | engines: {node: '>= 8'}
966 | deprecated: The work that was done in this beta branch won't be included in future versions
967 |
968 | string-width@4.2.3:
969 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
970 | engines: {node: '>=8'}
971 |
972 | string-width@5.1.2:
973 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
974 | engines: {node: '>=12'}
975 |
976 | strip-ansi@6.0.1:
977 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
978 | engines: {node: '>=8'}
979 |
980 | strip-ansi@7.1.0:
981 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
982 | engines: {node: '>=12'}
983 |
984 | strip-json-comments@3.1.1:
985 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
986 | engines: {node: '>=8'}
987 |
988 | sucrase@3.35.0:
989 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
990 | engines: {node: '>=16 || 14 >=14.17'}
991 | hasBin: true
992 |
993 | supports-color@7.2.0:
994 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
995 | engines: {node: '>=8'}
996 |
997 | thenify-all@1.6.0:
998 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
999 | engines: {node: '>=0.8'}
1000 |
1001 | thenify@3.3.1:
1002 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1003 |
1004 | tinyexec@0.3.2:
1005 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
1006 |
1007 | tinyglobby@0.2.15:
1008 | resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
1009 | engines: {node: '>=12.0.0'}
1010 |
1011 | to-regex-range@5.0.1:
1012 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1013 | engines: {node: '>=8.0'}
1014 |
1015 | tr46@1.0.1:
1016 | resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
1017 |
1018 | tree-kill@1.2.2:
1019 | resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
1020 | hasBin: true
1021 |
1022 | ts-api-utils@2.1.0:
1023 | resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
1024 | engines: {node: '>=18.12'}
1025 | peerDependencies:
1026 | typescript: '>=4.8.4'
1027 |
1028 | ts-interface-checker@0.1.13:
1029 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1030 |
1031 | tsup@8.5.0:
1032 | resolution: {integrity: sha512-VmBp77lWNQq6PfuMqCHD3xWl22vEoWsKajkF8t+yMBawlUS8JzEI+vOVMeuNZIuMML8qXRizFKi9oD5glKQVcQ==}
1033 | engines: {node: '>=18'}
1034 | hasBin: true
1035 | peerDependencies:
1036 | '@microsoft/api-extractor': ^7.36.0
1037 | '@swc/core': ^1
1038 | postcss: ^8.4.12
1039 | typescript: '>=4.5.0'
1040 | peerDependenciesMeta:
1041 | '@microsoft/api-extractor':
1042 | optional: true
1043 | '@swc/core':
1044 | optional: true
1045 | postcss:
1046 | optional: true
1047 | typescript:
1048 | optional: true
1049 |
1050 | type-check@0.4.0:
1051 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1052 | engines: {node: '>= 0.8.0'}
1053 |
1054 | typescript@5.9.3:
1055 | resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
1056 | engines: {node: '>=14.17'}
1057 | hasBin: true
1058 |
1059 | ufo@1.6.1:
1060 | resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==}
1061 |
1062 | undici-types@7.13.0:
1063 | resolution: {integrity: sha512-Ov2Rr9Sx+fRgagJ5AX0qvItZG/JKKoBRAVITs1zk7IqZGTJUwgUr7qoYBpWwakpWilTZFM98rG/AFRocu10iIQ==}
1064 |
1065 | uri-js@4.4.1:
1066 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1067 |
1068 | webidl-conversions@4.0.2:
1069 | resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
1070 |
1071 | whatwg-url@7.1.0:
1072 | resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
1073 |
1074 | which@2.0.2:
1075 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1076 | engines: {node: '>= 8'}
1077 | hasBin: true
1078 |
1079 | wrap-ansi@7.0.0:
1080 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
1081 | engines: {node: '>=10'}
1082 |
1083 | wrap-ansi@8.1.0:
1084 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
1085 | engines: {node: '>=12'}
1086 |
1087 | yocto-queue@0.1.0:
1088 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1089 | engines: {node: '>=10'}
1090 |
1091 | snapshots:
1092 |
1093 | '@aashutoshrathi/word-wrap@1.2.6': {}
1094 |
1095 | '@esbuild/aix-ppc64@0.25.9':
1096 | optional: true
1097 |
1098 | '@esbuild/android-arm64@0.25.9':
1099 | optional: true
1100 |
1101 | '@esbuild/android-arm@0.25.9':
1102 | optional: true
1103 |
1104 | '@esbuild/android-x64@0.25.9':
1105 | optional: true
1106 |
1107 | '@esbuild/darwin-arm64@0.25.9':
1108 | optional: true
1109 |
1110 | '@esbuild/darwin-x64@0.25.9':
1111 | optional: true
1112 |
1113 | '@esbuild/freebsd-arm64@0.25.9':
1114 | optional: true
1115 |
1116 | '@esbuild/freebsd-x64@0.25.9':
1117 | optional: true
1118 |
1119 | '@esbuild/linux-arm64@0.25.9':
1120 | optional: true
1121 |
1122 | '@esbuild/linux-arm@0.25.9':
1123 | optional: true
1124 |
1125 | '@esbuild/linux-ia32@0.25.9':
1126 | optional: true
1127 |
1128 | '@esbuild/linux-loong64@0.25.9':
1129 | optional: true
1130 |
1131 | '@esbuild/linux-mips64el@0.25.9':
1132 | optional: true
1133 |
1134 | '@esbuild/linux-ppc64@0.25.9':
1135 | optional: true
1136 |
1137 | '@esbuild/linux-riscv64@0.25.9':
1138 | optional: true
1139 |
1140 | '@esbuild/linux-s390x@0.25.9':
1141 | optional: true
1142 |
1143 | '@esbuild/linux-x64@0.25.9':
1144 | optional: true
1145 |
1146 | '@esbuild/netbsd-arm64@0.25.9':
1147 | optional: true
1148 |
1149 | '@esbuild/netbsd-x64@0.25.9':
1150 | optional: true
1151 |
1152 | '@esbuild/openbsd-arm64@0.25.9':
1153 | optional: true
1154 |
1155 | '@esbuild/openbsd-x64@0.25.9':
1156 | optional: true
1157 |
1158 | '@esbuild/openharmony-arm64@0.25.9':
1159 | optional: true
1160 |
1161 | '@esbuild/sunos-x64@0.25.9':
1162 | optional: true
1163 |
1164 | '@esbuild/win32-arm64@0.25.9':
1165 | optional: true
1166 |
1167 | '@esbuild/win32-ia32@0.25.9':
1168 | optional: true
1169 |
1170 | '@esbuild/win32-x64@0.25.9':
1171 | optional: true
1172 |
1173 | '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1)':
1174 | dependencies:
1175 | eslint: 9.39.1
1176 | eslint-visitor-keys: 3.4.3
1177 |
1178 | '@eslint-community/regexpp@4.12.2': {}
1179 |
1180 | '@eslint/config-array@0.21.1':
1181 | dependencies:
1182 | '@eslint/object-schema': 2.1.7
1183 | debug: 4.4.1
1184 | minimatch: 3.1.2
1185 | transitivePeerDependencies:
1186 | - supports-color
1187 |
1188 | '@eslint/config-helpers@0.4.2':
1189 | dependencies:
1190 | '@eslint/core': 0.17.0
1191 |
1192 | '@eslint/core@0.17.0':
1193 | dependencies:
1194 | '@types/json-schema': 7.0.15
1195 |
1196 | '@eslint/eslintrc@3.3.1':
1197 | dependencies:
1198 | ajv: 6.12.6
1199 | debug: 4.4.1
1200 | espree: 10.4.0
1201 | globals: 14.0.0
1202 | ignore: 5.3.1
1203 | import-fresh: 3.3.0
1204 | js-yaml: 4.1.0
1205 | minimatch: 3.1.2
1206 | strip-json-comments: 3.1.1
1207 | transitivePeerDependencies:
1208 | - supports-color
1209 |
1210 | '@eslint/js@9.39.1': {}
1211 |
1212 | '@eslint/object-schema@2.1.7': {}
1213 |
1214 | '@eslint/plugin-kit@0.4.1':
1215 | dependencies:
1216 | '@eslint/core': 0.17.0
1217 | levn: 0.4.1
1218 |
1219 | '@humanfs/core@0.19.1': {}
1220 |
1221 | '@humanfs/node@0.16.7':
1222 | dependencies:
1223 | '@humanfs/core': 0.19.1
1224 | '@humanwhocodes/retry': 0.4.3
1225 |
1226 | '@humanwhocodes/module-importer@1.0.1': {}
1227 |
1228 | '@humanwhocodes/retry@0.4.3': {}
1229 |
1230 | '@isaacs/cliui@8.0.2':
1231 | dependencies:
1232 | string-width: 5.1.2
1233 | string-width-cjs: string-width@4.2.3
1234 | strip-ansi: 7.1.0
1235 | strip-ansi-cjs: strip-ansi@6.0.1
1236 | wrap-ansi: 8.1.0
1237 | wrap-ansi-cjs: wrap-ansi@7.0.0
1238 |
1239 | '@jridgewell/gen-mapping@0.3.13':
1240 | dependencies:
1241 | '@jridgewell/sourcemap-codec': 1.5.5
1242 | '@jridgewell/trace-mapping': 0.3.30
1243 |
1244 | '@jridgewell/resolve-uri@3.1.2': {}
1245 |
1246 | '@jridgewell/sourcemap-codec@1.5.5': {}
1247 |
1248 | '@jridgewell/trace-mapping@0.3.30':
1249 | dependencies:
1250 | '@jridgewell/resolve-uri': 3.1.2
1251 | '@jridgewell/sourcemap-codec': 1.5.5
1252 |
1253 | '@nodelib/fs.scandir@2.1.5':
1254 | dependencies:
1255 | '@nodelib/fs.stat': 2.0.5
1256 | run-parallel: 1.2.0
1257 |
1258 | '@nodelib/fs.stat@2.0.5': {}
1259 |
1260 | '@nodelib/fs.walk@1.2.8':
1261 | dependencies:
1262 | '@nodelib/fs.scandir': 2.1.5
1263 | fastq: 1.17.0
1264 |
1265 | '@pkgjs/parseargs@0.11.0':
1266 | optional: true
1267 |
1268 | '@rollup/rollup-android-arm-eabi@4.50.1':
1269 | optional: true
1270 |
1271 | '@rollup/rollup-android-arm64@4.50.1':
1272 | optional: true
1273 |
1274 | '@rollup/rollup-darwin-arm64@4.50.1':
1275 | optional: true
1276 |
1277 | '@rollup/rollup-darwin-x64@4.50.1':
1278 | optional: true
1279 |
1280 | '@rollup/rollup-freebsd-arm64@4.50.1':
1281 | optional: true
1282 |
1283 | '@rollup/rollup-freebsd-x64@4.50.1':
1284 | optional: true
1285 |
1286 | '@rollup/rollup-linux-arm-gnueabihf@4.50.1':
1287 | optional: true
1288 |
1289 | '@rollup/rollup-linux-arm-musleabihf@4.50.1':
1290 | optional: true
1291 |
1292 | '@rollup/rollup-linux-arm64-gnu@4.50.1':
1293 | optional: true
1294 |
1295 | '@rollup/rollup-linux-arm64-musl@4.50.1':
1296 | optional: true
1297 |
1298 | '@rollup/rollup-linux-loongarch64-gnu@4.50.1':
1299 | optional: true
1300 |
1301 | '@rollup/rollup-linux-ppc64-gnu@4.50.1':
1302 | optional: true
1303 |
1304 | '@rollup/rollup-linux-riscv64-gnu@4.50.1':
1305 | optional: true
1306 |
1307 | '@rollup/rollup-linux-riscv64-musl@4.50.1':
1308 | optional: true
1309 |
1310 | '@rollup/rollup-linux-s390x-gnu@4.50.1':
1311 | optional: true
1312 |
1313 | '@rollup/rollup-linux-x64-gnu@4.50.1':
1314 | optional: true
1315 |
1316 | '@rollup/rollup-linux-x64-musl@4.50.1':
1317 | optional: true
1318 |
1319 | '@rollup/rollup-openharmony-arm64@4.50.1':
1320 | optional: true
1321 |
1322 | '@rollup/rollup-win32-arm64-msvc@4.50.1':
1323 | optional: true
1324 |
1325 | '@rollup/rollup-win32-ia32-msvc@4.50.1':
1326 | optional: true
1327 |
1328 | '@rollup/rollup-win32-x64-msvc@4.50.1':
1329 | optional: true
1330 |
1331 | '@types/estree@1.0.8': {}
1332 |
1333 | '@types/json-schema@7.0.15': {}
1334 |
1335 | '@types/node@24.6.0':
1336 | dependencies:
1337 | undici-types: 7.13.0
1338 |
1339 | '@types/vscode@1.103.0': {}
1340 |
1341 | '@typescript-eslint/eslint-plugin@8.46.3(@typescript-eslint/parser@8.46.3(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(typescript@5.9.3)':
1342 | dependencies:
1343 | '@eslint-community/regexpp': 4.12.2
1344 | '@typescript-eslint/parser': 8.46.3(eslint@9.39.1)(typescript@5.9.3)
1345 | '@typescript-eslint/scope-manager': 8.46.3
1346 | '@typescript-eslint/type-utils': 8.46.3(eslint@9.39.1)(typescript@5.9.3)
1347 | '@typescript-eslint/utils': 8.46.3(eslint@9.39.1)(typescript@5.9.3)
1348 | '@typescript-eslint/visitor-keys': 8.46.3
1349 | eslint: 9.39.1
1350 | graphemer: 1.4.0
1351 | ignore: 7.0.5
1352 | natural-compare: 1.4.0
1353 | ts-api-utils: 2.1.0(typescript@5.9.3)
1354 | typescript: 5.9.3
1355 | transitivePeerDependencies:
1356 | - supports-color
1357 |
1358 | '@typescript-eslint/parser@8.46.3(eslint@9.39.1)(typescript@5.9.3)':
1359 | dependencies:
1360 | '@typescript-eslint/scope-manager': 8.46.3
1361 | '@typescript-eslint/types': 8.46.3
1362 | '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3)
1363 | '@typescript-eslint/visitor-keys': 8.46.3
1364 | debug: 4.4.1
1365 | eslint: 9.39.1
1366 | typescript: 5.9.3
1367 | transitivePeerDependencies:
1368 | - supports-color
1369 |
1370 | '@typescript-eslint/project-service@8.46.3(typescript@5.9.3)':
1371 | dependencies:
1372 | '@typescript-eslint/tsconfig-utils': 8.46.3(typescript@5.9.3)
1373 | '@typescript-eslint/types': 8.46.3
1374 | debug: 4.4.1
1375 | typescript: 5.9.3
1376 | transitivePeerDependencies:
1377 | - supports-color
1378 |
1379 | '@typescript-eslint/scope-manager@8.46.3':
1380 | dependencies:
1381 | '@typescript-eslint/types': 8.46.3
1382 | '@typescript-eslint/visitor-keys': 8.46.3
1383 |
1384 | '@typescript-eslint/tsconfig-utils@8.46.3(typescript@5.9.3)':
1385 | dependencies:
1386 | typescript: 5.9.3
1387 |
1388 | '@typescript-eslint/type-utils@8.46.3(eslint@9.39.1)(typescript@5.9.3)':
1389 | dependencies:
1390 | '@typescript-eslint/types': 8.46.3
1391 | '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3)
1392 | '@typescript-eslint/utils': 8.46.3(eslint@9.39.1)(typescript@5.9.3)
1393 | debug: 4.4.1
1394 | eslint: 9.39.1
1395 | ts-api-utils: 2.1.0(typescript@5.9.3)
1396 | typescript: 5.9.3
1397 | transitivePeerDependencies:
1398 | - supports-color
1399 |
1400 | '@typescript-eslint/types@8.46.3': {}
1401 |
1402 | '@typescript-eslint/typescript-estree@8.46.3(typescript@5.9.3)':
1403 | dependencies:
1404 | '@typescript-eslint/project-service': 8.46.3(typescript@5.9.3)
1405 | '@typescript-eslint/tsconfig-utils': 8.46.3(typescript@5.9.3)
1406 | '@typescript-eslint/types': 8.46.3
1407 | '@typescript-eslint/visitor-keys': 8.46.3
1408 | debug: 4.4.1
1409 | fast-glob: 3.3.2
1410 | is-glob: 4.0.3
1411 | minimatch: 9.0.5
1412 | semver: 7.7.3
1413 | ts-api-utils: 2.1.0(typescript@5.9.3)
1414 | typescript: 5.9.3
1415 | transitivePeerDependencies:
1416 | - supports-color
1417 |
1418 | '@typescript-eslint/utils@8.46.3(eslint@9.39.1)(typescript@5.9.3)':
1419 | dependencies:
1420 | '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1)
1421 | '@typescript-eslint/scope-manager': 8.46.3
1422 | '@typescript-eslint/types': 8.46.3
1423 | '@typescript-eslint/typescript-estree': 8.46.3(typescript@5.9.3)
1424 | eslint: 9.39.1
1425 | typescript: 5.9.3
1426 | transitivePeerDependencies:
1427 | - supports-color
1428 |
1429 | '@typescript-eslint/visitor-keys@8.46.3':
1430 | dependencies:
1431 | '@typescript-eslint/types': 8.46.3
1432 | eslint-visitor-keys: 4.2.1
1433 |
1434 | acorn-jsx@5.3.2(acorn@8.15.0):
1435 | dependencies:
1436 | acorn: 8.15.0
1437 |
1438 | acorn@8.15.0: {}
1439 |
1440 | ajv@6.12.6:
1441 | dependencies:
1442 | fast-deep-equal: 3.1.3
1443 | fast-json-stable-stringify: 2.1.0
1444 | json-schema-traverse: 0.4.1
1445 | uri-js: 4.4.1
1446 |
1447 | ansi-regex@5.0.1: {}
1448 |
1449 | ansi-regex@6.2.0: {}
1450 |
1451 | ansi-styles@4.3.0:
1452 | dependencies:
1453 | color-convert: 2.0.1
1454 |
1455 | ansi-styles@6.2.1: {}
1456 |
1457 | any-promise@1.3.0: {}
1458 |
1459 | argparse@2.0.1: {}
1460 |
1461 | balanced-match@1.0.2: {}
1462 |
1463 | brace-expansion@1.1.12:
1464 | dependencies:
1465 | balanced-match: 1.0.2
1466 | concat-map: 0.0.1
1467 |
1468 | brace-expansion@2.0.2:
1469 | dependencies:
1470 | balanced-match: 1.0.2
1471 |
1472 | braces@3.0.3:
1473 | dependencies:
1474 | fill-range: 7.1.1
1475 |
1476 | bundle-require@5.1.0(esbuild@0.25.9):
1477 | dependencies:
1478 | esbuild: 0.25.9
1479 | load-tsconfig: 0.2.5
1480 |
1481 | cac@6.7.14: {}
1482 |
1483 | callsites@3.1.0: {}
1484 |
1485 | chalk@4.1.2:
1486 | dependencies:
1487 | ansi-styles: 4.3.0
1488 | supports-color: 7.2.0
1489 |
1490 | chokidar@4.0.3:
1491 | dependencies:
1492 | readdirp: 4.1.2
1493 |
1494 | color-convert@2.0.1:
1495 | dependencies:
1496 | color-name: 1.1.4
1497 |
1498 | color-name@1.1.4: {}
1499 |
1500 | commander@4.1.1: {}
1501 |
1502 | concat-map@0.0.1: {}
1503 |
1504 | confbox@0.1.8: {}
1505 |
1506 | consola@3.4.2: {}
1507 |
1508 | cross-spawn@7.0.6:
1509 | dependencies:
1510 | path-key: 3.1.1
1511 | shebang-command: 2.0.0
1512 | which: 2.0.2
1513 |
1514 | debug@4.4.1:
1515 | dependencies:
1516 | ms: 2.1.3
1517 |
1518 | deep-is@0.1.4: {}
1519 |
1520 | destr@2.0.5: {}
1521 |
1522 | eastasianwidth@0.2.0: {}
1523 |
1524 | emoji-regex@8.0.0: {}
1525 |
1526 | emoji-regex@9.2.2: {}
1527 |
1528 | esbuild@0.25.9:
1529 | optionalDependencies:
1530 | '@esbuild/aix-ppc64': 0.25.9
1531 | '@esbuild/android-arm': 0.25.9
1532 | '@esbuild/android-arm64': 0.25.9
1533 | '@esbuild/android-x64': 0.25.9
1534 | '@esbuild/darwin-arm64': 0.25.9
1535 | '@esbuild/darwin-x64': 0.25.9
1536 | '@esbuild/freebsd-arm64': 0.25.9
1537 | '@esbuild/freebsd-x64': 0.25.9
1538 | '@esbuild/linux-arm': 0.25.9
1539 | '@esbuild/linux-arm64': 0.25.9
1540 | '@esbuild/linux-ia32': 0.25.9
1541 | '@esbuild/linux-loong64': 0.25.9
1542 | '@esbuild/linux-mips64el': 0.25.9
1543 | '@esbuild/linux-ppc64': 0.25.9
1544 | '@esbuild/linux-riscv64': 0.25.9
1545 | '@esbuild/linux-s390x': 0.25.9
1546 | '@esbuild/linux-x64': 0.25.9
1547 | '@esbuild/netbsd-arm64': 0.25.9
1548 | '@esbuild/netbsd-x64': 0.25.9
1549 | '@esbuild/openbsd-arm64': 0.25.9
1550 | '@esbuild/openbsd-x64': 0.25.9
1551 | '@esbuild/openharmony-arm64': 0.25.9
1552 | '@esbuild/sunos-x64': 0.25.9
1553 | '@esbuild/win32-arm64': 0.25.9
1554 | '@esbuild/win32-ia32': 0.25.9
1555 | '@esbuild/win32-x64': 0.25.9
1556 |
1557 | escape-string-regexp@4.0.0: {}
1558 |
1559 | eslint-scope@8.4.0:
1560 | dependencies:
1561 | esrecurse: 4.3.0
1562 | estraverse: 5.3.0
1563 |
1564 | eslint-visitor-keys@3.4.3: {}
1565 |
1566 | eslint-visitor-keys@4.2.1: {}
1567 |
1568 | eslint@9.39.1:
1569 | dependencies:
1570 | '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1)
1571 | '@eslint-community/regexpp': 4.12.2
1572 | '@eslint/config-array': 0.21.1
1573 | '@eslint/config-helpers': 0.4.2
1574 | '@eslint/core': 0.17.0
1575 | '@eslint/eslintrc': 3.3.1
1576 | '@eslint/js': 9.39.1
1577 | '@eslint/plugin-kit': 0.4.1
1578 | '@humanfs/node': 0.16.7
1579 | '@humanwhocodes/module-importer': 1.0.1
1580 | '@humanwhocodes/retry': 0.4.3
1581 | '@types/estree': 1.0.8
1582 | ajv: 6.12.6
1583 | chalk: 4.1.2
1584 | cross-spawn: 7.0.6
1585 | debug: 4.4.1
1586 | escape-string-regexp: 4.0.0
1587 | eslint-scope: 8.4.0
1588 | eslint-visitor-keys: 4.2.1
1589 | espree: 10.4.0
1590 | esquery: 1.5.0
1591 | esutils: 2.0.3
1592 | fast-deep-equal: 3.1.3
1593 | file-entry-cache: 8.0.0
1594 | find-up: 5.0.0
1595 | glob-parent: 6.0.2
1596 | ignore: 5.3.1
1597 | imurmurhash: 0.1.4
1598 | is-glob: 4.0.3
1599 | json-stable-stringify-without-jsonify: 1.0.1
1600 | lodash.merge: 4.6.2
1601 | minimatch: 3.1.2
1602 | natural-compare: 1.4.0
1603 | optionator: 0.9.3
1604 | transitivePeerDependencies:
1605 | - supports-color
1606 |
1607 | espree@10.4.0:
1608 | dependencies:
1609 | acorn: 8.15.0
1610 | acorn-jsx: 5.3.2(acorn@8.15.0)
1611 | eslint-visitor-keys: 4.2.1
1612 |
1613 | esquery@1.5.0:
1614 | dependencies:
1615 | estraverse: 5.3.0
1616 |
1617 | esrecurse@4.3.0:
1618 | dependencies:
1619 | estraverse: 5.3.0
1620 |
1621 | estraverse@5.3.0: {}
1622 |
1623 | esutils@2.0.3: {}
1624 |
1625 | fast-deep-equal@3.1.3: {}
1626 |
1627 | fast-glob@3.3.2:
1628 | dependencies:
1629 | '@nodelib/fs.stat': 2.0.5
1630 | '@nodelib/fs.walk': 1.2.8
1631 | glob-parent: 5.1.2
1632 | merge2: 1.4.1
1633 | micromatch: 4.0.8
1634 |
1635 | fast-json-stable-stringify@2.1.0: {}
1636 |
1637 | fast-levenshtein@2.0.6: {}
1638 |
1639 | fastq@1.17.0:
1640 | dependencies:
1641 | reusify: 1.0.4
1642 |
1643 | fdir@6.5.0(picomatch@4.0.3):
1644 | optionalDependencies:
1645 | picomatch: 4.0.3
1646 |
1647 | file-entry-cache@8.0.0:
1648 | dependencies:
1649 | flat-cache: 4.0.1
1650 |
1651 | fill-range@7.1.1:
1652 | dependencies:
1653 | to-regex-range: 5.0.1
1654 |
1655 | find-up@5.0.0:
1656 | dependencies:
1657 | locate-path: 6.0.0
1658 | path-exists: 4.0.0
1659 |
1660 | fix-dts-default-cjs-exports@1.0.1:
1661 | dependencies:
1662 | magic-string: 0.30.18
1663 | mlly: 1.8.0
1664 | rollup: 4.50.1
1665 |
1666 | flat-cache@4.0.1:
1667 | dependencies:
1668 | flatted: 3.2.9
1669 | keyv: 4.5.4
1670 |
1671 | flatted@3.2.9: {}
1672 |
1673 | foreground-child@3.3.1:
1674 | dependencies:
1675 | cross-spawn: 7.0.6
1676 | signal-exit: 4.1.0
1677 |
1678 | fsevents@2.3.3:
1679 | optional: true
1680 |
1681 | glob-parent@5.1.2:
1682 | dependencies:
1683 | is-glob: 4.0.3
1684 |
1685 | glob-parent@6.0.2:
1686 | dependencies:
1687 | is-glob: 4.0.3
1688 |
1689 | glob@10.4.5:
1690 | dependencies:
1691 | foreground-child: 3.3.1
1692 | jackspeak: 3.4.3
1693 | minimatch: 9.0.5
1694 | minipass: 7.1.2
1695 | package-json-from-dist: 1.0.1
1696 | path-scurry: 1.11.1
1697 |
1698 | globals@14.0.0: {}
1699 |
1700 | graphemer@1.4.0: {}
1701 |
1702 | has-flag@4.0.0: {}
1703 |
1704 | ignore@5.3.1: {}
1705 |
1706 | ignore@7.0.5: {}
1707 |
1708 | import-fresh@3.3.0:
1709 | dependencies:
1710 | parent-module: 1.0.1
1711 | resolve-from: 4.0.0
1712 |
1713 | imurmurhash@0.1.4: {}
1714 |
1715 | is-extglob@2.1.1: {}
1716 |
1717 | is-fullwidth-code-point@3.0.0: {}
1718 |
1719 | is-glob@4.0.3:
1720 | dependencies:
1721 | is-extglob: 2.1.1
1722 |
1723 | is-number@7.0.0: {}
1724 |
1725 | isexe@2.0.0: {}
1726 |
1727 | jackspeak@3.4.3:
1728 | dependencies:
1729 | '@isaacs/cliui': 8.0.2
1730 | optionalDependencies:
1731 | '@pkgjs/parseargs': 0.11.0
1732 |
1733 | joycon@3.1.1: {}
1734 |
1735 | js-yaml@4.1.0:
1736 | dependencies:
1737 | argparse: 2.0.1
1738 |
1739 | json-buffer@3.0.1: {}
1740 |
1741 | json-schema-traverse@0.4.1: {}
1742 |
1743 | json-stable-stringify-without-jsonify@1.0.1: {}
1744 |
1745 | keyv@4.5.4:
1746 | dependencies:
1747 | json-buffer: 3.0.1
1748 |
1749 | levn@0.4.1:
1750 | dependencies:
1751 | prelude-ls: 1.2.1
1752 | type-check: 0.4.0
1753 |
1754 | lilconfig@3.1.3: {}
1755 |
1756 | lines-and-columns@1.2.4: {}
1757 |
1758 | load-tsconfig@0.2.5: {}
1759 |
1760 | locate-path@6.0.0:
1761 | dependencies:
1762 | p-locate: 5.0.0
1763 |
1764 | lodash.merge@4.6.2: {}
1765 |
1766 | lodash.sortby@4.7.0: {}
1767 |
1768 | lru-cache@10.4.3: {}
1769 |
1770 | magic-string@0.30.18:
1771 | dependencies:
1772 | '@jridgewell/sourcemap-codec': 1.5.5
1773 |
1774 | merge2@1.4.1: {}
1775 |
1776 | micromatch@4.0.8:
1777 | dependencies:
1778 | braces: 3.0.3
1779 | picomatch: 2.3.1
1780 |
1781 | minimatch@3.1.2:
1782 | dependencies:
1783 | brace-expansion: 1.1.12
1784 |
1785 | minimatch@9.0.5:
1786 | dependencies:
1787 | brace-expansion: 2.0.2
1788 |
1789 | minipass@7.1.2: {}
1790 |
1791 | mlly@1.8.0:
1792 | dependencies:
1793 | acorn: 8.15.0
1794 | pathe: 2.0.3
1795 | pkg-types: 1.3.1
1796 | ufo: 1.6.1
1797 |
1798 | ms@2.1.3: {}
1799 |
1800 | mz@2.7.0:
1801 | dependencies:
1802 | any-promise: 1.3.0
1803 | object-assign: 4.1.1
1804 | thenify-all: 1.6.0
1805 |
1806 | natural-compare@1.4.0: {}
1807 |
1808 | node-fetch-native@1.6.7: {}
1809 |
1810 | object-assign@4.1.1: {}
1811 |
1812 | ofetch@1.4.1:
1813 | dependencies:
1814 | destr: 2.0.5
1815 | node-fetch-native: 1.6.7
1816 | ufo: 1.6.1
1817 |
1818 | optionator@0.9.3:
1819 | dependencies:
1820 | '@aashutoshrathi/word-wrap': 1.2.6
1821 | deep-is: 0.1.4
1822 | fast-levenshtein: 2.0.6
1823 | levn: 0.4.1
1824 | prelude-ls: 1.2.1
1825 | type-check: 0.4.0
1826 |
1827 | p-limit@3.1.0:
1828 | dependencies:
1829 | yocto-queue: 0.1.0
1830 |
1831 | p-locate@5.0.0:
1832 | dependencies:
1833 | p-limit: 3.1.0
1834 |
1835 | package-json-from-dist@1.0.1: {}
1836 |
1837 | parent-module@1.0.1:
1838 | dependencies:
1839 | callsites: 3.1.0
1840 |
1841 | path-exists@4.0.0: {}
1842 |
1843 | path-key@3.1.1: {}
1844 |
1845 | path-scurry@1.11.1:
1846 | dependencies:
1847 | lru-cache: 10.4.3
1848 | minipass: 7.1.2
1849 |
1850 | pathe@2.0.3: {}
1851 |
1852 | picocolors@1.1.1: {}
1853 |
1854 | picomatch@2.3.1: {}
1855 |
1856 | picomatch@4.0.3: {}
1857 |
1858 | pirates@4.0.7: {}
1859 |
1860 | pkg-types@1.3.1:
1861 | dependencies:
1862 | confbox: 0.1.8
1863 | mlly: 1.8.0
1864 | pathe: 2.0.3
1865 |
1866 | postcss-load-config@6.0.1:
1867 | dependencies:
1868 | lilconfig: 3.1.3
1869 |
1870 | prelude-ls@1.2.1: {}
1871 |
1872 | punycode@2.3.1: {}
1873 |
1874 | queue-microtask@1.2.3: {}
1875 |
1876 | readdirp@4.1.2: {}
1877 |
1878 | resolve-from@4.0.0: {}
1879 |
1880 | resolve-from@5.0.0: {}
1881 |
1882 | reusify@1.0.4: {}
1883 |
1884 | rollup@4.50.1:
1885 | dependencies:
1886 | '@types/estree': 1.0.8
1887 | optionalDependencies:
1888 | '@rollup/rollup-android-arm-eabi': 4.50.1
1889 | '@rollup/rollup-android-arm64': 4.50.1
1890 | '@rollup/rollup-darwin-arm64': 4.50.1
1891 | '@rollup/rollup-darwin-x64': 4.50.1
1892 | '@rollup/rollup-freebsd-arm64': 4.50.1
1893 | '@rollup/rollup-freebsd-x64': 4.50.1
1894 | '@rollup/rollup-linux-arm-gnueabihf': 4.50.1
1895 | '@rollup/rollup-linux-arm-musleabihf': 4.50.1
1896 | '@rollup/rollup-linux-arm64-gnu': 4.50.1
1897 | '@rollup/rollup-linux-arm64-musl': 4.50.1
1898 | '@rollup/rollup-linux-loongarch64-gnu': 4.50.1
1899 | '@rollup/rollup-linux-ppc64-gnu': 4.50.1
1900 | '@rollup/rollup-linux-riscv64-gnu': 4.50.1
1901 | '@rollup/rollup-linux-riscv64-musl': 4.50.1
1902 | '@rollup/rollup-linux-s390x-gnu': 4.50.1
1903 | '@rollup/rollup-linux-x64-gnu': 4.50.1
1904 | '@rollup/rollup-linux-x64-musl': 4.50.1
1905 | '@rollup/rollup-openharmony-arm64': 4.50.1
1906 | '@rollup/rollup-win32-arm64-msvc': 4.50.1
1907 | '@rollup/rollup-win32-ia32-msvc': 4.50.1
1908 | '@rollup/rollup-win32-x64-msvc': 4.50.1
1909 | fsevents: 2.3.3
1910 |
1911 | run-parallel@1.2.0:
1912 | dependencies:
1913 | queue-microtask: 1.2.3
1914 |
1915 | semver@7.7.3: {}
1916 |
1917 | shebang-command@2.0.0:
1918 | dependencies:
1919 | shebang-regex: 3.0.0
1920 |
1921 | shebang-regex@3.0.0: {}
1922 |
1923 | signal-exit@4.1.0: {}
1924 |
1925 | source-map@0.8.0-beta.0:
1926 | dependencies:
1927 | whatwg-url: 7.1.0
1928 |
1929 | string-width@4.2.3:
1930 | dependencies:
1931 | emoji-regex: 8.0.0
1932 | is-fullwidth-code-point: 3.0.0
1933 | strip-ansi: 6.0.1
1934 |
1935 | string-width@5.1.2:
1936 | dependencies:
1937 | eastasianwidth: 0.2.0
1938 | emoji-regex: 9.2.2
1939 | strip-ansi: 7.1.0
1940 |
1941 | strip-ansi@6.0.1:
1942 | dependencies:
1943 | ansi-regex: 5.0.1
1944 |
1945 | strip-ansi@7.1.0:
1946 | dependencies:
1947 | ansi-regex: 6.2.0
1948 |
1949 | strip-json-comments@3.1.1: {}
1950 |
1951 | sucrase@3.35.0:
1952 | dependencies:
1953 | '@jridgewell/gen-mapping': 0.3.13
1954 | commander: 4.1.1
1955 | glob: 10.4.5
1956 | lines-and-columns: 1.2.4
1957 | mz: 2.7.0
1958 | pirates: 4.0.7
1959 | ts-interface-checker: 0.1.13
1960 |
1961 | supports-color@7.2.0:
1962 | dependencies:
1963 | has-flag: 4.0.0
1964 |
1965 | thenify-all@1.6.0:
1966 | dependencies:
1967 | thenify: 3.3.1
1968 |
1969 | thenify@3.3.1:
1970 | dependencies:
1971 | any-promise: 1.3.0
1972 |
1973 | tinyexec@0.3.2: {}
1974 |
1975 | tinyglobby@0.2.15:
1976 | dependencies:
1977 | fdir: 6.5.0(picomatch@4.0.3)
1978 | picomatch: 4.0.3
1979 |
1980 | to-regex-range@5.0.1:
1981 | dependencies:
1982 | is-number: 7.0.0
1983 |
1984 | tr46@1.0.1:
1985 | dependencies:
1986 | punycode: 2.3.1
1987 |
1988 | tree-kill@1.2.2: {}
1989 |
1990 | ts-api-utils@2.1.0(typescript@5.9.3):
1991 | dependencies:
1992 | typescript: 5.9.3
1993 |
1994 | ts-interface-checker@0.1.13: {}
1995 |
1996 | tsup@8.5.0(typescript@5.9.3):
1997 | dependencies:
1998 | bundle-require: 5.1.0(esbuild@0.25.9)
1999 | cac: 6.7.14
2000 | chokidar: 4.0.3
2001 | consola: 3.4.2
2002 | debug: 4.4.1
2003 | esbuild: 0.25.9
2004 | fix-dts-default-cjs-exports: 1.0.1
2005 | joycon: 3.1.1
2006 | picocolors: 1.1.1
2007 | postcss-load-config: 6.0.1
2008 | resolve-from: 5.0.0
2009 | rollup: 4.50.1
2010 | source-map: 0.8.0-beta.0
2011 | sucrase: 3.35.0
2012 | tinyexec: 0.3.2
2013 | tinyglobby: 0.2.15
2014 | tree-kill: 1.2.2
2015 | optionalDependencies:
2016 | typescript: 5.9.3
2017 | transitivePeerDependencies:
2018 | - jiti
2019 | - supports-color
2020 | - tsx
2021 | - yaml
2022 |
2023 | type-check@0.4.0:
2024 | dependencies:
2025 | prelude-ls: 1.2.1
2026 |
2027 | typescript@5.9.3: {}
2028 |
2029 | ufo@1.6.1: {}
2030 |
2031 | undici-types@7.13.0: {}
2032 |
2033 | uri-js@4.4.1:
2034 | dependencies:
2035 | punycode: 2.3.1
2036 |
2037 | webidl-conversions@4.0.2: {}
2038 |
2039 | whatwg-url@7.1.0:
2040 | dependencies:
2041 | lodash.sortby: 4.7.0
2042 | tr46: 1.0.1
2043 | webidl-conversions: 4.0.2
2044 |
2045 | which@2.0.2:
2046 | dependencies:
2047 | isexe: 2.0.0
2048 |
2049 | wrap-ansi@7.0.0:
2050 | dependencies:
2051 | ansi-styles: 4.3.0
2052 | string-width: 4.2.3
2053 | strip-ansi: 6.0.1
2054 |
2055 | wrap-ansi@8.1.0:
2056 | dependencies:
2057 | ansi-styles: 6.2.1
2058 | string-width: 5.1.2
2059 | strip-ansi: 7.1.0
2060 |
2061 | yocto-queue@0.1.0: {}
2062 |
--------------------------------------------------------------------------------