├── .eslintrc.json
├── .gitignore
├── .vscode-test.mjs
├── .vscode
├── extensions.json
├── launch.json
├── settings.json
└── tasks.json
├── .vscodeignore
├── CHANGELOG.md
├── README.md
├── images
├── build-project.gif
└── generate-project.gif
├── package-lock.json
├── package.json
├── src
├── extension.ts
├── projectconfig.ts
├── taskprovider.ts
└── test
│ └── extension.test.ts
├── tsconfig.json
└── vsc-extension-quickstart.md
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "root": true,
3 | "parser": "@typescript-eslint/parser",
4 | "parserOptions": {
5 | "ecmaVersion": 6,
6 | "sourceType": "module"
7 | },
8 | "plugins": [
9 | "@typescript-eslint"
10 | ],
11 | "rules": {
12 | "@typescript-eslint/naming-convention": [
13 | "warn",
14 | {
15 | "selector": "import",
16 | "format": [ "camelCase", "PascalCase" ]
17 | }
18 | ],
19 | "@typescript-eslint/semi": "warn",
20 | "curly": "warn",
21 | "eqeqeq": "warn",
22 | "no-throw-literal": "warn",
23 | "semi": "off"
24 | },
25 | "ignorePatterns": [
26 | "out",
27 | "dist",
28 | "**/*.d.ts"
29 | ]
30 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | out
2 | dist
3 | node_modules
4 | .vscode-test/
5 | *.vsix
6 |
--------------------------------------------------------------------------------
/.vscode-test.mjs:
--------------------------------------------------------------------------------
1 | import { defineConfig } from '@vscode/test-cli';
2 |
3 | export default defineConfig({
4 | files: 'out/test/**/*.test.js',
5 | });
6 |
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | // See http://go.microsoft.com/fwlink/?LinkId=827846
3 | // for the documentation about the extensions.json format
4 | "recommendations": [
5 | "nisargjhaveri.ios-debug",
6 | "dbaeumer.vscode-eslint",
7 | "ms-vscode.extension-test-runner"
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/.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}/out/**/*.js"
17 | ],
18 | "preLaunchTask": "${defaultBuildTask}"
19 | }
20 | ]
21 | }
22 |
--------------------------------------------------------------------------------
/.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 | },
6 | "search.exclude": {
7 | "out": true // set this to false to include "out" folder in search results
8 | },
9 | // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10 | "typescript.tsc.autoDetect": "off"
11 | }
--------------------------------------------------------------------------------
/.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": "watch",
9 | "problemMatcher": "$tsc-watch",
10 | "isBackground": true,
11 | "presentation": {
12 | "reveal": "never"
13 | },
14 | "group": {
15 | "kind": "build",
16 | "isDefault": true
17 | }
18 | }
19 | ]
20 | }
21 |
--------------------------------------------------------------------------------
/.vscodeignore:
--------------------------------------------------------------------------------
1 | .vscode/**
2 | .vscode-test/**
3 | src/**
4 | .gitignore
5 | .yarnrc
6 | vsc-extension-quickstart.md
7 | **/tsconfig.json
8 | **/.eslintrc.json
9 | **/*.map
10 | **/*.ts
11 | **/.vscode-test.*
12 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 |
3 | All notable changes to the "xcodegen-builder" 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 | ## [Unreleased]
8 |
9 | - Initial release
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # XcodeGen Extension for Visual Studio Code
2 |
3 | This Visual Studio Code extension simplifies the process of creating and managing iOS projects. It automates the generation of initial project files, the creation of an Xcode project using [XcodeGen](https://github.com/yonaskolb/XcodeGen), and the setup of debugging configurations for iOS development.
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | ## Features
12 |
13 | - **Create New iOS Projects**: Easily set up a new project with predefined `launch.json` and `project.yml` files.
14 | - **Generate Xcode Project**: Use the `Generate xcodeproj` task to generate an Xcode project file (`xcodeproj`), necessary for building the application.
15 | - **Launch and Debug iOS Applications**: Seamlessly debug your iOS application using Nisarg Jhaveri's [iOS Debug](https://github.com/nisargjhaveri/vscode-ios-debug) extension, which relies on the `Build using xcodebuild` task.
16 |
17 | ## Getting Started
18 |
19 | ### Creating a New Project
20 |
21 | 1. **Generate Project Files**: Use the `XcodeGen - Generate project` command to create a new project. You will be prompted to input the application name and bundle id prefix. The extension will generate the necessary `project.yml`, `launch.json` and `Application.swift` files to get started.
22 |
23 | ### Generating the Xcode Project
24 |
25 | 2. **Run the `Generate xcodeproj` Task**: Before building your application, you must generate the `.xcodeproj` file. Run the `Generate xcodeproj` task manually to accomplish this. Currently, this task needs to be triggered manually as chaining multiple `dependsOn` tasks is not supported.
26 |
27 | ### Debugging the Application
28 |
29 | 3. **Launch the iOS Application**: After generating the Xcode project, you can launch your iOS application. This process will automatically trigger the `Build using xcodebuild` task and attach the 'iOS Debug' extension for debugging.
30 |
31 | ## How It Works
32 |
33 | ### Creating Project Files
34 |
35 | - The extension uses the provided app name and bundle ID prefix to generate a `project.yml` file, which `xcodegen` uses to create the Xcode project.
36 | - It also sets up an initial `Application.swift` file with a basic SwiftUI structure.
37 |
38 | ### `launch.json` Configuration
39 |
40 | - The generated `launch.json` includes the necessary configuration for launching and debugging the iOS application.
41 | - The `preLaunchTask` is set to `Build using xcodebuild` to ensure that the Xcode project is up-to-date before debugging.
42 |
43 | ## Known Limitations
44 |
45 | - The extension currently does not support chaining multiple `dependsOn` tasks, requiring manual intervention for the `Generate xcodeproj` task.
46 |
--------------------------------------------------------------------------------
/images/build-project.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markst/vscode-xcodegen-builder/0834abd016af74e74d4f2e468ebcadab70123111/images/build-project.gif
--------------------------------------------------------------------------------
/images/generate-project.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markst/vscode-xcodegen-builder/0834abd016af74e74d4f2e468ebcadab70123111/images/generate-project.gif
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "xcodegen-builder",
3 | "version": "0.0.1",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "xcodegen-builder",
9 | "version": "0.0.1",
10 | "devDependencies": {
11 | "@expo/xcodegen": "^2.18.0-patch.1",
12 | "@types/js-yaml": "^4.0.9",
13 | "@types/mocha": "^10.0.6",
14 | "@types/node": "18.x",
15 | "@types/vscode": "^1.85.0",
16 | "@typescript-eslint/eslint-plugin": "^6.15.0",
17 | "@typescript-eslint/parser": "^6.15.0",
18 | "@vscode/test-cli": "^0.0.4",
19 | "@vscode/test-electron": "^2.3.8",
20 | "eslint": "^8.56.0",
21 | "typescript": "^5.3.3"
22 | },
23 | "engines": {
24 | "vscode": "^1.85.0"
25 | }
26 | },
27 | "node_modules/@aashutoshrathi/word-wrap": {
28 | "version": "1.2.6",
29 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
30 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
31 | "dev": true,
32 | "engines": {
33 | "node": ">=0.10.0"
34 | }
35 | },
36 | "node_modules/@eslint-community/eslint-utils": {
37 | "version": "4.4.0",
38 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
39 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
40 | "dev": true,
41 | "dependencies": {
42 | "eslint-visitor-keys": "^3.3.0"
43 | },
44 | "engines": {
45 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
46 | },
47 | "peerDependencies": {
48 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
49 | }
50 | },
51 | "node_modules/@eslint-community/regexpp": {
52 | "version": "4.10.0",
53 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
54 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
55 | "dev": true,
56 | "engines": {
57 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
58 | }
59 | },
60 | "node_modules/@eslint/eslintrc": {
61 | "version": "2.1.4",
62 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
63 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
64 | "dev": true,
65 | "dependencies": {
66 | "ajv": "^6.12.4",
67 | "debug": "^4.3.2",
68 | "espree": "^9.6.0",
69 | "globals": "^13.19.0",
70 | "ignore": "^5.2.0",
71 | "import-fresh": "^3.2.1",
72 | "js-yaml": "^4.1.0",
73 | "minimatch": "^3.1.2",
74 | "strip-json-comments": "^3.1.1"
75 | },
76 | "engines": {
77 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
78 | },
79 | "funding": {
80 | "url": "https://opencollective.com/eslint"
81 | }
82 | },
83 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
84 | "version": "1.1.11",
85 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
86 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
87 | "dev": true,
88 | "dependencies": {
89 | "balanced-match": "^1.0.0",
90 | "concat-map": "0.0.1"
91 | }
92 | },
93 | "node_modules/@eslint/eslintrc/node_modules/minimatch": {
94 | "version": "3.1.2",
95 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
96 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
97 | "dev": true,
98 | "dependencies": {
99 | "brace-expansion": "^1.1.7"
100 | },
101 | "engines": {
102 | "node": "*"
103 | }
104 | },
105 | "node_modules/@eslint/js": {
106 | "version": "8.56.0",
107 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz",
108 | "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
109 | "dev": true,
110 | "engines": {
111 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
112 | }
113 | },
114 | "node_modules/@expo/xcodegen": {
115 | "version": "2.18.0-patch.1",
116 | "resolved": "https://registry.npmjs.org/@expo/xcodegen/-/xcodegen-2.18.0-patch.1.tgz",
117 | "integrity": "sha512-Caz2ChzVe/U3GkaK+DKlXqYorARzLZ1yM6D03LHvasnyA4T+pW6DGXHPy7cfK5AlbsV6Fi5ZtZ9gqW4jGWIFwQ==",
118 | "dev": true,
119 | "bin": {
120 | "xcodegen": "bin.js"
121 | }
122 | },
123 | "node_modules/@humanwhocodes/config-array": {
124 | "version": "0.11.13",
125 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz",
126 | "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==",
127 | "dev": true,
128 | "dependencies": {
129 | "@humanwhocodes/object-schema": "^2.0.1",
130 | "debug": "^4.1.1",
131 | "minimatch": "^3.0.5"
132 | },
133 | "engines": {
134 | "node": ">=10.10.0"
135 | }
136 | },
137 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": {
138 | "version": "1.1.11",
139 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
140 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
141 | "dev": true,
142 | "dependencies": {
143 | "balanced-match": "^1.0.0",
144 | "concat-map": "0.0.1"
145 | }
146 | },
147 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": {
148 | "version": "3.1.2",
149 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
150 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
151 | "dev": true,
152 | "dependencies": {
153 | "brace-expansion": "^1.1.7"
154 | },
155 | "engines": {
156 | "node": "*"
157 | }
158 | },
159 | "node_modules/@humanwhocodes/module-importer": {
160 | "version": "1.0.1",
161 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
162 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
163 | "dev": true,
164 | "engines": {
165 | "node": ">=12.22"
166 | },
167 | "funding": {
168 | "type": "github",
169 | "url": "https://github.com/sponsors/nzakas"
170 | }
171 | },
172 | "node_modules/@humanwhocodes/object-schema": {
173 | "version": "2.0.1",
174 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz",
175 | "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==",
176 | "dev": true
177 | },
178 | "node_modules/@isaacs/cliui": {
179 | "version": "8.0.2",
180 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
181 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
182 | "dev": true,
183 | "dependencies": {
184 | "string-width": "^5.1.2",
185 | "string-width-cjs": "npm:string-width@^4.2.0",
186 | "strip-ansi": "^7.0.1",
187 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
188 | "wrap-ansi": "^8.1.0",
189 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
190 | },
191 | "engines": {
192 | "node": ">=12"
193 | }
194 | },
195 | "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
196 | "version": "6.0.1",
197 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
198 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
199 | "dev": true,
200 | "engines": {
201 | "node": ">=12"
202 | },
203 | "funding": {
204 | "url": "https://github.com/chalk/ansi-regex?sponsor=1"
205 | }
206 | },
207 | "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
208 | "version": "7.1.0",
209 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
210 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
211 | "dev": true,
212 | "dependencies": {
213 | "ansi-regex": "^6.0.1"
214 | },
215 | "engines": {
216 | "node": ">=12"
217 | },
218 | "funding": {
219 | "url": "https://github.com/chalk/strip-ansi?sponsor=1"
220 | }
221 | },
222 | "node_modules/@nodelib/fs.scandir": {
223 | "version": "2.1.5",
224 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
225 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
226 | "dev": true,
227 | "dependencies": {
228 | "@nodelib/fs.stat": "2.0.5",
229 | "run-parallel": "^1.1.9"
230 | },
231 | "engines": {
232 | "node": ">= 8"
233 | }
234 | },
235 | "node_modules/@nodelib/fs.stat": {
236 | "version": "2.0.5",
237 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
238 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
239 | "dev": true,
240 | "engines": {
241 | "node": ">= 8"
242 | }
243 | },
244 | "node_modules/@nodelib/fs.walk": {
245 | "version": "1.2.8",
246 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
247 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
248 | "dev": true,
249 | "dependencies": {
250 | "@nodelib/fs.scandir": "2.1.5",
251 | "fastq": "^1.6.0"
252 | },
253 | "engines": {
254 | "node": ">= 8"
255 | }
256 | },
257 | "node_modules/@pkgjs/parseargs": {
258 | "version": "0.11.0",
259 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
260 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
261 | "dev": true,
262 | "optional": true,
263 | "engines": {
264 | "node": ">=14"
265 | }
266 | },
267 | "node_modules/@tootallnate/once": {
268 | "version": "1.1.2",
269 | "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
270 | "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
271 | "dev": true,
272 | "engines": {
273 | "node": ">= 6"
274 | }
275 | },
276 | "node_modules/@types/js-yaml": {
277 | "version": "4.0.9",
278 | "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz",
279 | "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==",
280 | "dev": true
281 | },
282 | "node_modules/@types/json-schema": {
283 | "version": "7.0.15",
284 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
285 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
286 | "dev": true
287 | },
288 | "node_modules/@types/mocha": {
289 | "version": "10.0.6",
290 | "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.6.tgz",
291 | "integrity": "sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg==",
292 | "dev": true
293 | },
294 | "node_modules/@types/node": {
295 | "version": "18.19.3",
296 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.3.tgz",
297 | "integrity": "sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg==",
298 | "dev": true,
299 | "dependencies": {
300 | "undici-types": "~5.26.4"
301 | }
302 | },
303 | "node_modules/@types/semver": {
304 | "version": "7.5.6",
305 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz",
306 | "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==",
307 | "dev": true
308 | },
309 | "node_modules/@types/vscode": {
310 | "version": "1.85.0",
311 | "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.85.0.tgz",
312 | "integrity": "sha512-CF/RBon/GXwdfmnjZj0WTUMZN5H6YITOfBCP4iEZlOtVQXuzw6t7Le7+cR+7JzdMrnlm7Mfp49Oj2TuSXIWo3g==",
313 | "dev": true
314 | },
315 | "node_modules/@typescript-eslint/eslint-plugin": {
316 | "version": "6.15.0",
317 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.15.0.tgz",
318 | "integrity": "sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==",
319 | "dev": true,
320 | "dependencies": {
321 | "@eslint-community/regexpp": "^4.5.1",
322 | "@typescript-eslint/scope-manager": "6.15.0",
323 | "@typescript-eslint/type-utils": "6.15.0",
324 | "@typescript-eslint/utils": "6.15.0",
325 | "@typescript-eslint/visitor-keys": "6.15.0",
326 | "debug": "^4.3.4",
327 | "graphemer": "^1.4.0",
328 | "ignore": "^5.2.4",
329 | "natural-compare": "^1.4.0",
330 | "semver": "^7.5.4",
331 | "ts-api-utils": "^1.0.1"
332 | },
333 | "engines": {
334 | "node": "^16.0.0 || >=18.0.0"
335 | },
336 | "funding": {
337 | "type": "opencollective",
338 | "url": "https://opencollective.com/typescript-eslint"
339 | },
340 | "peerDependencies": {
341 | "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha",
342 | "eslint": "^7.0.0 || ^8.0.0"
343 | },
344 | "peerDependenciesMeta": {
345 | "typescript": {
346 | "optional": true
347 | }
348 | }
349 | },
350 | "node_modules/@typescript-eslint/parser": {
351 | "version": "6.15.0",
352 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.15.0.tgz",
353 | "integrity": "sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==",
354 | "dev": true,
355 | "dependencies": {
356 | "@typescript-eslint/scope-manager": "6.15.0",
357 | "@typescript-eslint/types": "6.15.0",
358 | "@typescript-eslint/typescript-estree": "6.15.0",
359 | "@typescript-eslint/visitor-keys": "6.15.0",
360 | "debug": "^4.3.4"
361 | },
362 | "engines": {
363 | "node": "^16.0.0 || >=18.0.0"
364 | },
365 | "funding": {
366 | "type": "opencollective",
367 | "url": "https://opencollective.com/typescript-eslint"
368 | },
369 | "peerDependencies": {
370 | "eslint": "^7.0.0 || ^8.0.0"
371 | },
372 | "peerDependenciesMeta": {
373 | "typescript": {
374 | "optional": true
375 | }
376 | }
377 | },
378 | "node_modules/@typescript-eslint/scope-manager": {
379 | "version": "6.15.0",
380 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.15.0.tgz",
381 | "integrity": "sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==",
382 | "dev": true,
383 | "dependencies": {
384 | "@typescript-eslint/types": "6.15.0",
385 | "@typescript-eslint/visitor-keys": "6.15.0"
386 | },
387 | "engines": {
388 | "node": "^16.0.0 || >=18.0.0"
389 | },
390 | "funding": {
391 | "type": "opencollective",
392 | "url": "https://opencollective.com/typescript-eslint"
393 | }
394 | },
395 | "node_modules/@typescript-eslint/type-utils": {
396 | "version": "6.15.0",
397 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.15.0.tgz",
398 | "integrity": "sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==",
399 | "dev": true,
400 | "dependencies": {
401 | "@typescript-eslint/typescript-estree": "6.15.0",
402 | "@typescript-eslint/utils": "6.15.0",
403 | "debug": "^4.3.4",
404 | "ts-api-utils": "^1.0.1"
405 | },
406 | "engines": {
407 | "node": "^16.0.0 || >=18.0.0"
408 | },
409 | "funding": {
410 | "type": "opencollective",
411 | "url": "https://opencollective.com/typescript-eslint"
412 | },
413 | "peerDependencies": {
414 | "eslint": "^7.0.0 || ^8.0.0"
415 | },
416 | "peerDependenciesMeta": {
417 | "typescript": {
418 | "optional": true
419 | }
420 | }
421 | },
422 | "node_modules/@typescript-eslint/types": {
423 | "version": "6.15.0",
424 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.15.0.tgz",
425 | "integrity": "sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==",
426 | "dev": true,
427 | "engines": {
428 | "node": "^16.0.0 || >=18.0.0"
429 | },
430 | "funding": {
431 | "type": "opencollective",
432 | "url": "https://opencollective.com/typescript-eslint"
433 | }
434 | },
435 | "node_modules/@typescript-eslint/typescript-estree": {
436 | "version": "6.15.0",
437 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.15.0.tgz",
438 | "integrity": "sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==",
439 | "dev": true,
440 | "dependencies": {
441 | "@typescript-eslint/types": "6.15.0",
442 | "@typescript-eslint/visitor-keys": "6.15.0",
443 | "debug": "^4.3.4",
444 | "globby": "^11.1.0",
445 | "is-glob": "^4.0.3",
446 | "semver": "^7.5.4",
447 | "ts-api-utils": "^1.0.1"
448 | },
449 | "engines": {
450 | "node": "^16.0.0 || >=18.0.0"
451 | },
452 | "funding": {
453 | "type": "opencollective",
454 | "url": "https://opencollective.com/typescript-eslint"
455 | },
456 | "peerDependenciesMeta": {
457 | "typescript": {
458 | "optional": true
459 | }
460 | }
461 | },
462 | "node_modules/@typescript-eslint/utils": {
463 | "version": "6.15.0",
464 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.15.0.tgz",
465 | "integrity": "sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==",
466 | "dev": true,
467 | "dependencies": {
468 | "@eslint-community/eslint-utils": "^4.4.0",
469 | "@types/json-schema": "^7.0.12",
470 | "@types/semver": "^7.5.0",
471 | "@typescript-eslint/scope-manager": "6.15.0",
472 | "@typescript-eslint/types": "6.15.0",
473 | "@typescript-eslint/typescript-estree": "6.15.0",
474 | "semver": "^7.5.4"
475 | },
476 | "engines": {
477 | "node": "^16.0.0 || >=18.0.0"
478 | },
479 | "funding": {
480 | "type": "opencollective",
481 | "url": "https://opencollective.com/typescript-eslint"
482 | },
483 | "peerDependencies": {
484 | "eslint": "^7.0.0 || ^8.0.0"
485 | }
486 | },
487 | "node_modules/@typescript-eslint/visitor-keys": {
488 | "version": "6.15.0",
489 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.15.0.tgz",
490 | "integrity": "sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==",
491 | "dev": true,
492 | "dependencies": {
493 | "@typescript-eslint/types": "6.15.0",
494 | "eslint-visitor-keys": "^3.4.1"
495 | },
496 | "engines": {
497 | "node": "^16.0.0 || >=18.0.0"
498 | },
499 | "funding": {
500 | "type": "opencollective",
501 | "url": "https://opencollective.com/typescript-eslint"
502 | }
503 | },
504 | "node_modules/@ungap/structured-clone": {
505 | "version": "1.2.0",
506 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
507 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
508 | "dev": true
509 | },
510 | "node_modules/@vscode/test-cli": {
511 | "version": "0.0.4",
512 | "resolved": "https://registry.npmjs.org/@vscode/test-cli/-/test-cli-0.0.4.tgz",
513 | "integrity": "sha512-Tx0tfbxeSb2Xlo+jpd+GJrNLgKQHobhRHrYvOipZRZQYWZ82sKiK02VY09UjU1Czc/YnZnqyAnjUfaVGl3h09w==",
514 | "dev": true,
515 | "dependencies": {
516 | "@types/mocha": "^10.0.2",
517 | "chokidar": "^3.5.3",
518 | "glob": "^10.3.10",
519 | "minimatch": "^9.0.3",
520 | "mocha": "^10.2.0",
521 | "supports-color": "^9.4.0",
522 | "yargs": "^17.7.2"
523 | },
524 | "bin": {
525 | "vscode-test": "out/bin.mjs"
526 | }
527 | },
528 | "node_modules/@vscode/test-electron": {
529 | "version": "2.3.8",
530 | "resolved": "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.3.8.tgz",
531 | "integrity": "sha512-b4aZZsBKtMGdDljAsOPObnAi7+VWIaYl3ylCz1jTs+oV6BZ4TNHcVNC3xUn0azPeszBmwSBDQYfFESIaUQnrOg==",
532 | "dev": true,
533 | "dependencies": {
534 | "http-proxy-agent": "^4.0.1",
535 | "https-proxy-agent": "^5.0.0",
536 | "jszip": "^3.10.1",
537 | "semver": "^7.5.2"
538 | },
539 | "engines": {
540 | "node": ">=16"
541 | }
542 | },
543 | "node_modules/acorn": {
544 | "version": "8.11.2",
545 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz",
546 | "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==",
547 | "dev": true,
548 | "bin": {
549 | "acorn": "bin/acorn"
550 | },
551 | "engines": {
552 | "node": ">=0.4.0"
553 | }
554 | },
555 | "node_modules/acorn-jsx": {
556 | "version": "5.3.2",
557 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
558 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
559 | "dev": true,
560 | "peerDependencies": {
561 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
562 | }
563 | },
564 | "node_modules/agent-base": {
565 | "version": "6.0.2",
566 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
567 | "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
568 | "dev": true,
569 | "dependencies": {
570 | "debug": "4"
571 | },
572 | "engines": {
573 | "node": ">= 6.0.0"
574 | }
575 | },
576 | "node_modules/ajv": {
577 | "version": "6.12.6",
578 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
579 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
580 | "dev": true,
581 | "dependencies": {
582 | "fast-deep-equal": "^3.1.1",
583 | "fast-json-stable-stringify": "^2.0.0",
584 | "json-schema-traverse": "^0.4.1",
585 | "uri-js": "^4.2.2"
586 | },
587 | "funding": {
588 | "type": "github",
589 | "url": "https://github.com/sponsors/epoberezkin"
590 | }
591 | },
592 | "node_modules/ansi-colors": {
593 | "version": "4.1.1",
594 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
595 | "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
596 | "dev": true,
597 | "engines": {
598 | "node": ">=6"
599 | }
600 | },
601 | "node_modules/ansi-regex": {
602 | "version": "5.0.1",
603 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
604 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
605 | "dev": true,
606 | "engines": {
607 | "node": ">=8"
608 | }
609 | },
610 | "node_modules/ansi-styles": {
611 | "version": "4.3.0",
612 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
613 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
614 | "dev": true,
615 | "dependencies": {
616 | "color-convert": "^2.0.1"
617 | },
618 | "engines": {
619 | "node": ">=8"
620 | },
621 | "funding": {
622 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
623 | }
624 | },
625 | "node_modules/anymatch": {
626 | "version": "3.1.3",
627 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
628 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
629 | "dev": true,
630 | "dependencies": {
631 | "normalize-path": "^3.0.0",
632 | "picomatch": "^2.0.4"
633 | },
634 | "engines": {
635 | "node": ">= 8"
636 | }
637 | },
638 | "node_modules/argparse": {
639 | "version": "2.0.1",
640 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
641 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
642 | "dev": true
643 | },
644 | "node_modules/array-union": {
645 | "version": "2.1.0",
646 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
647 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
648 | "dev": true,
649 | "engines": {
650 | "node": ">=8"
651 | }
652 | },
653 | "node_modules/balanced-match": {
654 | "version": "1.0.2",
655 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
656 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
657 | "dev": true
658 | },
659 | "node_modules/binary-extensions": {
660 | "version": "2.2.0",
661 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
662 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
663 | "dev": true,
664 | "engines": {
665 | "node": ">=8"
666 | }
667 | },
668 | "node_modules/brace-expansion": {
669 | "version": "2.0.1",
670 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
671 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
672 | "dev": true,
673 | "dependencies": {
674 | "balanced-match": "^1.0.0"
675 | }
676 | },
677 | "node_modules/braces": {
678 | "version": "3.0.2",
679 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
680 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
681 | "dev": true,
682 | "dependencies": {
683 | "fill-range": "^7.0.1"
684 | },
685 | "engines": {
686 | "node": ">=8"
687 | }
688 | },
689 | "node_modules/browser-stdout": {
690 | "version": "1.3.1",
691 | "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
692 | "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
693 | "dev": true
694 | },
695 | "node_modules/callsites": {
696 | "version": "3.1.0",
697 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
698 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
699 | "dev": true,
700 | "engines": {
701 | "node": ">=6"
702 | }
703 | },
704 | "node_modules/camelcase": {
705 | "version": "6.3.0",
706 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
707 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
708 | "dev": true,
709 | "engines": {
710 | "node": ">=10"
711 | },
712 | "funding": {
713 | "url": "https://github.com/sponsors/sindresorhus"
714 | }
715 | },
716 | "node_modules/chalk": {
717 | "version": "4.1.2",
718 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
719 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
720 | "dev": true,
721 | "dependencies": {
722 | "ansi-styles": "^4.1.0",
723 | "supports-color": "^7.1.0"
724 | },
725 | "engines": {
726 | "node": ">=10"
727 | },
728 | "funding": {
729 | "url": "https://github.com/chalk/chalk?sponsor=1"
730 | }
731 | },
732 | "node_modules/chalk/node_modules/supports-color": {
733 | "version": "7.2.0",
734 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
735 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
736 | "dev": true,
737 | "dependencies": {
738 | "has-flag": "^4.0.0"
739 | },
740 | "engines": {
741 | "node": ">=8"
742 | }
743 | },
744 | "node_modules/chokidar": {
745 | "version": "3.5.3",
746 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
747 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
748 | "dev": true,
749 | "funding": [
750 | {
751 | "type": "individual",
752 | "url": "https://paulmillr.com/funding/"
753 | }
754 | ],
755 | "dependencies": {
756 | "anymatch": "~3.1.2",
757 | "braces": "~3.0.2",
758 | "glob-parent": "~5.1.2",
759 | "is-binary-path": "~2.1.0",
760 | "is-glob": "~4.0.1",
761 | "normalize-path": "~3.0.0",
762 | "readdirp": "~3.6.0"
763 | },
764 | "engines": {
765 | "node": ">= 8.10.0"
766 | },
767 | "optionalDependencies": {
768 | "fsevents": "~2.3.2"
769 | }
770 | },
771 | "node_modules/cliui": {
772 | "version": "8.0.1",
773 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
774 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
775 | "dev": true,
776 | "dependencies": {
777 | "string-width": "^4.2.0",
778 | "strip-ansi": "^6.0.1",
779 | "wrap-ansi": "^7.0.0"
780 | },
781 | "engines": {
782 | "node": ">=12"
783 | }
784 | },
785 | "node_modules/cliui/node_modules/emoji-regex": {
786 | "version": "8.0.0",
787 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
788 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
789 | "dev": true
790 | },
791 | "node_modules/cliui/node_modules/string-width": {
792 | "version": "4.2.3",
793 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
794 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
795 | "dev": true,
796 | "dependencies": {
797 | "emoji-regex": "^8.0.0",
798 | "is-fullwidth-code-point": "^3.0.0",
799 | "strip-ansi": "^6.0.1"
800 | },
801 | "engines": {
802 | "node": ">=8"
803 | }
804 | },
805 | "node_modules/cliui/node_modules/wrap-ansi": {
806 | "version": "7.0.0",
807 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
808 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
809 | "dev": true,
810 | "dependencies": {
811 | "ansi-styles": "^4.0.0",
812 | "string-width": "^4.1.0",
813 | "strip-ansi": "^6.0.0"
814 | },
815 | "engines": {
816 | "node": ">=10"
817 | },
818 | "funding": {
819 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
820 | }
821 | },
822 | "node_modules/color-convert": {
823 | "version": "2.0.1",
824 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
825 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
826 | "dev": true,
827 | "dependencies": {
828 | "color-name": "~1.1.4"
829 | },
830 | "engines": {
831 | "node": ">=7.0.0"
832 | }
833 | },
834 | "node_modules/color-name": {
835 | "version": "1.1.4",
836 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
837 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
838 | "dev": true
839 | },
840 | "node_modules/concat-map": {
841 | "version": "0.0.1",
842 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
843 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
844 | "dev": true
845 | },
846 | "node_modules/core-util-is": {
847 | "version": "1.0.3",
848 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
849 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
850 | "dev": true
851 | },
852 | "node_modules/cross-spawn": {
853 | "version": "7.0.3",
854 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
855 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
856 | "dev": true,
857 | "dependencies": {
858 | "path-key": "^3.1.0",
859 | "shebang-command": "^2.0.0",
860 | "which": "^2.0.1"
861 | },
862 | "engines": {
863 | "node": ">= 8"
864 | }
865 | },
866 | "node_modules/debug": {
867 | "version": "4.3.4",
868 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
869 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
870 | "dev": true,
871 | "dependencies": {
872 | "ms": "2.1.2"
873 | },
874 | "engines": {
875 | "node": ">=6.0"
876 | },
877 | "peerDependenciesMeta": {
878 | "supports-color": {
879 | "optional": true
880 | }
881 | }
882 | },
883 | "node_modules/decamelize": {
884 | "version": "4.0.0",
885 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz",
886 | "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
887 | "dev": true,
888 | "engines": {
889 | "node": ">=10"
890 | },
891 | "funding": {
892 | "url": "https://github.com/sponsors/sindresorhus"
893 | }
894 | },
895 | "node_modules/deep-is": {
896 | "version": "0.1.4",
897 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
898 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
899 | "dev": true
900 | },
901 | "node_modules/diff": {
902 | "version": "5.0.0",
903 | "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
904 | "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==",
905 | "dev": true,
906 | "engines": {
907 | "node": ">=0.3.1"
908 | }
909 | },
910 | "node_modules/dir-glob": {
911 | "version": "3.0.1",
912 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
913 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
914 | "dev": true,
915 | "dependencies": {
916 | "path-type": "^4.0.0"
917 | },
918 | "engines": {
919 | "node": ">=8"
920 | }
921 | },
922 | "node_modules/doctrine": {
923 | "version": "3.0.0",
924 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
925 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
926 | "dev": true,
927 | "dependencies": {
928 | "esutils": "^2.0.2"
929 | },
930 | "engines": {
931 | "node": ">=6.0.0"
932 | }
933 | },
934 | "node_modules/eastasianwidth": {
935 | "version": "0.2.0",
936 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
937 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
938 | "dev": true
939 | },
940 | "node_modules/emoji-regex": {
941 | "version": "9.2.2",
942 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
943 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
944 | "dev": true
945 | },
946 | "node_modules/escalade": {
947 | "version": "3.1.1",
948 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
949 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
950 | "dev": true,
951 | "engines": {
952 | "node": ">=6"
953 | }
954 | },
955 | "node_modules/escape-string-regexp": {
956 | "version": "4.0.0",
957 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
958 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
959 | "dev": true,
960 | "engines": {
961 | "node": ">=10"
962 | },
963 | "funding": {
964 | "url": "https://github.com/sponsors/sindresorhus"
965 | }
966 | },
967 | "node_modules/eslint": {
968 | "version": "8.56.0",
969 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz",
970 | "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==",
971 | "dev": true,
972 | "dependencies": {
973 | "@eslint-community/eslint-utils": "^4.2.0",
974 | "@eslint-community/regexpp": "^4.6.1",
975 | "@eslint/eslintrc": "^2.1.4",
976 | "@eslint/js": "8.56.0",
977 | "@humanwhocodes/config-array": "^0.11.13",
978 | "@humanwhocodes/module-importer": "^1.0.1",
979 | "@nodelib/fs.walk": "^1.2.8",
980 | "@ungap/structured-clone": "^1.2.0",
981 | "ajv": "^6.12.4",
982 | "chalk": "^4.0.0",
983 | "cross-spawn": "^7.0.2",
984 | "debug": "^4.3.2",
985 | "doctrine": "^3.0.0",
986 | "escape-string-regexp": "^4.0.0",
987 | "eslint-scope": "^7.2.2",
988 | "eslint-visitor-keys": "^3.4.3",
989 | "espree": "^9.6.1",
990 | "esquery": "^1.4.2",
991 | "esutils": "^2.0.2",
992 | "fast-deep-equal": "^3.1.3",
993 | "file-entry-cache": "^6.0.1",
994 | "find-up": "^5.0.0",
995 | "glob-parent": "^6.0.2",
996 | "globals": "^13.19.0",
997 | "graphemer": "^1.4.0",
998 | "ignore": "^5.2.0",
999 | "imurmurhash": "^0.1.4",
1000 | "is-glob": "^4.0.0",
1001 | "is-path-inside": "^3.0.3",
1002 | "js-yaml": "^4.1.0",
1003 | "json-stable-stringify-without-jsonify": "^1.0.1",
1004 | "levn": "^0.4.1",
1005 | "lodash.merge": "^4.6.2",
1006 | "minimatch": "^3.1.2",
1007 | "natural-compare": "^1.4.0",
1008 | "optionator": "^0.9.3",
1009 | "strip-ansi": "^6.0.1",
1010 | "text-table": "^0.2.0"
1011 | },
1012 | "bin": {
1013 | "eslint": "bin/eslint.js"
1014 | },
1015 | "engines": {
1016 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1017 | },
1018 | "funding": {
1019 | "url": "https://opencollective.com/eslint"
1020 | }
1021 | },
1022 | "node_modules/eslint-scope": {
1023 | "version": "7.2.2",
1024 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
1025 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
1026 | "dev": true,
1027 | "dependencies": {
1028 | "esrecurse": "^4.3.0",
1029 | "estraverse": "^5.2.0"
1030 | },
1031 | "engines": {
1032 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1033 | },
1034 | "funding": {
1035 | "url": "https://opencollective.com/eslint"
1036 | }
1037 | },
1038 | "node_modules/eslint-visitor-keys": {
1039 | "version": "3.4.3",
1040 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
1041 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
1042 | "dev": true,
1043 | "engines": {
1044 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1045 | },
1046 | "funding": {
1047 | "url": "https://opencollective.com/eslint"
1048 | }
1049 | },
1050 | "node_modules/eslint/node_modules/brace-expansion": {
1051 | "version": "1.1.11",
1052 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1053 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1054 | "dev": true,
1055 | "dependencies": {
1056 | "balanced-match": "^1.0.0",
1057 | "concat-map": "0.0.1"
1058 | }
1059 | },
1060 | "node_modules/eslint/node_modules/glob-parent": {
1061 | "version": "6.0.2",
1062 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1063 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1064 | "dev": true,
1065 | "dependencies": {
1066 | "is-glob": "^4.0.3"
1067 | },
1068 | "engines": {
1069 | "node": ">=10.13.0"
1070 | }
1071 | },
1072 | "node_modules/eslint/node_modules/minimatch": {
1073 | "version": "3.1.2",
1074 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
1075 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
1076 | "dev": true,
1077 | "dependencies": {
1078 | "brace-expansion": "^1.1.7"
1079 | },
1080 | "engines": {
1081 | "node": "*"
1082 | }
1083 | },
1084 | "node_modules/espree": {
1085 | "version": "9.6.1",
1086 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
1087 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
1088 | "dev": true,
1089 | "dependencies": {
1090 | "acorn": "^8.9.0",
1091 | "acorn-jsx": "^5.3.2",
1092 | "eslint-visitor-keys": "^3.4.1"
1093 | },
1094 | "engines": {
1095 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1096 | },
1097 | "funding": {
1098 | "url": "https://opencollective.com/eslint"
1099 | }
1100 | },
1101 | "node_modules/esquery": {
1102 | "version": "1.5.0",
1103 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
1104 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
1105 | "dev": true,
1106 | "dependencies": {
1107 | "estraverse": "^5.1.0"
1108 | },
1109 | "engines": {
1110 | "node": ">=0.10"
1111 | }
1112 | },
1113 | "node_modules/esrecurse": {
1114 | "version": "4.3.0",
1115 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1116 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1117 | "dev": true,
1118 | "dependencies": {
1119 | "estraverse": "^5.2.0"
1120 | },
1121 | "engines": {
1122 | "node": ">=4.0"
1123 | }
1124 | },
1125 | "node_modules/estraverse": {
1126 | "version": "5.3.0",
1127 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1128 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1129 | "dev": true,
1130 | "engines": {
1131 | "node": ">=4.0"
1132 | }
1133 | },
1134 | "node_modules/esutils": {
1135 | "version": "2.0.3",
1136 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1137 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1138 | "dev": true,
1139 | "engines": {
1140 | "node": ">=0.10.0"
1141 | }
1142 | },
1143 | "node_modules/fast-deep-equal": {
1144 | "version": "3.1.3",
1145 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1146 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1147 | "dev": true
1148 | },
1149 | "node_modules/fast-glob": {
1150 | "version": "3.3.2",
1151 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
1152 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
1153 | "dev": true,
1154 | "dependencies": {
1155 | "@nodelib/fs.stat": "^2.0.2",
1156 | "@nodelib/fs.walk": "^1.2.3",
1157 | "glob-parent": "^5.1.2",
1158 | "merge2": "^1.3.0",
1159 | "micromatch": "^4.0.4"
1160 | },
1161 | "engines": {
1162 | "node": ">=8.6.0"
1163 | }
1164 | },
1165 | "node_modules/fast-json-stable-stringify": {
1166 | "version": "2.1.0",
1167 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1168 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1169 | "dev": true
1170 | },
1171 | "node_modules/fast-levenshtein": {
1172 | "version": "2.0.6",
1173 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1174 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1175 | "dev": true
1176 | },
1177 | "node_modules/fastq": {
1178 | "version": "1.16.0",
1179 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz",
1180 | "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==",
1181 | "dev": true,
1182 | "dependencies": {
1183 | "reusify": "^1.0.4"
1184 | }
1185 | },
1186 | "node_modules/file-entry-cache": {
1187 | "version": "6.0.1",
1188 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
1189 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
1190 | "dev": true,
1191 | "dependencies": {
1192 | "flat-cache": "^3.0.4"
1193 | },
1194 | "engines": {
1195 | "node": "^10.12.0 || >=12.0.0"
1196 | }
1197 | },
1198 | "node_modules/fill-range": {
1199 | "version": "7.0.1",
1200 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
1201 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
1202 | "dev": true,
1203 | "dependencies": {
1204 | "to-regex-range": "^5.0.1"
1205 | },
1206 | "engines": {
1207 | "node": ">=8"
1208 | }
1209 | },
1210 | "node_modules/find-up": {
1211 | "version": "5.0.0",
1212 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1213 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1214 | "dev": true,
1215 | "dependencies": {
1216 | "locate-path": "^6.0.0",
1217 | "path-exists": "^4.0.0"
1218 | },
1219 | "engines": {
1220 | "node": ">=10"
1221 | },
1222 | "funding": {
1223 | "url": "https://github.com/sponsors/sindresorhus"
1224 | }
1225 | },
1226 | "node_modules/flat": {
1227 | "version": "5.0.2",
1228 | "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
1229 | "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
1230 | "dev": true,
1231 | "bin": {
1232 | "flat": "cli.js"
1233 | }
1234 | },
1235 | "node_modules/flat-cache": {
1236 | "version": "3.2.0",
1237 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
1238 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
1239 | "dev": true,
1240 | "dependencies": {
1241 | "flatted": "^3.2.9",
1242 | "keyv": "^4.5.3",
1243 | "rimraf": "^3.0.2"
1244 | },
1245 | "engines": {
1246 | "node": "^10.12.0 || >=12.0.0"
1247 | }
1248 | },
1249 | "node_modules/flatted": {
1250 | "version": "3.2.9",
1251 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz",
1252 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==",
1253 | "dev": true
1254 | },
1255 | "node_modules/foreground-child": {
1256 | "version": "3.1.1",
1257 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
1258 | "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
1259 | "dev": true,
1260 | "dependencies": {
1261 | "cross-spawn": "^7.0.0",
1262 | "signal-exit": "^4.0.1"
1263 | },
1264 | "engines": {
1265 | "node": ">=14"
1266 | },
1267 | "funding": {
1268 | "url": "https://github.com/sponsors/isaacs"
1269 | }
1270 | },
1271 | "node_modules/fs.realpath": {
1272 | "version": "1.0.0",
1273 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1274 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
1275 | "dev": true
1276 | },
1277 | "node_modules/fsevents": {
1278 | "version": "2.3.3",
1279 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1280 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1281 | "dev": true,
1282 | "hasInstallScript": true,
1283 | "optional": true,
1284 | "os": [
1285 | "darwin"
1286 | ],
1287 | "engines": {
1288 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1289 | }
1290 | },
1291 | "node_modules/get-caller-file": {
1292 | "version": "2.0.5",
1293 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
1294 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
1295 | "dev": true,
1296 | "engines": {
1297 | "node": "6.* || 8.* || >= 10.*"
1298 | }
1299 | },
1300 | "node_modules/glob": {
1301 | "version": "10.3.10",
1302 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz",
1303 | "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
1304 | "dev": true,
1305 | "dependencies": {
1306 | "foreground-child": "^3.1.0",
1307 | "jackspeak": "^2.3.5",
1308 | "minimatch": "^9.0.1",
1309 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
1310 | "path-scurry": "^1.10.1"
1311 | },
1312 | "bin": {
1313 | "glob": "dist/esm/bin.mjs"
1314 | },
1315 | "engines": {
1316 | "node": ">=16 || 14 >=14.17"
1317 | },
1318 | "funding": {
1319 | "url": "https://github.com/sponsors/isaacs"
1320 | }
1321 | },
1322 | "node_modules/glob-parent": {
1323 | "version": "5.1.2",
1324 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1325 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1326 | "dev": true,
1327 | "dependencies": {
1328 | "is-glob": "^4.0.1"
1329 | },
1330 | "engines": {
1331 | "node": ">= 6"
1332 | }
1333 | },
1334 | "node_modules/globals": {
1335 | "version": "13.24.0",
1336 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
1337 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
1338 | "dev": true,
1339 | "dependencies": {
1340 | "type-fest": "^0.20.2"
1341 | },
1342 | "engines": {
1343 | "node": ">=8"
1344 | },
1345 | "funding": {
1346 | "url": "https://github.com/sponsors/sindresorhus"
1347 | }
1348 | },
1349 | "node_modules/globby": {
1350 | "version": "11.1.0",
1351 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
1352 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
1353 | "dev": true,
1354 | "dependencies": {
1355 | "array-union": "^2.1.0",
1356 | "dir-glob": "^3.0.1",
1357 | "fast-glob": "^3.2.9",
1358 | "ignore": "^5.2.0",
1359 | "merge2": "^1.4.1",
1360 | "slash": "^3.0.0"
1361 | },
1362 | "engines": {
1363 | "node": ">=10"
1364 | },
1365 | "funding": {
1366 | "url": "https://github.com/sponsors/sindresorhus"
1367 | }
1368 | },
1369 | "node_modules/graphemer": {
1370 | "version": "1.4.0",
1371 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
1372 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
1373 | "dev": true
1374 | },
1375 | "node_modules/has-flag": {
1376 | "version": "4.0.0",
1377 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1378 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1379 | "dev": true,
1380 | "engines": {
1381 | "node": ">=8"
1382 | }
1383 | },
1384 | "node_modules/he": {
1385 | "version": "1.2.0",
1386 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
1387 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
1388 | "dev": true,
1389 | "bin": {
1390 | "he": "bin/he"
1391 | }
1392 | },
1393 | "node_modules/http-proxy-agent": {
1394 | "version": "4.0.1",
1395 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
1396 | "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
1397 | "dev": true,
1398 | "dependencies": {
1399 | "@tootallnate/once": "1",
1400 | "agent-base": "6",
1401 | "debug": "4"
1402 | },
1403 | "engines": {
1404 | "node": ">= 6"
1405 | }
1406 | },
1407 | "node_modules/https-proxy-agent": {
1408 | "version": "5.0.1",
1409 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
1410 | "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
1411 | "dev": true,
1412 | "dependencies": {
1413 | "agent-base": "6",
1414 | "debug": "4"
1415 | },
1416 | "engines": {
1417 | "node": ">= 6"
1418 | }
1419 | },
1420 | "node_modules/ignore": {
1421 | "version": "5.3.0",
1422 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz",
1423 | "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==",
1424 | "dev": true,
1425 | "engines": {
1426 | "node": ">= 4"
1427 | }
1428 | },
1429 | "node_modules/immediate": {
1430 | "version": "3.0.6",
1431 | "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
1432 | "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
1433 | "dev": true
1434 | },
1435 | "node_modules/import-fresh": {
1436 | "version": "3.3.0",
1437 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
1438 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
1439 | "dev": true,
1440 | "dependencies": {
1441 | "parent-module": "^1.0.0",
1442 | "resolve-from": "^4.0.0"
1443 | },
1444 | "engines": {
1445 | "node": ">=6"
1446 | },
1447 | "funding": {
1448 | "url": "https://github.com/sponsors/sindresorhus"
1449 | }
1450 | },
1451 | "node_modules/imurmurhash": {
1452 | "version": "0.1.4",
1453 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1454 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
1455 | "dev": true,
1456 | "engines": {
1457 | "node": ">=0.8.19"
1458 | }
1459 | },
1460 | "node_modules/inflight": {
1461 | "version": "1.0.6",
1462 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
1463 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
1464 | "dev": true,
1465 | "dependencies": {
1466 | "once": "^1.3.0",
1467 | "wrappy": "1"
1468 | }
1469 | },
1470 | "node_modules/inherits": {
1471 | "version": "2.0.4",
1472 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1473 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1474 | "dev": true
1475 | },
1476 | "node_modules/is-binary-path": {
1477 | "version": "2.1.0",
1478 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1479 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1480 | "dev": true,
1481 | "dependencies": {
1482 | "binary-extensions": "^2.0.0"
1483 | },
1484 | "engines": {
1485 | "node": ">=8"
1486 | }
1487 | },
1488 | "node_modules/is-extglob": {
1489 | "version": "2.1.1",
1490 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1491 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1492 | "dev": true,
1493 | "engines": {
1494 | "node": ">=0.10.0"
1495 | }
1496 | },
1497 | "node_modules/is-fullwidth-code-point": {
1498 | "version": "3.0.0",
1499 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
1500 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
1501 | "dev": true,
1502 | "engines": {
1503 | "node": ">=8"
1504 | }
1505 | },
1506 | "node_modules/is-glob": {
1507 | "version": "4.0.3",
1508 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1509 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1510 | "dev": true,
1511 | "dependencies": {
1512 | "is-extglob": "^2.1.1"
1513 | },
1514 | "engines": {
1515 | "node": ">=0.10.0"
1516 | }
1517 | },
1518 | "node_modules/is-number": {
1519 | "version": "7.0.0",
1520 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1521 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1522 | "dev": true,
1523 | "engines": {
1524 | "node": ">=0.12.0"
1525 | }
1526 | },
1527 | "node_modules/is-path-inside": {
1528 | "version": "3.0.3",
1529 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
1530 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
1531 | "dev": true,
1532 | "engines": {
1533 | "node": ">=8"
1534 | }
1535 | },
1536 | "node_modules/is-plain-obj": {
1537 | "version": "2.1.0",
1538 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
1539 | "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
1540 | "dev": true,
1541 | "engines": {
1542 | "node": ">=8"
1543 | }
1544 | },
1545 | "node_modules/is-unicode-supported": {
1546 | "version": "0.1.0",
1547 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
1548 | "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
1549 | "dev": true,
1550 | "engines": {
1551 | "node": ">=10"
1552 | },
1553 | "funding": {
1554 | "url": "https://github.com/sponsors/sindresorhus"
1555 | }
1556 | },
1557 | "node_modules/isarray": {
1558 | "version": "1.0.0",
1559 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
1560 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
1561 | "dev": true
1562 | },
1563 | "node_modules/isexe": {
1564 | "version": "2.0.0",
1565 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1566 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1567 | "dev": true
1568 | },
1569 | "node_modules/jackspeak": {
1570 | "version": "2.3.6",
1571 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz",
1572 | "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==",
1573 | "dev": true,
1574 | "dependencies": {
1575 | "@isaacs/cliui": "^8.0.2"
1576 | },
1577 | "engines": {
1578 | "node": ">=14"
1579 | },
1580 | "funding": {
1581 | "url": "https://github.com/sponsors/isaacs"
1582 | },
1583 | "optionalDependencies": {
1584 | "@pkgjs/parseargs": "^0.11.0"
1585 | }
1586 | },
1587 | "node_modules/js-yaml": {
1588 | "version": "4.1.0",
1589 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
1590 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
1591 | "dev": true,
1592 | "dependencies": {
1593 | "argparse": "^2.0.1"
1594 | },
1595 | "bin": {
1596 | "js-yaml": "bin/js-yaml.js"
1597 | }
1598 | },
1599 | "node_modules/json-buffer": {
1600 | "version": "3.0.1",
1601 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
1602 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
1603 | "dev": true
1604 | },
1605 | "node_modules/json-schema-traverse": {
1606 | "version": "0.4.1",
1607 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1608 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1609 | "dev": true
1610 | },
1611 | "node_modules/json-stable-stringify-without-jsonify": {
1612 | "version": "1.0.1",
1613 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1614 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
1615 | "dev": true
1616 | },
1617 | "node_modules/jszip": {
1618 | "version": "3.10.1",
1619 | "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz",
1620 | "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
1621 | "dev": true,
1622 | "dependencies": {
1623 | "lie": "~3.3.0",
1624 | "pako": "~1.0.2",
1625 | "readable-stream": "~2.3.6",
1626 | "setimmediate": "^1.0.5"
1627 | }
1628 | },
1629 | "node_modules/keyv": {
1630 | "version": "4.5.4",
1631 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
1632 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
1633 | "dev": true,
1634 | "dependencies": {
1635 | "json-buffer": "3.0.1"
1636 | }
1637 | },
1638 | "node_modules/levn": {
1639 | "version": "0.4.1",
1640 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
1641 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1642 | "dev": true,
1643 | "dependencies": {
1644 | "prelude-ls": "^1.2.1",
1645 | "type-check": "~0.4.0"
1646 | },
1647 | "engines": {
1648 | "node": ">= 0.8.0"
1649 | }
1650 | },
1651 | "node_modules/lie": {
1652 | "version": "3.3.0",
1653 | "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
1654 | "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
1655 | "dev": true,
1656 | "dependencies": {
1657 | "immediate": "~3.0.5"
1658 | }
1659 | },
1660 | "node_modules/locate-path": {
1661 | "version": "6.0.0",
1662 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
1663 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
1664 | "dev": true,
1665 | "dependencies": {
1666 | "p-locate": "^5.0.0"
1667 | },
1668 | "engines": {
1669 | "node": ">=10"
1670 | },
1671 | "funding": {
1672 | "url": "https://github.com/sponsors/sindresorhus"
1673 | }
1674 | },
1675 | "node_modules/lodash.merge": {
1676 | "version": "4.6.2",
1677 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
1678 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
1679 | "dev": true
1680 | },
1681 | "node_modules/log-symbols": {
1682 | "version": "4.1.0",
1683 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
1684 | "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
1685 | "dev": true,
1686 | "dependencies": {
1687 | "chalk": "^4.1.0",
1688 | "is-unicode-supported": "^0.1.0"
1689 | },
1690 | "engines": {
1691 | "node": ">=10"
1692 | },
1693 | "funding": {
1694 | "url": "https://github.com/sponsors/sindresorhus"
1695 | }
1696 | },
1697 | "node_modules/lru-cache": {
1698 | "version": "10.1.0",
1699 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz",
1700 | "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
1701 | "dev": true,
1702 | "engines": {
1703 | "node": "14 || >=16.14"
1704 | }
1705 | },
1706 | "node_modules/merge2": {
1707 | "version": "1.4.1",
1708 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
1709 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
1710 | "dev": true,
1711 | "engines": {
1712 | "node": ">= 8"
1713 | }
1714 | },
1715 | "node_modules/micromatch": {
1716 | "version": "4.0.5",
1717 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
1718 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
1719 | "dev": true,
1720 | "dependencies": {
1721 | "braces": "^3.0.2",
1722 | "picomatch": "^2.3.1"
1723 | },
1724 | "engines": {
1725 | "node": ">=8.6"
1726 | }
1727 | },
1728 | "node_modules/minimatch": {
1729 | "version": "9.0.3",
1730 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
1731 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
1732 | "dev": true,
1733 | "dependencies": {
1734 | "brace-expansion": "^2.0.1"
1735 | },
1736 | "engines": {
1737 | "node": ">=16 || 14 >=14.17"
1738 | },
1739 | "funding": {
1740 | "url": "https://github.com/sponsors/isaacs"
1741 | }
1742 | },
1743 | "node_modules/minipass": {
1744 | "version": "7.0.4",
1745 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz",
1746 | "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==",
1747 | "dev": true,
1748 | "engines": {
1749 | "node": ">=16 || 14 >=14.17"
1750 | }
1751 | },
1752 | "node_modules/mocha": {
1753 | "version": "10.2.0",
1754 | "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz",
1755 | "integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==",
1756 | "dev": true,
1757 | "dependencies": {
1758 | "ansi-colors": "4.1.1",
1759 | "browser-stdout": "1.3.1",
1760 | "chokidar": "3.5.3",
1761 | "debug": "4.3.4",
1762 | "diff": "5.0.0",
1763 | "escape-string-regexp": "4.0.0",
1764 | "find-up": "5.0.0",
1765 | "glob": "7.2.0",
1766 | "he": "1.2.0",
1767 | "js-yaml": "4.1.0",
1768 | "log-symbols": "4.1.0",
1769 | "minimatch": "5.0.1",
1770 | "ms": "2.1.3",
1771 | "nanoid": "3.3.3",
1772 | "serialize-javascript": "6.0.0",
1773 | "strip-json-comments": "3.1.1",
1774 | "supports-color": "8.1.1",
1775 | "workerpool": "6.2.1",
1776 | "yargs": "16.2.0",
1777 | "yargs-parser": "20.2.4",
1778 | "yargs-unparser": "2.0.0"
1779 | },
1780 | "bin": {
1781 | "_mocha": "bin/_mocha",
1782 | "mocha": "bin/mocha.js"
1783 | },
1784 | "engines": {
1785 | "node": ">= 14.0.0"
1786 | },
1787 | "funding": {
1788 | "type": "opencollective",
1789 | "url": "https://opencollective.com/mochajs"
1790 | }
1791 | },
1792 | "node_modules/mocha/node_modules/cliui": {
1793 | "version": "7.0.4",
1794 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
1795 | "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
1796 | "dev": true,
1797 | "dependencies": {
1798 | "string-width": "^4.2.0",
1799 | "strip-ansi": "^6.0.0",
1800 | "wrap-ansi": "^7.0.0"
1801 | }
1802 | },
1803 | "node_modules/mocha/node_modules/emoji-regex": {
1804 | "version": "8.0.0",
1805 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
1806 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
1807 | "dev": true
1808 | },
1809 | "node_modules/mocha/node_modules/glob": {
1810 | "version": "7.2.0",
1811 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
1812 | "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
1813 | "dev": true,
1814 | "dependencies": {
1815 | "fs.realpath": "^1.0.0",
1816 | "inflight": "^1.0.4",
1817 | "inherits": "2",
1818 | "minimatch": "^3.0.4",
1819 | "once": "^1.3.0",
1820 | "path-is-absolute": "^1.0.0"
1821 | },
1822 | "engines": {
1823 | "node": "*"
1824 | },
1825 | "funding": {
1826 | "url": "https://github.com/sponsors/isaacs"
1827 | }
1828 | },
1829 | "node_modules/mocha/node_modules/glob/node_modules/brace-expansion": {
1830 | "version": "1.1.11",
1831 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1832 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1833 | "dev": true,
1834 | "dependencies": {
1835 | "balanced-match": "^1.0.0",
1836 | "concat-map": "0.0.1"
1837 | }
1838 | },
1839 | "node_modules/mocha/node_modules/glob/node_modules/minimatch": {
1840 | "version": "3.1.2",
1841 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
1842 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
1843 | "dev": true,
1844 | "dependencies": {
1845 | "brace-expansion": "^1.1.7"
1846 | },
1847 | "engines": {
1848 | "node": "*"
1849 | }
1850 | },
1851 | "node_modules/mocha/node_modules/minimatch": {
1852 | "version": "5.0.1",
1853 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz",
1854 | "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==",
1855 | "dev": true,
1856 | "dependencies": {
1857 | "brace-expansion": "^2.0.1"
1858 | },
1859 | "engines": {
1860 | "node": ">=10"
1861 | }
1862 | },
1863 | "node_modules/mocha/node_modules/ms": {
1864 | "version": "2.1.3",
1865 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1866 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1867 | "dev": true
1868 | },
1869 | "node_modules/mocha/node_modules/string-width": {
1870 | "version": "4.2.3",
1871 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
1872 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
1873 | "dev": true,
1874 | "dependencies": {
1875 | "emoji-regex": "^8.0.0",
1876 | "is-fullwidth-code-point": "^3.0.0",
1877 | "strip-ansi": "^6.0.1"
1878 | },
1879 | "engines": {
1880 | "node": ">=8"
1881 | }
1882 | },
1883 | "node_modules/mocha/node_modules/supports-color": {
1884 | "version": "8.1.1",
1885 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
1886 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
1887 | "dev": true,
1888 | "dependencies": {
1889 | "has-flag": "^4.0.0"
1890 | },
1891 | "engines": {
1892 | "node": ">=10"
1893 | },
1894 | "funding": {
1895 | "url": "https://github.com/chalk/supports-color?sponsor=1"
1896 | }
1897 | },
1898 | "node_modules/mocha/node_modules/wrap-ansi": {
1899 | "version": "7.0.0",
1900 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
1901 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
1902 | "dev": true,
1903 | "dependencies": {
1904 | "ansi-styles": "^4.0.0",
1905 | "string-width": "^4.1.0",
1906 | "strip-ansi": "^6.0.0"
1907 | },
1908 | "engines": {
1909 | "node": ">=10"
1910 | },
1911 | "funding": {
1912 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
1913 | }
1914 | },
1915 | "node_modules/mocha/node_modules/yargs": {
1916 | "version": "16.2.0",
1917 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
1918 | "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
1919 | "dev": true,
1920 | "dependencies": {
1921 | "cliui": "^7.0.2",
1922 | "escalade": "^3.1.1",
1923 | "get-caller-file": "^2.0.5",
1924 | "require-directory": "^2.1.1",
1925 | "string-width": "^4.2.0",
1926 | "y18n": "^5.0.5",
1927 | "yargs-parser": "^20.2.2"
1928 | },
1929 | "engines": {
1930 | "node": ">=10"
1931 | }
1932 | },
1933 | "node_modules/ms": {
1934 | "version": "2.1.2",
1935 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
1936 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
1937 | "dev": true
1938 | },
1939 | "node_modules/nanoid": {
1940 | "version": "3.3.3",
1941 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz",
1942 | "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==",
1943 | "dev": true,
1944 | "bin": {
1945 | "nanoid": "bin/nanoid.cjs"
1946 | },
1947 | "engines": {
1948 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1949 | }
1950 | },
1951 | "node_modules/natural-compare": {
1952 | "version": "1.4.0",
1953 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
1954 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
1955 | "dev": true
1956 | },
1957 | "node_modules/normalize-path": {
1958 | "version": "3.0.0",
1959 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1960 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1961 | "dev": true,
1962 | "engines": {
1963 | "node": ">=0.10.0"
1964 | }
1965 | },
1966 | "node_modules/once": {
1967 | "version": "1.4.0",
1968 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
1969 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
1970 | "dev": true,
1971 | "dependencies": {
1972 | "wrappy": "1"
1973 | }
1974 | },
1975 | "node_modules/optionator": {
1976 | "version": "0.9.3",
1977 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
1978 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
1979 | "dev": true,
1980 | "dependencies": {
1981 | "@aashutoshrathi/word-wrap": "^1.2.3",
1982 | "deep-is": "^0.1.3",
1983 | "fast-levenshtein": "^2.0.6",
1984 | "levn": "^0.4.1",
1985 | "prelude-ls": "^1.2.1",
1986 | "type-check": "^0.4.0"
1987 | },
1988 | "engines": {
1989 | "node": ">= 0.8.0"
1990 | }
1991 | },
1992 | "node_modules/p-limit": {
1993 | "version": "3.1.0",
1994 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
1995 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
1996 | "dev": true,
1997 | "dependencies": {
1998 | "yocto-queue": "^0.1.0"
1999 | },
2000 | "engines": {
2001 | "node": ">=10"
2002 | },
2003 | "funding": {
2004 | "url": "https://github.com/sponsors/sindresorhus"
2005 | }
2006 | },
2007 | "node_modules/p-locate": {
2008 | "version": "5.0.0",
2009 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2010 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2011 | "dev": true,
2012 | "dependencies": {
2013 | "p-limit": "^3.0.2"
2014 | },
2015 | "engines": {
2016 | "node": ">=10"
2017 | },
2018 | "funding": {
2019 | "url": "https://github.com/sponsors/sindresorhus"
2020 | }
2021 | },
2022 | "node_modules/pako": {
2023 | "version": "1.0.11",
2024 | "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
2025 | "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
2026 | "dev": true
2027 | },
2028 | "node_modules/parent-module": {
2029 | "version": "1.0.1",
2030 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2031 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2032 | "dev": true,
2033 | "dependencies": {
2034 | "callsites": "^3.0.0"
2035 | },
2036 | "engines": {
2037 | "node": ">=6"
2038 | }
2039 | },
2040 | "node_modules/path-exists": {
2041 | "version": "4.0.0",
2042 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2043 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2044 | "dev": true,
2045 | "engines": {
2046 | "node": ">=8"
2047 | }
2048 | },
2049 | "node_modules/path-is-absolute": {
2050 | "version": "1.0.1",
2051 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
2052 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
2053 | "dev": true,
2054 | "engines": {
2055 | "node": ">=0.10.0"
2056 | }
2057 | },
2058 | "node_modules/path-key": {
2059 | "version": "3.1.1",
2060 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2061 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2062 | "dev": true,
2063 | "engines": {
2064 | "node": ">=8"
2065 | }
2066 | },
2067 | "node_modules/path-scurry": {
2068 | "version": "1.10.1",
2069 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz",
2070 | "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
2071 | "dev": true,
2072 | "dependencies": {
2073 | "lru-cache": "^9.1.1 || ^10.0.0",
2074 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
2075 | },
2076 | "engines": {
2077 | "node": ">=16 || 14 >=14.17"
2078 | },
2079 | "funding": {
2080 | "url": "https://github.com/sponsors/isaacs"
2081 | }
2082 | },
2083 | "node_modules/path-type": {
2084 | "version": "4.0.0",
2085 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
2086 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
2087 | "dev": true,
2088 | "engines": {
2089 | "node": ">=8"
2090 | }
2091 | },
2092 | "node_modules/picomatch": {
2093 | "version": "2.3.1",
2094 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2095 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2096 | "dev": true,
2097 | "engines": {
2098 | "node": ">=8.6"
2099 | },
2100 | "funding": {
2101 | "url": "https://github.com/sponsors/jonschlinkert"
2102 | }
2103 | },
2104 | "node_modules/prelude-ls": {
2105 | "version": "1.2.1",
2106 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2107 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2108 | "dev": true,
2109 | "engines": {
2110 | "node": ">= 0.8.0"
2111 | }
2112 | },
2113 | "node_modules/process-nextick-args": {
2114 | "version": "2.0.1",
2115 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
2116 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
2117 | "dev": true
2118 | },
2119 | "node_modules/punycode": {
2120 | "version": "2.3.1",
2121 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
2122 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2123 | "dev": true,
2124 | "engines": {
2125 | "node": ">=6"
2126 | }
2127 | },
2128 | "node_modules/queue-microtask": {
2129 | "version": "1.2.3",
2130 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
2131 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
2132 | "dev": true,
2133 | "funding": [
2134 | {
2135 | "type": "github",
2136 | "url": "https://github.com/sponsors/feross"
2137 | },
2138 | {
2139 | "type": "patreon",
2140 | "url": "https://www.patreon.com/feross"
2141 | },
2142 | {
2143 | "type": "consulting",
2144 | "url": "https://feross.org/support"
2145 | }
2146 | ]
2147 | },
2148 | "node_modules/randombytes": {
2149 | "version": "2.1.0",
2150 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
2151 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
2152 | "dev": true,
2153 | "dependencies": {
2154 | "safe-buffer": "^5.1.0"
2155 | }
2156 | },
2157 | "node_modules/readable-stream": {
2158 | "version": "2.3.8",
2159 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
2160 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
2161 | "dev": true,
2162 | "dependencies": {
2163 | "core-util-is": "~1.0.0",
2164 | "inherits": "~2.0.3",
2165 | "isarray": "~1.0.0",
2166 | "process-nextick-args": "~2.0.0",
2167 | "safe-buffer": "~5.1.1",
2168 | "string_decoder": "~1.1.1",
2169 | "util-deprecate": "~1.0.1"
2170 | }
2171 | },
2172 | "node_modules/readdirp": {
2173 | "version": "3.6.0",
2174 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
2175 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
2176 | "dev": true,
2177 | "dependencies": {
2178 | "picomatch": "^2.2.1"
2179 | },
2180 | "engines": {
2181 | "node": ">=8.10.0"
2182 | }
2183 | },
2184 | "node_modules/require-directory": {
2185 | "version": "2.1.1",
2186 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
2187 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
2188 | "dev": true,
2189 | "engines": {
2190 | "node": ">=0.10.0"
2191 | }
2192 | },
2193 | "node_modules/resolve-from": {
2194 | "version": "4.0.0",
2195 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
2196 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2197 | "dev": true,
2198 | "engines": {
2199 | "node": ">=4"
2200 | }
2201 | },
2202 | "node_modules/reusify": {
2203 | "version": "1.0.4",
2204 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
2205 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
2206 | "dev": true,
2207 | "engines": {
2208 | "iojs": ">=1.0.0",
2209 | "node": ">=0.10.0"
2210 | }
2211 | },
2212 | "node_modules/rimraf": {
2213 | "version": "3.0.2",
2214 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
2215 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
2216 | "dev": true,
2217 | "dependencies": {
2218 | "glob": "^7.1.3"
2219 | },
2220 | "bin": {
2221 | "rimraf": "bin.js"
2222 | },
2223 | "funding": {
2224 | "url": "https://github.com/sponsors/isaacs"
2225 | }
2226 | },
2227 | "node_modules/rimraf/node_modules/brace-expansion": {
2228 | "version": "1.1.11",
2229 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
2230 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
2231 | "dev": true,
2232 | "dependencies": {
2233 | "balanced-match": "^1.0.0",
2234 | "concat-map": "0.0.1"
2235 | }
2236 | },
2237 | "node_modules/rimraf/node_modules/glob": {
2238 | "version": "7.2.3",
2239 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
2240 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
2241 | "dev": true,
2242 | "dependencies": {
2243 | "fs.realpath": "^1.0.0",
2244 | "inflight": "^1.0.4",
2245 | "inherits": "2",
2246 | "minimatch": "^3.1.1",
2247 | "once": "^1.3.0",
2248 | "path-is-absolute": "^1.0.0"
2249 | },
2250 | "engines": {
2251 | "node": "*"
2252 | },
2253 | "funding": {
2254 | "url": "https://github.com/sponsors/isaacs"
2255 | }
2256 | },
2257 | "node_modules/rimraf/node_modules/minimatch": {
2258 | "version": "3.1.2",
2259 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2260 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2261 | "dev": true,
2262 | "dependencies": {
2263 | "brace-expansion": "^1.1.7"
2264 | },
2265 | "engines": {
2266 | "node": "*"
2267 | }
2268 | },
2269 | "node_modules/run-parallel": {
2270 | "version": "1.2.0",
2271 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
2272 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
2273 | "dev": true,
2274 | "funding": [
2275 | {
2276 | "type": "github",
2277 | "url": "https://github.com/sponsors/feross"
2278 | },
2279 | {
2280 | "type": "patreon",
2281 | "url": "https://www.patreon.com/feross"
2282 | },
2283 | {
2284 | "type": "consulting",
2285 | "url": "https://feross.org/support"
2286 | }
2287 | ],
2288 | "dependencies": {
2289 | "queue-microtask": "^1.2.2"
2290 | }
2291 | },
2292 | "node_modules/safe-buffer": {
2293 | "version": "5.1.2",
2294 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
2295 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
2296 | "dev": true
2297 | },
2298 | "node_modules/semver": {
2299 | "version": "7.5.4",
2300 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
2301 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
2302 | "dev": true,
2303 | "dependencies": {
2304 | "lru-cache": "^6.0.0"
2305 | },
2306 | "bin": {
2307 | "semver": "bin/semver.js"
2308 | },
2309 | "engines": {
2310 | "node": ">=10"
2311 | }
2312 | },
2313 | "node_modules/semver/node_modules/lru-cache": {
2314 | "version": "6.0.0",
2315 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
2316 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
2317 | "dev": true,
2318 | "dependencies": {
2319 | "yallist": "^4.0.0"
2320 | },
2321 | "engines": {
2322 | "node": ">=10"
2323 | }
2324 | },
2325 | "node_modules/serialize-javascript": {
2326 | "version": "6.0.0",
2327 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz",
2328 | "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==",
2329 | "dev": true,
2330 | "dependencies": {
2331 | "randombytes": "^2.1.0"
2332 | }
2333 | },
2334 | "node_modules/setimmediate": {
2335 | "version": "1.0.5",
2336 | "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
2337 | "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==",
2338 | "dev": true
2339 | },
2340 | "node_modules/shebang-command": {
2341 | "version": "2.0.0",
2342 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2343 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2344 | "dev": true,
2345 | "dependencies": {
2346 | "shebang-regex": "^3.0.0"
2347 | },
2348 | "engines": {
2349 | "node": ">=8"
2350 | }
2351 | },
2352 | "node_modules/shebang-regex": {
2353 | "version": "3.0.0",
2354 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2355 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2356 | "dev": true,
2357 | "engines": {
2358 | "node": ">=8"
2359 | }
2360 | },
2361 | "node_modules/signal-exit": {
2362 | "version": "4.1.0",
2363 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
2364 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
2365 | "dev": true,
2366 | "engines": {
2367 | "node": ">=14"
2368 | },
2369 | "funding": {
2370 | "url": "https://github.com/sponsors/isaacs"
2371 | }
2372 | },
2373 | "node_modules/slash": {
2374 | "version": "3.0.0",
2375 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
2376 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
2377 | "dev": true,
2378 | "engines": {
2379 | "node": ">=8"
2380 | }
2381 | },
2382 | "node_modules/string_decoder": {
2383 | "version": "1.1.1",
2384 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
2385 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
2386 | "dev": true,
2387 | "dependencies": {
2388 | "safe-buffer": "~5.1.0"
2389 | }
2390 | },
2391 | "node_modules/string-width": {
2392 | "version": "5.1.2",
2393 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
2394 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
2395 | "dev": true,
2396 | "dependencies": {
2397 | "eastasianwidth": "^0.2.0",
2398 | "emoji-regex": "^9.2.2",
2399 | "strip-ansi": "^7.0.1"
2400 | },
2401 | "engines": {
2402 | "node": ">=12"
2403 | },
2404 | "funding": {
2405 | "url": "https://github.com/sponsors/sindresorhus"
2406 | }
2407 | },
2408 | "node_modules/string-width-cjs": {
2409 | "name": "string-width",
2410 | "version": "4.2.3",
2411 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2412 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2413 | "dev": true,
2414 | "dependencies": {
2415 | "emoji-regex": "^8.0.0",
2416 | "is-fullwidth-code-point": "^3.0.0",
2417 | "strip-ansi": "^6.0.1"
2418 | },
2419 | "engines": {
2420 | "node": ">=8"
2421 | }
2422 | },
2423 | "node_modules/string-width-cjs/node_modules/emoji-regex": {
2424 | "version": "8.0.0",
2425 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2426 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2427 | "dev": true
2428 | },
2429 | "node_modules/string-width/node_modules/ansi-regex": {
2430 | "version": "6.0.1",
2431 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
2432 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
2433 | "dev": true,
2434 | "engines": {
2435 | "node": ">=12"
2436 | },
2437 | "funding": {
2438 | "url": "https://github.com/chalk/ansi-regex?sponsor=1"
2439 | }
2440 | },
2441 | "node_modules/string-width/node_modules/strip-ansi": {
2442 | "version": "7.1.0",
2443 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
2444 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
2445 | "dev": true,
2446 | "dependencies": {
2447 | "ansi-regex": "^6.0.1"
2448 | },
2449 | "engines": {
2450 | "node": ">=12"
2451 | },
2452 | "funding": {
2453 | "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2454 | }
2455 | },
2456 | "node_modules/strip-ansi": {
2457 | "version": "6.0.1",
2458 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2459 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2460 | "dev": true,
2461 | "dependencies": {
2462 | "ansi-regex": "^5.0.1"
2463 | },
2464 | "engines": {
2465 | "node": ">=8"
2466 | }
2467 | },
2468 | "node_modules/strip-ansi-cjs": {
2469 | "name": "strip-ansi",
2470 | "version": "6.0.1",
2471 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2472 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2473 | "dev": true,
2474 | "dependencies": {
2475 | "ansi-regex": "^5.0.1"
2476 | },
2477 | "engines": {
2478 | "node": ">=8"
2479 | }
2480 | },
2481 | "node_modules/strip-json-comments": {
2482 | "version": "3.1.1",
2483 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
2484 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
2485 | "dev": true,
2486 | "engines": {
2487 | "node": ">=8"
2488 | },
2489 | "funding": {
2490 | "url": "https://github.com/sponsors/sindresorhus"
2491 | }
2492 | },
2493 | "node_modules/supports-color": {
2494 | "version": "9.4.0",
2495 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
2496 | "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==",
2497 | "dev": true,
2498 | "engines": {
2499 | "node": ">=12"
2500 | },
2501 | "funding": {
2502 | "url": "https://github.com/chalk/supports-color?sponsor=1"
2503 | }
2504 | },
2505 | "node_modules/text-table": {
2506 | "version": "0.2.0",
2507 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
2508 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
2509 | "dev": true
2510 | },
2511 | "node_modules/to-regex-range": {
2512 | "version": "5.0.1",
2513 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2514 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2515 | "dev": true,
2516 | "dependencies": {
2517 | "is-number": "^7.0.0"
2518 | },
2519 | "engines": {
2520 | "node": ">=8.0"
2521 | }
2522 | },
2523 | "node_modules/ts-api-utils": {
2524 | "version": "1.0.3",
2525 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz",
2526 | "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==",
2527 | "dev": true,
2528 | "engines": {
2529 | "node": ">=16.13.0"
2530 | },
2531 | "peerDependencies": {
2532 | "typescript": ">=4.2.0"
2533 | }
2534 | },
2535 | "node_modules/type-check": {
2536 | "version": "0.4.0",
2537 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2538 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2539 | "dev": true,
2540 | "dependencies": {
2541 | "prelude-ls": "^1.2.1"
2542 | },
2543 | "engines": {
2544 | "node": ">= 0.8.0"
2545 | }
2546 | },
2547 | "node_modules/type-fest": {
2548 | "version": "0.20.2",
2549 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
2550 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
2551 | "dev": true,
2552 | "engines": {
2553 | "node": ">=10"
2554 | },
2555 | "funding": {
2556 | "url": "https://github.com/sponsors/sindresorhus"
2557 | }
2558 | },
2559 | "node_modules/typescript": {
2560 | "version": "5.3.3",
2561 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz",
2562 | "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
2563 | "dev": true,
2564 | "bin": {
2565 | "tsc": "bin/tsc",
2566 | "tsserver": "bin/tsserver"
2567 | },
2568 | "engines": {
2569 | "node": ">=14.17"
2570 | }
2571 | },
2572 | "node_modules/undici-types": {
2573 | "version": "5.26.5",
2574 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
2575 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
2576 | "dev": true
2577 | },
2578 | "node_modules/uri-js": {
2579 | "version": "4.4.1",
2580 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2581 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2582 | "dev": true,
2583 | "dependencies": {
2584 | "punycode": "^2.1.0"
2585 | }
2586 | },
2587 | "node_modules/util-deprecate": {
2588 | "version": "1.0.2",
2589 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
2590 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2591 | "dev": true
2592 | },
2593 | "node_modules/which": {
2594 | "version": "2.0.2",
2595 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2596 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2597 | "dev": true,
2598 | "dependencies": {
2599 | "isexe": "^2.0.0"
2600 | },
2601 | "bin": {
2602 | "node-which": "bin/node-which"
2603 | },
2604 | "engines": {
2605 | "node": ">= 8"
2606 | }
2607 | },
2608 | "node_modules/workerpool": {
2609 | "version": "6.2.1",
2610 | "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz",
2611 | "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==",
2612 | "dev": true
2613 | },
2614 | "node_modules/wrap-ansi": {
2615 | "version": "8.1.0",
2616 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
2617 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
2618 | "dev": true,
2619 | "dependencies": {
2620 | "ansi-styles": "^6.1.0",
2621 | "string-width": "^5.0.1",
2622 | "strip-ansi": "^7.0.1"
2623 | },
2624 | "engines": {
2625 | "node": ">=12"
2626 | },
2627 | "funding": {
2628 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2629 | }
2630 | },
2631 | "node_modules/wrap-ansi-cjs": {
2632 | "name": "wrap-ansi",
2633 | "version": "7.0.0",
2634 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
2635 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
2636 | "dev": true,
2637 | "dependencies": {
2638 | "ansi-styles": "^4.0.0",
2639 | "string-width": "^4.1.0",
2640 | "strip-ansi": "^6.0.0"
2641 | },
2642 | "engines": {
2643 | "node": ">=10"
2644 | },
2645 | "funding": {
2646 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2647 | }
2648 | },
2649 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
2650 | "version": "8.0.0",
2651 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2652 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2653 | "dev": true
2654 | },
2655 | "node_modules/wrap-ansi-cjs/node_modules/string-width": {
2656 | "version": "4.2.3",
2657 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2658 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2659 | "dev": true,
2660 | "dependencies": {
2661 | "emoji-regex": "^8.0.0",
2662 | "is-fullwidth-code-point": "^3.0.0",
2663 | "strip-ansi": "^6.0.1"
2664 | },
2665 | "engines": {
2666 | "node": ">=8"
2667 | }
2668 | },
2669 | "node_modules/wrap-ansi/node_modules/ansi-regex": {
2670 | "version": "6.0.1",
2671 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
2672 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
2673 | "dev": true,
2674 | "engines": {
2675 | "node": ">=12"
2676 | },
2677 | "funding": {
2678 | "url": "https://github.com/chalk/ansi-regex?sponsor=1"
2679 | }
2680 | },
2681 | "node_modules/wrap-ansi/node_modules/ansi-styles": {
2682 | "version": "6.2.1",
2683 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
2684 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
2685 | "dev": true,
2686 | "engines": {
2687 | "node": ">=12"
2688 | },
2689 | "funding": {
2690 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2691 | }
2692 | },
2693 | "node_modules/wrap-ansi/node_modules/strip-ansi": {
2694 | "version": "7.1.0",
2695 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
2696 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
2697 | "dev": true,
2698 | "dependencies": {
2699 | "ansi-regex": "^6.0.1"
2700 | },
2701 | "engines": {
2702 | "node": ">=12"
2703 | },
2704 | "funding": {
2705 | "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2706 | }
2707 | },
2708 | "node_modules/wrappy": {
2709 | "version": "1.0.2",
2710 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
2711 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
2712 | "dev": true
2713 | },
2714 | "node_modules/y18n": {
2715 | "version": "5.0.8",
2716 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
2717 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
2718 | "dev": true,
2719 | "engines": {
2720 | "node": ">=10"
2721 | }
2722 | },
2723 | "node_modules/yallist": {
2724 | "version": "4.0.0",
2725 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
2726 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
2727 | "dev": true
2728 | },
2729 | "node_modules/yargs": {
2730 | "version": "17.7.2",
2731 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
2732 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
2733 | "dev": true,
2734 | "dependencies": {
2735 | "cliui": "^8.0.1",
2736 | "escalade": "^3.1.1",
2737 | "get-caller-file": "^2.0.5",
2738 | "require-directory": "^2.1.1",
2739 | "string-width": "^4.2.3",
2740 | "y18n": "^5.0.5",
2741 | "yargs-parser": "^21.1.1"
2742 | },
2743 | "engines": {
2744 | "node": ">=12"
2745 | }
2746 | },
2747 | "node_modules/yargs-parser": {
2748 | "version": "20.2.4",
2749 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz",
2750 | "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
2751 | "dev": true,
2752 | "engines": {
2753 | "node": ">=10"
2754 | }
2755 | },
2756 | "node_modules/yargs-unparser": {
2757 | "version": "2.0.0",
2758 | "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
2759 | "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
2760 | "dev": true,
2761 | "dependencies": {
2762 | "camelcase": "^6.0.0",
2763 | "decamelize": "^4.0.0",
2764 | "flat": "^5.0.2",
2765 | "is-plain-obj": "^2.1.0"
2766 | },
2767 | "engines": {
2768 | "node": ">=10"
2769 | }
2770 | },
2771 | "node_modules/yargs/node_modules/emoji-regex": {
2772 | "version": "8.0.0",
2773 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2774 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2775 | "dev": true
2776 | },
2777 | "node_modules/yargs/node_modules/string-width": {
2778 | "version": "4.2.3",
2779 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
2780 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
2781 | "dev": true,
2782 | "dependencies": {
2783 | "emoji-regex": "^8.0.0",
2784 | "is-fullwidth-code-point": "^3.0.0",
2785 | "strip-ansi": "^6.0.1"
2786 | },
2787 | "engines": {
2788 | "node": ">=8"
2789 | }
2790 | },
2791 | "node_modules/yargs/node_modules/yargs-parser": {
2792 | "version": "21.1.1",
2793 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
2794 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
2795 | "dev": true,
2796 | "engines": {
2797 | "node": ">=12"
2798 | }
2799 | },
2800 | "node_modules/yocto-queue": {
2801 | "version": "0.1.0",
2802 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
2803 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
2804 | "dev": true,
2805 | "engines": {
2806 | "node": ">=10"
2807 | },
2808 | "funding": {
2809 | "url": "https://github.com/sponsors/sindresorhus"
2810 | }
2811 | }
2812 | }
2813 | }
2814 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "xcodegen-builder",
3 | "displayName": "XcodeGen Builder",
4 | "description": "Tools to help generate Xcode project and run",
5 | "version": "0.0.1",
6 | "engines": {
7 | "vscode": "^1.85.0"
8 | },
9 | "categories": [
10 | "Other"
11 | ],
12 | "activationEvents": [
13 | "workspaceContains:**/project.yml"
14 | ],
15 | "main": "./out/extension.js",
16 | "contributes": {
17 | "commands": [
18 | {
19 | "command": "xcodegenbuilder.generate-project",
20 | "title": "XcodeGen - Generate project"
21 | },
22 | {
23 | "command": "xcodegenbuilder.generate-launch",
24 | "title": "XcodeGen - Generate launch.json"
25 | }
26 | ]
27 | },
28 | "scripts": {
29 | "vscode:prepublish": "npm run compile",
30 | "compile": "tsc -p ./",
31 | "watch": "tsc -watch -p ./",
32 | "pretest": "npm run compile && npm run lint",
33 | "lint": "eslint src --ext ts",
34 | "test": "vscode-test",
35 | "xcodegen": "xcodegen"
36 | },
37 | "devDependencies": {
38 | "@expo/xcodegen": "^2.18.0-patch.1",
39 | "@types/js-yaml": "^4.0.9",
40 | "@types/mocha": "^10.0.6",
41 | "@types/node": "18.x",
42 | "@types/vscode": "^1.85.0",
43 | "@typescript-eslint/eslint-plugin": "^6.15.0",
44 | "@typescript-eslint/parser": "^6.15.0",
45 | "@vscode/test-cli": "^0.0.4",
46 | "@vscode/test-electron": "^2.3.8",
47 | "eslint": "^8.56.0",
48 | "typescript": "^5.3.3"
49 | },
50 | "extensionDependencies": [
51 | "nisargjhaveri.ios-debug"
52 | ]
53 | }
54 |
--------------------------------------------------------------------------------
/src/extension.ts:
--------------------------------------------------------------------------------
1 | import * as vscode from 'vscode';
2 | import * as fs from "fs";
3 | import * as path from "path";
4 | import * as yaml from "js-yaml";
5 |
6 | import { XCodeGenTaskProvider } from "./taskprovider";
7 |
8 | class XcodeGenExtension {
9 | static projectYmlContent(appName: string, bundleIdPrefix: string): string {
10 | const projectYmlObject = {
11 | name: appName,
12 | options: {
13 | bundleIdPrefix: bundleIdPrefix,
14 | },
15 | targets: {
16 | [appName]: {
17 | type: "application",
18 | platform: "iOS",
19 | deploymentTarget: "14.0",
20 | sources: ["Application"],
21 | dependencies: [{ sdk: "SwiftUI.framework" }],
22 | settings: {
23 | base: {
24 | GENERATE_INFOPLIST_FILE: true,
25 | CURRENT_PROJECT_VERSION: 1,
26 | MARKETING_VERSION: 1,
27 | OTHER_LDFLAGS:
28 | "-Xlinker -interposable -Xlinker -undefined -Xlinker dynamic_lookup",
29 | },
30 | },
31 | },
32 | },
33 | };
34 |
35 | return yaml.dump(projectYmlObject);
36 | }
37 |
38 | static applicationSwiftContent(): string {
39 | return `
40 | import SwiftUI
41 |
42 | @main
43 | struct Application: App {
44 | var body: some Scene {
45 | WindowGroup {
46 | Rectangle().fill(.red)
47 | }
48 | }
49 | }
50 | `;
51 | }
52 |
53 | static launchJsonContent(appName: string, bundleIdPrefix: string): string {
54 | const launchJsonObject = {
55 | version: "0.2.0",
56 | configurations: [
57 | {
58 | name: "Launch",
59 | type: "lldb",
60 | request: "launch",
61 | program: `~/Library/Developer/Xcode/DerivedData/${appName}/Build/Products/Debug-\${command:ios-debug.targetSdk}/${appName}.app`,
62 | iosBundleId: `${bundleIdPrefix}.${appName}`,
63 | iosTarget: "select",
64 | preLaunchTask: "XcodeGen: Build using xcodebuild",
65 | },
66 | ],
67 | };
68 | launchJsonObject.configurations.push();
69 | return JSON.stringify(launchJsonObject, null, 2);
70 | }
71 |
72 | async createProjectFiles(
73 | folderUri: vscode.Uri,
74 | appName: string,
75 | bundleIdPrefix: string
76 | ): Promise {
77 | const rootPath = folderUri.fsPath;
78 | const projectYmlPath = path.join(rootPath, "project.yml");
79 | const applicationSwiftPath = path.join(
80 | rootPath,
81 | "Application",
82 | "Application.swift"
83 | );
84 | const launchJsonPath = path.join(rootPath, ".vscode", "launch.json");
85 |
86 | fs.mkdirSync(path.join(rootPath, ".vscode"), { recursive: true });
87 | fs.mkdirSync(path.join(rootPath, "Application"), { recursive: true });
88 |
89 | fs.writeFileSync(
90 | projectYmlPath,
91 | XcodeGenExtension.projectYmlContent(appName, bundleIdPrefix)
92 | );
93 | fs.writeFileSync(
94 | applicationSwiftPath,
95 | XcodeGenExtension.applicationSwiftContent()
96 | );
97 | fs.writeFileSync(
98 | launchJsonPath,
99 | XcodeGenExtension.launchJsonContent(appName, bundleIdPrefix)
100 | );
101 |
102 | return Promise.resolve();
103 | }
104 |
105 | async createLaunchJson(
106 | folderUri: vscode.Uri,
107 | appName: string,
108 | bundleIdPrefix: string
109 | ): Promise {
110 | const rootPath = folderUri.fsPath;
111 | const launchJsonPath = path.join(rootPath, ".vscode", "launch.json");
112 |
113 | fs.mkdirSync(path.join(rootPath, ".vscode"), { recursive: true });
114 | fs.writeFileSync(
115 | launchJsonPath,
116 | XcodeGenExtension.launchJsonContent(appName, bundleIdPrefix)
117 | );
118 |
119 | return Promise.resolve();
120 | }
121 | }
122 |
123 | export function activate(context: vscode.ExtensionContext): void {
124 | // Register task provider:
125 | context.subscriptions.push(
126 | vscode.tasks.registerTaskProvider(
127 | "xcodegen",
128 | new XCodeGenTaskProvider(context.extensionPath)
129 | )
130 | );
131 |
132 | // Register generate project command:
133 | context.subscriptions.push(
134 | vscode.commands.registerCommand(
135 | "xcodegenbuilder.generate-project",
136 | async () => {
137 | const folderUri = await vscode.window.showOpenDialog({
138 | canSelectFolders: true,
139 | canSelectFiles: false,
140 | canSelectMany: false,
141 | openLabel: "Select Folder",
142 | });
143 |
144 | if (!folderUri || folderUri.length === 0) {
145 | vscode.window.showInformationMessage("No folder selected");
146 | return;
147 | }
148 |
149 | const appName = await vscode.window.showInputBox({
150 | prompt: "Enter the Application Name",
151 | });
152 | if (!appName) return;
153 |
154 | const bundleIdPrefix = await vscode.window.showInputBox({
155 | prompt: "Enter the Bundle ID Prefix",
156 | });
157 | if (!bundleIdPrefix) return;
158 |
159 | const xcodegen = new XcodeGenExtension();
160 | await xcodegen
161 | .createProjectFiles(folderUri[0], appName, bundleIdPrefix)
162 | .then(() => {
163 | vscode.commands.executeCommand(
164 | "vscode.openFolder",
165 | folderUri[0],
166 | true
167 | );
168 | });
169 | }
170 | )
171 | );
172 |
173 | // Register generate `launch.json` command
174 | context.subscriptions.push(
175 | vscode.commands.registerCommand(
176 | "xcodegenbuilder.generate-launch",
177 | async () => {
178 | const workspaceFolders = vscode.workspace.workspaceFolders;
179 | if (!workspaceFolders) {
180 | vscode.window.showErrorMessage("No workspace folder is open.");
181 | return;
182 | }
183 |
184 | // Assuming we use the first workspace folder for simplicity
185 | const folderUri = workspaceFolders[0].uri;
186 |
187 | const appName = await vscode.window.showInputBox({
188 | prompt: "Enter the Application Name",
189 | });
190 | if (!appName) return;
191 |
192 | const bundleIdPrefix = await vscode.window.showInputBox({
193 | prompt: "Enter the Bundle ID Prefix",
194 | });
195 | if (!bundleIdPrefix) return;
196 |
197 | const xcodegen = new XcodeGenExtension();
198 | await xcodegen
199 | .createLaunchJson(folderUri, appName, bundleIdPrefix)
200 | .then(() => {
201 | vscode.window.showInformationMessage(
202 | "launch.json file created successfully."
203 | );
204 | });
205 | }
206 | )
207 | );
208 | }
209 |
210 | // This method is called when your extension is deactivated
211 | export function deactivate() {}
212 |
--------------------------------------------------------------------------------
/src/projectconfig.ts:
--------------------------------------------------------------------------------
1 | export interface ProjectConfig {
2 | name?: string;
3 | options?: {
4 | bundleIdPrefix?: string;
5 | };
6 | packages?: Record;
7 | targets?: Record<
8 | string,
9 | {
10 | type?: string;
11 | platform?: string;
12 | deploymentTarget?: string;
13 | sources?: string[];
14 | dependencies?: Array<{
15 | sdk?: string;
16 | package?: string;
17 | }>;
18 | settings?: {
19 | base?: Record;
20 | };
21 | }
22 | >;
23 | }
24 |
--------------------------------------------------------------------------------
/src/taskprovider.ts:
--------------------------------------------------------------------------------
1 | import * as vscode from "vscode";
2 | import * as fs from "fs";
3 | import * as path from "path";
4 | import * as yaml from "js-yaml";
5 |
6 | import { ProjectConfig } from "./projectconfig";
7 |
8 | export class XCodeGenTaskProvider implements vscode.TaskProvider {
9 | private extensionPath: string;
10 |
11 | constructor(extensionPath: string) {
12 | this.extensionPath = extensionPath;
13 | }
14 |
15 | private createNpmXcodegenTask(
16 | targetName: string,
17 | projectFilePath: string
18 | ): vscode.Task {
19 | return new vscode.Task(
20 | { type: "shell", task: "xcodegen" },
21 | vscode.TaskScope.Workspace,
22 | `Generate xcodeproj for ${targetName}`,
23 | "XcodeGen",
24 | new vscode.ShellExecution(
25 | "npm",
26 | ["run", "xcodegen", "--", "-s", projectFilePath],
27 | { cwd: this.extensionPath }
28 | )
29 | );
30 | }
31 |
32 | private createCleanTask(
33 | targetName: string,
34 | derivedDataPath: string
35 | ): vscode.Task {
36 | const resultBundlePath = `${derivedDataPath}/Result.xcresult`;
37 | return new vscode.Task(
38 | { type: "shell", target: targetName },
39 | vscode.TaskScope.Workspace,
40 | "Clean build results",
41 | "XcodeGen",
42 | new vscode.ShellExecution(`rm -R -f ${resultBundlePath}`)
43 | );
44 | }
45 |
46 | private createXcodebuildTask(
47 | targetName: string,
48 | derivedDataPath: string
49 | ): vscode.Task {
50 | const xcodebuildTask = new vscode.Task(
51 | { type: "process", target: targetName },
52 | vscode.TaskScope.Workspace,
53 | "Build using xcodebuild",
54 | "XcodeGen",
55 | new vscode.ProcessExecution("xcodebuild", [
56 | "-scheme",
57 | targetName,
58 | "-configuration",
59 | "Debug",
60 | "-sdk",
61 | "${command:ios-debug.targetSdk}",
62 | "-derivedDataPath",
63 | derivedDataPath,
64 | "-allowProvisioningUpdates",
65 | "ARCHS=arm64",
66 | ])
67 | );
68 | xcodebuildTask.group = vscode.TaskGroup.Build;
69 | xcodebuildTask.isBackground = false;
70 | xcodebuildTask.presentationOptions = {
71 | reveal: vscode.TaskRevealKind.Always,
72 | };
73 | return xcodebuildTask;
74 | }
75 |
76 | provideTasks(
77 | token: vscode.CancellationToken
78 | ): vscode.ProviderResult {
79 | let tasks: vscode.Task[] = [];
80 | const projectFilePath = path.join(
81 | vscode.workspace.rootPath || "",
82 | "project.yml"
83 | );
84 |
85 | if (fs.existsSync(projectFilePath)) {
86 | const fileContents = fs.readFileSync(projectFilePath, "utf8");
87 | const projectConfig = yaml.load(fileContents) as ProjectConfig;
88 |
89 | if (projectConfig && projectConfig.targets) {
90 | for (const targetName in projectConfig.targets) {
91 | const derivedDataPath = `~/Library/Developer/Xcode/DerivedData/${targetName}`;
92 | const workspaceRoot = vscode.workspace.rootPath || "";
93 |
94 | tasks.push(this.createNpmXcodegenTask(targetName, projectFilePath));
95 | tasks.push(this.createCleanTask(targetName, derivedDataPath));
96 | tasks.push(this.createXcodebuildTask(targetName, derivedDataPath));
97 | }
98 | }
99 | }
100 |
101 | return tasks;
102 | }
103 |
104 | resolveTask(
105 | task: vscode.Task,
106 | token: vscode.CancellationToken
107 | ): vscode.ProviderResult {
108 | return undefined;
109 | }
110 | }
111 |
--------------------------------------------------------------------------------
/src/test/extension.test.ts:
--------------------------------------------------------------------------------
1 | import * as assert from 'assert';
2 |
3 | // You can import and use all API from the 'vscode' module
4 | // as well as import your extension to test it
5 | import * as vscode from 'vscode';
6 | // import * as myExtension from '../../extension';
7 |
8 | suite('Extension Test Suite', () => {
9 | vscode.window.showInformationMessage('Start all tests.');
10 |
11 | test('Sample test', () => {
12 | assert.strictEqual(-1, [1, 2, 3].indexOf(5));
13 | assert.strictEqual(-1, [1, 2, 3].indexOf(0));
14 | });
15 | });
16 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "Node16",
4 | "target": "ES2022",
5 | "outDir": "out",
6 | "lib": [
7 | "ES2022"
8 | ],
9 | "sourceMap": true,
10 | "rootDir": "src",
11 | "strict": true /* enable all strict type-checking options */
12 | /* Additional Checks */
13 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
14 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
15 | // "noUnusedParameters": true, /* Report errors on unused parameters. */
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/vsc-extension-quickstart.md:
--------------------------------------------------------------------------------
1 | # Welcome to your VS Code Extension
2 |
3 | ## What's in the folder
4 |
5 | * This folder contains all of the files necessary for your extension.
6 | * `package.json` - this is the manifest file in which you declare your extension and command.
7 | * The sample plugin registers a command and defines its title and command name. With this information VS Code can show the command in the command palette. It doesn’t yet need to load the plugin.
8 | * `src/extension.ts` - this is the main file where you will provide the implementation of your command.
9 | * The file exports one function, `activate`, which is called the very first time your extension is activated (in this case by executing the command). Inside the `activate` function we call `registerCommand`.
10 | * We pass the function containing the implementation of the command as the second parameter to `registerCommand`.
11 |
12 | ## Get up and running straight away
13 |
14 | * Press `F5` to open a new window with your extension loaded.
15 | * Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`.
16 | * Set breakpoints in your code inside `src/extension.ts` to debug your extension.
17 | * Find output from your extension in the debug console.
18 |
19 | ## Make changes
20 |
21 | * You can relaunch the extension from the debug toolbar after changing code in `src/extension.ts`.
22 | * You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.
23 |
24 | ## Explore the API
25 |
26 | * You can open the full set of our API when you open the file `node_modules/@types/vscode/index.d.ts`.
27 |
28 | ## Run tests
29 |
30 | * Install the [Extension Test Runner](https://marketplace.visualstudio.com/items?itemName=ms-vscode.extension-test-runner)
31 | * Run the "watch" task via the **Tasks: Run Task** command. Make sure this is running, or tests might not be discovered.
32 | * Open the Testing view from the activity bar and click the Run Test" button, or use the hotkey `Ctrl/Cmd + ; A`
33 | * See the output of the test result in the Test Results view.
34 | * Make changes to `src/test/extension.test.ts` or create new test files inside the `test` folder.
35 | * The provided test runner will only consider files matching the name pattern `**.test.ts`.
36 | * You can create folders inside the `test` folder to structure your tests any way you want.
37 |
38 | ## Go further
39 |
40 | * [Follow UX guidelines](https://code.visualstudio.com/api/ux-guidelines/overview) to create extensions that seamlessly integrate with VS Code's native interface and patterns.
41 | * Reduce the extension size and improve the startup time by [bundling your extension](https://code.visualstudio.com/api/working-with-extensions/bundling-extension).
42 | * [Publish your extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) on the VS Code extension marketplace.
43 | * Automate builds by setting up [Continuous Integration](https://code.visualstudio.com/api/working-with-extensions/continuous-integration).
44 |
--------------------------------------------------------------------------------