From 8b413fe68251c1c0cc9c914c571f247468afc189 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Fri, 4 Oct 2024 10:02:06 +0200 Subject: [PATCH 01/36] #13 Added IDE code and VS Extension --- gradle/libs.versions.toml | 3 + settings.gradle.kts | 2 + subprojects/oxsts-vs-code/.gitignore | 6 + subprojects/oxsts-vs-code/.vscode-test.mjs | 5 + subprojects/oxsts-vs-code/.vscodeignore | 14 + subprojects/oxsts-vs-code/build.gradle.kts | 66 + subprojects/oxsts-vs-code/esbuild.js | 56 + subprojects/oxsts-vs-code/eslint.config.mjs | 28 + subprojects/oxsts-vs-code/package-lock.json | 6591 +++++++++++++++++ subprojects/oxsts-vs-code/package.json | 50 + subprojects/oxsts-vs-code/src/extension.ts | 26 + .../oxsts-vs-code/src/test/extension.test.ts | 15 + subprojects/oxsts-vs-code/tsconfig.json | 16 + .../oxsts-vs-code/vsc-extension-quickstart.md | 48 + subprojects/oxsts.lang.ide/.gitignore | 2 +- subprojects/oxsts.lang.ide/build.gradle.kts | 23 + .../oxsts/lang/ide/OxstsIdeModule.java | 59 + .../oxsts/lang/ide/OxstsIdeSetup.java | 25 + .../src/main/resources/log4j2.properties | 8 + subprojects/oxsts.lang/build.gradle.kts | 3 +- .../semantifyr/oxsts/lang/GenerateOxsts.mwe2 | 3 +- 21 files changed, 7045 insertions(+), 4 deletions(-) create mode 100644 subprojects/oxsts-vs-code/.gitignore create mode 100644 subprojects/oxsts-vs-code/.vscode-test.mjs create mode 100644 subprojects/oxsts-vs-code/.vscodeignore create mode 100644 subprojects/oxsts-vs-code/build.gradle.kts create mode 100644 subprojects/oxsts-vs-code/esbuild.js create mode 100644 subprojects/oxsts-vs-code/eslint.config.mjs create mode 100644 subprojects/oxsts-vs-code/package-lock.json create mode 100644 subprojects/oxsts-vs-code/package.json create mode 100644 subprojects/oxsts-vs-code/src/extension.ts create mode 100644 subprojects/oxsts-vs-code/src/test/extension.test.ts create mode 100644 subprojects/oxsts-vs-code/tsconfig.json create mode 100644 subprojects/oxsts-vs-code/vsc-extension-quickstart.md create mode 100644 subprojects/oxsts.lang.ide/build.gradle.kts create mode 100644 subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeModule.java create mode 100644 subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeSetup.java create mode 100644 subprojects/oxsts.lang.ide/src/main/resources/log4j2.properties diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 604546f..b5062ba 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -16,6 +16,7 @@ kotlinxCli = "0.3.6" viatra = "2.9.1" dockerJava = "3.4.0" guice = "7.0.0" +node = "7.1.0" [libraries] ecore = { group = "org.eclipse.emf", name = "org.eclipse.emf.ecore", version.ref = "ecore" } @@ -32,6 +33,7 @@ slf4j-api = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j" } slf4j-log4j = { group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version.ref = "log4j" } xtext-bom = { group = "org.eclipse.xtext", name = "xtext-dev-bom", version.ref = "xtext" } xtext-core = { group = "org.eclipse.xtext", name = "org.eclipse.xtext", version.ref = "xtext" } +xtext-ide = { group = "org.eclipse.xtext", name = "org.eclipse.xtext.ide", version.ref = "xtext" } xtext-generator-antlr = { group = "org.eclipse.xtext", name = "xtext-antlr-generator", version = "2.1.1" } xtext-generator = { group = "org.eclipse.xtext", name = "org.eclipse.xtext.xtext.generator", version.ref = "xtext" } xtext-testing = { group = "org.eclipse.xtext", name = "org.eclipse.xtext.testing", version.ref = "xtext" } @@ -47,3 +49,4 @@ docker-java-transport = { group = "com.github.docker-java" , name = "docker-java [plugins] kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } +gradle-node = { id = "com.github.node-gradle.node", version.ref = "node" } diff --git a/settings.gradle.kts b/settings.gradle.kts index d650a4e..2a9a3a9 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -10,6 +10,8 @@ include( "compiler", "oxsts.model", "oxsts.lang", + "oxsts.lang.ide", + "oxsts-vs-code", ) rootProject.children.forEach { project -> diff --git a/subprojects/oxsts-vs-code/.gitignore b/subprojects/oxsts-vs-code/.gitignore new file mode 100644 index 0000000..92aec19 --- /dev/null +++ b/subprojects/oxsts-vs-code/.gitignore @@ -0,0 +1,6 @@ +/node_modules/ +/dist/ +/bin/ +/.vscode/ +/.vscode-test/ +/out/ diff --git a/subprojects/oxsts-vs-code/.vscode-test.mjs b/subprojects/oxsts-vs-code/.vscode-test.mjs new file mode 100644 index 0000000..b62ba25 --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode-test.mjs @@ -0,0 +1,5 @@ +import { defineConfig } from '@vscode/test-cli'; + +export default defineConfig({ + files: 'out/test/**/*.test.js', +}); diff --git a/subprojects/oxsts-vs-code/.vscodeignore b/subprojects/oxsts-vs-code/.vscodeignore new file mode 100644 index 0000000..159277f --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscodeignore @@ -0,0 +1,14 @@ +.vscode/** +.vscode-test/** +out/** +node_modules/** +src/** +.gitignore +.yarnrc +esbuild.js +vsc-extension-quickstart.md +**/tsconfig.json +**/eslint.config.mjs +**/*.map +**/*.ts +**/.vscode-test.* diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/oxsts-vs-code/build.gradle.kts new file mode 100644 index 0000000..84f177e --- /dev/null +++ b/subprojects/oxsts-vs-code/build.gradle.kts @@ -0,0 +1,66 @@ +import com.github.gradle.node.exec.ExecRunner +import com.github.gradle.node.npm.task.NpmTask +import com.github.gradle.node.task.NodeTask +import org.apache.tools.ant.taskdefs.condition.Os + +plugins { + base + alias(libs.plugins.gradle.node) +} + +val distribution by configurations.creating + +dependencies { + distribution(project(":oxsts.lang.ide", configuration = "distributionOutput")) +} + +val cloneIde by tasks.registering(Sync::class) { + from(tarTree(distribution.singleFile)) + into("bin") +} + +tasks.clean { + delete("dist") +} + +tasks { + val compile by registering(NpmTask::class) { + dependsOn(npmInstall) + + npmCommand.set( + listOf( + "run", + "package", + ) + ) + + outputs.dir("dist") + } + + val packageExtension by registering(Exec::class) { + inputs.files(compile.get().outputs) + inputs.file("node_modules/.bin/vsce.cmd") + outputs.dir(project.layout.buildDirectory.dir("vscode")) + + if (Os.isFamily(Os.FAMILY_WINDOWS)) { + commandLine( + "cmd", + "/c", + "node_modules\\.bin\\vsce.cmd", + "package", + "--out", project.layout.buildDirectory.dir("vscode").get().asFile.absolutePath, + ) + } else { + commandLine( + "sh", + "node_modules/.bin/vsce", + "package", + "--out", project.layout.buildDirectory.dir("vscode").get().asFile.absolutePath, + ) + } + } + + assemble { + dependsOn(packageExtension) + } +} diff --git a/subprojects/oxsts-vs-code/esbuild.js b/subprojects/oxsts-vs-code/esbuild.js new file mode 100644 index 0000000..cc2be59 --- /dev/null +++ b/subprojects/oxsts-vs-code/esbuild.js @@ -0,0 +1,56 @@ +const esbuild = require("esbuild"); + +const production = process.argv.includes('--production'); +const watch = process.argv.includes('--watch'); + +/** + * @type {import('esbuild').Plugin} + */ +const esbuildProblemMatcherPlugin = { + name: 'esbuild-problem-matcher', + + setup(build) { + build.onStart(() => { + console.log('[watch] build started'); + }); + build.onEnd((result) => { + result.errors.forEach(({ text, location }) => { + console.error(`✘ [ERROR] ${text}`); + console.error(` ${location.file}:${location.line}:${location.column}:`); + }); + console.log('[watch] build finished'); + }); + }, +}; + +async function main() { + const ctx = await esbuild.context({ + entryPoints: [ + 'src/extension.ts' + ], + bundle: true, + format: 'cjs', + minify: production, + sourcemap: !production, + sourcesContent: false, + platform: 'node', + outfile: 'dist/extension.js', + external: ['vscode'], + logLevel: 'silent', + plugins: [ + /* add to the end of plugins array */ + esbuildProblemMatcherPlugin, + ], + }); + if (watch) { + await ctx.watch(); + } else { + await ctx.rebuild(); + await ctx.dispose(); + } +} + +main().catch(e => { + console.error(e); + process.exit(1); +}); diff --git a/subprojects/oxsts-vs-code/eslint.config.mjs b/subprojects/oxsts-vs-code/eslint.config.mjs new file mode 100644 index 0000000..d5c0b53 --- /dev/null +++ b/subprojects/oxsts-vs-code/eslint.config.mjs @@ -0,0 +1,28 @@ +import typescriptEslint from "@typescript-eslint/eslint-plugin"; +import tsParser from "@typescript-eslint/parser"; + +export default [{ + files: ["**/*.ts"], +}, { + plugins: { + "@typescript-eslint": typescriptEslint, + }, + + languageOptions: { + parser: tsParser, + ecmaVersion: 2022, + sourceType: "module", + }, + + rules: { + "@typescript-eslint/naming-convention": ["warn", { + selector: "import", + format: ["camelCase", "PascalCase"], + }], + + curly: "warn", + eqeqeq: "warn", + "no-throw-literal": "warn", + semi: "warn", + }, +}]; \ No newline at end of file diff --git a/subprojects/oxsts-vs-code/package-lock.json b/subprojects/oxsts-vs-code/package-lock.json new file mode 100644 index 0000000..d5d3b6b --- /dev/null +++ b/subprojects/oxsts-vs-code/package-lock.json @@ -0,0 +1,6591 @@ +{ + "name": "semantifyr", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "semantifyr", + "version": "0.0.1", + "devDependencies": { + "@types/mocha": "^10.0.8", + "@types/node": "20.x", + "@types/vscode": "^1.93.0", + "@typescript-eslint/eslint-plugin": "^8.7.0", + "@typescript-eslint/parser": "^8.7.0", + "@vscode/test-cli": "^0.0.10", + "@vscode/test-electron": "^2.4.1", + "esbuild": "^0.24.0", + "eslint": "^9.11.1", + "npm-run-all": "^4.1.5", + "typescript": "^5.6.2", + "vsce": "^2.15.0" + }, + "engines": { + "vscode": "^1.93.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz", + "integrity": "sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.0.tgz", + "integrity": "sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz", + "integrity": "sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.0.tgz", + "integrity": "sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz", + "integrity": "sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz", + "integrity": "sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz", + "integrity": "sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz", + "integrity": "sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz", + "integrity": "sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz", + "integrity": "sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz", + "integrity": "sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz", + "integrity": "sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz", + "integrity": "sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz", + "integrity": "sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz", + "integrity": "sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz", + "integrity": "sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz", + "integrity": "sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz", + "integrity": "sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz", + "integrity": "sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz", + "integrity": "sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz", + "integrity": "sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz", + "integrity": "sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz", + "integrity": "sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz", + "integrity": "sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.1.tgz", + "integrity": "sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.18.0.tgz", + "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.4", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/core": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.6.0.tgz", + "integrity": "sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "9.11.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.11.1.tgz", + "integrity": "sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.0.tgz", + "integrity": "sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", + "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mocha": { + "version": "10.0.8", + "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-10.0.8.tgz", + "integrity": "sha512-HfMcUmy9hTMJh66VNcmeC9iVErIZJli2bszuXc6julh5YGuRb/W5OnkHjwLNYdFlMis0sY3If5SEAp+PktdJjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.16.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.16.10.tgz", + "integrity": "sha512-vQUKgWTjEIRFCvK6CyriPH3MZYiYlNy0fKiEYHWbcoWLEgs4opurGGKlebrTLqdSMIbXImH6XExNiIyNUv3WpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/@types/vscode": { + "version": "1.93.0", + "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.93.0.tgz", + "integrity": "sha512-kUK6jAHSR5zY8ps42xuW89NLcBpw1kOabah7yv38J8MyiYuOHxLQBi0e7zeXbQgVefDy/mZZetqEFC+Fl5eIEQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.8.0.tgz", + "integrity": "sha512-wORFWjU30B2WJ/aXBfOm1LX9v9nyt9D3jsSOxC3cCaTQGCW5k4jNpmjFv3U7p/7s4yvdjHzwtv2Sd2dOyhjS0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.8.0", + "@typescript-eslint/type-utils": "8.8.0", + "@typescript-eslint/utils": "8.8.0", + "@typescript-eslint/visitor-keys": "8.8.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.8.0.tgz", + "integrity": "sha512-uEFUsgR+tl8GmzmLjRqz+VrDv4eoaMqMXW7ruXfgThaAShO9JTciKpEsB+TvnfFfbg5IpujgMXVV36gOJRLtZg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "8.8.0", + "@typescript-eslint/types": "8.8.0", + "@typescript-eslint/typescript-estree": "8.8.0", + "@typescript-eslint/visitor-keys": "8.8.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.8.0.tgz", + "integrity": "sha512-EL8eaGC6gx3jDd8GwEFEV091210U97J0jeEHrAYvIYosmEGet4wJ+g0SYmLu+oRiAwbSA5AVrt6DxLHfdd+bUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.8.0", + "@typescript-eslint/visitor-keys": "8.8.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.8.0.tgz", + "integrity": "sha512-IKwJSS7bCqyCeG4NVGxnOP6lLT9Okc3Zj8hLO96bpMkJab+10HIfJbMouLrlpyOr3yrQ1cA413YPFiGd1mW9/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.8.0", + "@typescript-eslint/utils": "8.8.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.8.0.tgz", + "integrity": "sha512-QJwc50hRCgBd/k12sTykOJbESe1RrzmX6COk8Y525C9l7oweZ+1lw9JiU56im7Amm8swlz00DRIlxMYLizr2Vw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.8.0.tgz", + "integrity": "sha512-ZaMJwc/0ckLz5DaAZ+pNLmHv8AMVGtfWxZe/x2JVEkD5LnmhWiQMMcYT7IY7gkdJuzJ9P14fRy28lUrlDSWYdw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "8.8.0", + "@typescript-eslint/visitor-keys": "8.8.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.8.0.tgz", + "integrity": "sha512-QE2MgfOTem00qrlPgyByaCHay9yb1+9BjnMFnSFkUKQfu7adBXDTnCAivURnuPPAG/qiB+kzKkZKmKfaMT0zVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.8.0", + "@typescript-eslint/types": "8.8.0", + "@typescript-eslint/typescript-estree": "8.8.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.8.0.tgz", + "integrity": "sha512-8mq51Lx6Hpmd7HnA2fcHQo3YgfX1qbccxQOgZcb4tvasu//zXRaA1j5ZRFeCw/VRAdFi4mRM9DnZw0Nu0Q2d1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.8.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vscode/test-cli": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/@vscode/test-cli/-/test-cli-0.0.10.tgz", + "integrity": "sha512-B0mMH4ia+MOOtwNiLi79XhA+MLmUItIC8FckEuKrVAVriIuSWjt7vv4+bF8qVFiNFe4QRfzPaIZk39FZGWEwHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mocha": "^10.0.2", + "c8": "^9.1.0", + "chokidar": "^3.5.3", + "enhanced-resolve": "^5.15.0", + "glob": "^10.3.10", + "minimatch": "^9.0.3", + "mocha": "^10.2.0", + "supports-color": "^9.4.0", + "yargs": "^17.7.2" + }, + "bin": { + "vscode-test": "out/bin.mjs" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@vscode/test-electron": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.4.1.tgz", + "integrity": "sha512-Gc6EdaLANdktQ1t+zozoBVRynfIsMKMc94Svu1QreOBC8y76x4tvaK32TljrLi1LI2+PK58sDVbL7ALdqf3VRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "http-proxy-agent": "^7.0.2", + "https-proxy-agent": "^7.0.5", + "jszip": "^3.10.1", + "ora": "^7.0.1", + "semver": "^7.6.2" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bl": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", + "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true, + "license": "ISC" + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/c8": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/c8/-/c8-9.1.0.tgz", + "integrity": "sha512-mBWcT5iqNir1zIkzSPyI3NCR9EZCVI3WUD+AVO17MVWTSFNyUueXE82qTeampNtTr+ilN/5Ua3j24LgbCKjDVg==", + "dev": true, + "license": "ISC", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@istanbuljs/schema": "^0.1.3", + "find-up": "^5.0.0", + "foreground-child": "^3.1.1", + "istanbul-lib-coverage": "^3.2.0", + "istanbul-lib-report": "^3.0.1", + "istanbul-reports": "^3.1.6", + "test-exclude": "^6.0.0", + "v8-to-istanbul": "^9.0.0", + "yargs": "^17.7.2", + "yargs-parser": "^21.1.1" + }, + "bin": { + "c8": "bin/c8.js" + }, + "engines": { + "node": ">=14.14.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cheerio": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0.tgz", + "integrity": "sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.1.0", + "encoding-sniffer": "^0.2.0", + "htmlparser2": "^9.1.0", + "parse5": "^7.1.2", + "parse5-htmlparser2-tree-adapter": "^7.0.0", + "parse5-parser-stream": "^7.1.2", + "undici": "^6.19.5", + "whatwg-mimetype": "^4.0.0" + }, + "engines": { + "node": ">=18.17" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "node_modules/cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true, + "license": "ISC" + }, + "node_modules/cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/encoding-sniffer": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz", + "integrity": "sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "^0.6.3", + "whatwg-encoding": "^3.1.1" + }, + "funding": { + "url": "https://github.com/fb55/encoding-sniffer?sponsor=1" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.24.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.0.tgz", + "integrity": "sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.24.0", + "@esbuild/android-arm": "0.24.0", + "@esbuild/android-arm64": "0.24.0", + "@esbuild/android-x64": "0.24.0", + "@esbuild/darwin-arm64": "0.24.0", + "@esbuild/darwin-x64": "0.24.0", + "@esbuild/freebsd-arm64": "0.24.0", + "@esbuild/freebsd-x64": "0.24.0", + "@esbuild/linux-arm": "0.24.0", + "@esbuild/linux-arm64": "0.24.0", + "@esbuild/linux-ia32": "0.24.0", + "@esbuild/linux-loong64": "0.24.0", + "@esbuild/linux-mips64el": "0.24.0", + "@esbuild/linux-ppc64": "0.24.0", + "@esbuild/linux-riscv64": "0.24.0", + "@esbuild/linux-s390x": "0.24.0", + "@esbuild/linux-x64": "0.24.0", + "@esbuild/netbsd-x64": "0.24.0", + "@esbuild/openbsd-arm64": "0.24.0", + "@esbuild/openbsd-x64": "0.24.0", + "@esbuild/sunos-x64": "0.24.0", + "@esbuild/win32-arm64": "0.24.0", + "@esbuild/win32-ia32": "0.24.0", + "@esbuild/win32-x64": "0.24.0" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.11.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.11.1.tgz", + "integrity": "sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.11.0", + "@eslint/config-array": "^0.18.0", + "@eslint/core": "^0.6.0", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.11.1", + "@eslint/plugin-kit": "^0.2.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.0", + "@nodelib/fs.walk": "^1.2.8", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.0.2", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.1.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.1.0.tgz", + "integrity": "sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.1.0.tgz", + "integrity": "sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/espree": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.2.0.tgz", + "integrity": "sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.12.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.1.0.tgz", + "integrity": "sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "dev": true, + "license": "(MIT OR WTFPL)", + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true, + "license": "MIT" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", + "dev": true, + "license": "MIT" + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true, + "license": "ISC" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/htmlparser2": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz", + "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.1.0", + "entities": "^4.5.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "license": "ISC" + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/jszip": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "dev": true, + "license": "(MIT OR GPL-3.0-or-later)", + "dependencies": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" + } + }, + "node_modules/keytar": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/keytar/-/keytar-7.9.0.tgz", + "integrity": "sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-addon-api": "^4.3.0", + "prebuild-install": "^7.0.1" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "immediate": "~3.0.5" + } + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true, + "license": "MIT" + }, + "node_modules/mocha": { + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.7.3.tgz", + "integrity": "sha512-uQWxAu44wwiACGqjbPYmjo7Lg8sFrS3dQe7PP2FQI+woptP4vZXSMcfMyFL/e1yFEeEpV4RtyTpZROOKmxis+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-colors": "^4.1.3", + "browser-stdout": "^1.3.1", + "chokidar": "^3.5.3", + "debug": "^4.3.5", + "diff": "^5.2.0", + "escape-string-regexp": "^4.0.0", + "find-up": "^5.0.0", + "glob": "^8.1.0", + "he": "^1.2.0", + "js-yaml": "^4.1.0", + "log-symbols": "^4.1.0", + "minimatch": "^5.1.6", + "ms": "^2.1.3", + "serialize-javascript": "^6.0.2", + "strip-json-comments": "^3.1.1", + "supports-color": "^8.1.1", + "workerpool": "^6.5.1", + "yargs": "^16.2.0", + "yargs-parser": "^20.2.9", + "yargs-unparser": "^2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/mocha/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/mocha/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/mocha/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/mocha/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/mocha/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true, + "license": "ISC" + }, + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", + "dev": true, + "license": "MIT" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-abi": { + "version": "3.68.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.68.0.tgz", + "integrity": "sha512-7vbj10trelExNjFSBm5kTvZXXa7pZyKWx9RCKIyqe6I9Ev3IzGpQoqBP3a+cOdxY+pWj6VkP28n/2wWysBHD/A==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm-run-all/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/npm-run-all/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/npm-run-all/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/npm-run-all/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/npm-run-all/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/npm-run-all/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/npm-run-all/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-all/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-7.0.1.tgz", + "integrity": "sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^5.3.0", + "cli-cursor": "^4.0.0", + "cli-spinners": "^2.9.0", + "is-interactive": "^2.0.0", + "is-unicode-supported": "^1.3.0", + "log-symbols": "^5.1.0", + "stdin-discarder": "^0.1.0", + "string-width": "^6.1.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ora/node_modules/emoji-regex": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/ora/node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/log-symbols": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", + "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^5.0.0", + "is-unicode-supported": "^1.1.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/string-width": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-6.1.0.tgz", + "integrity": "sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^10.2.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true, + "license": "(MIT AND Zlib)" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse-semver": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/parse-semver/-/parse-semver-1.1.1.tgz", + "integrity": "sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^5.1.0" + } + }, + "node_modules/parse-semver/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "domhandler": "^5.0.2", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-parser-stream": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz", + "integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true, + "license": "MIT" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "dev": true, + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/prebuild-install": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.2.tgz", + "integrity": "sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/pump": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", + "dev": true, + "license": "ISC" + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true, + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true, + "license": "CC-BY-3.0" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", + "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/stdin-discarder": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.1.0.tgz", + "integrity": "sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/string.prototype.padend": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.6.tgz", + "integrity": "sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", + "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "license": "MIT", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-stream/node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/tar-stream/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tmp": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.14" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-rest-client": { + "version": "1.8.11", + "resolved": "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.11.tgz", + "integrity": "sha512-5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "qs": "^6.9.1", + "tunnel": "0.0.6", + "underscore": "^1.12.1" + } + }, + "node_modules/typescript": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz", + "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/underscore": { + "version": "1.13.7", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz", + "integrity": "sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==", + "dev": true, + "license": "MIT" + }, + "node_modules/undici": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.19.8.tgz", + "integrity": "sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "dev": true, + "license": "MIT" + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/v8-to-istanbul": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vsce": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/vsce/-/vsce-2.15.0.tgz", + "integrity": "sha512-P8E9LAZvBCQnoGoizw65JfGvyMqNGlHdlUXD1VAuxtvYAaHBKLBdKPnpy60XKVDAkQCfmMu53g+gq9FM+ydepw==", + "deprecated": "vsce has been renamed to @vscode/vsce. Install using @vscode/vsce instead.", + "dev": true, + "license": "MIT", + "dependencies": { + "azure-devops-node-api": "^11.0.1", + "chalk": "^2.4.2", + "cheerio": "^1.0.0-rc.9", + "commander": "^6.1.0", + "glob": "^7.0.6", + "hosted-git-info": "^4.0.2", + "keytar": "^7.7.0", + "leven": "^3.1.0", + "markdown-it": "^12.3.2", + "mime": "^1.3.4", + "minimatch": "^3.0.3", + "parse-semver": "^1.1.1", + "read": "^1.0.7", + "semver": "^5.1.0", + "tmp": "^0.2.1", + "typed-rest-client": "^1.8.4", + "url-join": "^4.0.1", + "xml2js": "^0.4.23", + "yauzl": "^2.3.1", + "yazl": "^2.2.2" + }, + "bin": { + "vsce": "vsce" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/vsce/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/vsce/node_modules/azure-devops-node-api": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-11.2.0.tgz", + "integrity": "sha512-XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tunnel": "0.0.6", + "typed-rest-client": "^1.8.4" + } + }, + "node_modules/vsce/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/vsce/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/vsce/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/vsce/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/vsce/node_modules/entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "dev": true, + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/vsce/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/vsce/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/vsce/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/vsce/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/vsce/node_modules/linkify-it": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/vsce/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/vsce/node_modules/markdown-it": { + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/vsce/node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true, + "license": "MIT" + }, + "node_modules/vsce/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/vsce/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/vsce/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/vsce/node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true, + "license": "MIT" + }, + "node_modules/vsce/node_modules/xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dev": true, + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-mimetype": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workerpool": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz", + "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yazl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz", + "integrity": "sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-crc32": "~0.2.3" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/subprojects/oxsts-vs-code/package.json b/subprojects/oxsts-vs-code/package.json new file mode 100644 index 0000000..aaa8309 --- /dev/null +++ b/subprojects/oxsts-vs-code/package.json @@ -0,0 +1,50 @@ +{ + "name": "semantifyr", + "displayName": "Semantifyr", + "description": "OXSTS language support for VS Code", + "version": "0.0.1", + "engines": { + "vscode": "^1.93.0" + }, + "categories": [ + "Other" + ], + "activationEvents": [], + "main": "./dist/extension.js", + "contributes": { + "commands": [ + { + "command": "semantifyr.helloWorld", + "title": "Hello World" + } + ] + }, + "scripts": { + "vscode:prepublish": "npm run package", + "compile": "npm run check-types && npm run lint && node esbuild.js", + "watch": "npm-run-all -p watch:*", + "watch:esbuild": "node esbuild.js --watch", + "watch:tsc": "tsc --noEmit --watch --project tsconfig.json", + "package": "npm run check-types && npm run lint && node esbuild.js --production", + "compile-tests": "tsc -p . --outDir out", + "watch-tests": "tsc -p . -w --outDir out", + "pretest": "npm run compile-tests && npm run compile && npm run lint", + "check-types": "tsc --noEmit", + "lint": "eslint src", + "test": "vscode-test" + }, + "devDependencies": { + "@types/mocha": "^10.0.8", + "@types/node": "20.x", + "@types/vscode": "^1.93.0", + "@typescript-eslint/eslint-plugin": "^8.7.0", + "@typescript-eslint/parser": "^8.7.0", + "@vscode/test-cli": "^0.0.10", + "@vscode/test-electron": "^2.4.1", + "esbuild": "^0.24.0", + "eslint": "^9.11.1", + "npm-run-all": "^4.1.5", + "typescript": "^5.6.2", + "vsce": "^2.15.0" + } +} diff --git a/subprojects/oxsts-vs-code/src/extension.ts b/subprojects/oxsts-vs-code/src/extension.ts new file mode 100644 index 0000000..f514d44 --- /dev/null +++ b/subprojects/oxsts-vs-code/src/extension.ts @@ -0,0 +1,26 @@ +// The module 'vscode' contains the VS Code extensibility API +// Import the module and reference it with the alias vscode in your code below +import * as vscode from 'vscode'; + +// This method is called when your extension is activated +// Your extension is activated the very first time the command is executed +export function activate(context: vscode.ExtensionContext) { + + // Use the console to output diagnostic information (console.log) and errors (console.error) + // This line of code will only be executed once when your extension is activated + console.log('Congratulations, your extension "semantifyr" is now active!'); + + // The command has been defined in the package.json file + // Now provide the implementation of the command with registerCommand + // The commandId parameter must match the command field in package.json + const disposable = vscode.commands.registerCommand('semantifyr.helloWorld', () => { + // The code you place here will be executed every time your command is executed + // Display a message box to the user + vscode.window.showInformationMessage('Hello World from Semantifyr!'); + }); + + context.subscriptions.push(disposable); +} + +// This method is called when your extension is deactivated +export function deactivate() {} diff --git a/subprojects/oxsts-vs-code/src/test/extension.test.ts b/subprojects/oxsts-vs-code/src/test/extension.test.ts new file mode 100644 index 0000000..4ca0ab4 --- /dev/null +++ b/subprojects/oxsts-vs-code/src/test/extension.test.ts @@ -0,0 +1,15 @@ +import * as assert from 'assert'; + +// You can import and use all API from the 'vscode' module +// as well as import your extension to test it +import * as vscode from 'vscode'; +// import * as myExtension from '../../extension'; + +suite('Extension Test Suite', () => { + vscode.window.showInformationMessage('Start all tests.'); + + test('Sample test', () => { + assert.strictEqual(-1, [1, 2, 3].indexOf(5)); + assert.strictEqual(-1, [1, 2, 3].indexOf(0)); + }); +}); diff --git a/subprojects/oxsts-vs-code/tsconfig.json b/subprojects/oxsts-vs-code/tsconfig.json new file mode 100644 index 0000000..8a79f20 --- /dev/null +++ b/subprojects/oxsts-vs-code/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "module": "Node16", + "target": "ES2022", + "lib": [ + "ES2022" + ], + "sourceMap": true, + "rootDir": "src", + "strict": true /* enable all strict type-checking options */ + /* Additional Checks */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + } +} diff --git a/subprojects/oxsts-vs-code/vsc-extension-quickstart.md b/subprojects/oxsts-vs-code/vsc-extension-quickstart.md new file mode 100644 index 0000000..f518bb8 --- /dev/null +++ b/subprojects/oxsts-vs-code/vsc-extension-quickstart.md @@ -0,0 +1,48 @@ +# Welcome to your VS Code Extension + +## What's in the folder + +* This folder contains all of the files necessary for your extension. +* `package.json` - this is the manifest file in which you declare your extension and command. + * 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. +* `src/extension.ts` - this is the main file where you will provide the implementation of your command. + * 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`. + * We pass the function containing the implementation of the command as the second parameter to `registerCommand`. + +## Setup + +* install the recommended extensions (amodio.tsl-problem-matcher, ms-vscode.extension-test-runner, and dbaeumer.vscode-eslint) + + +## Get up and running straight away + +* Press `F5` to open a new window with your extension loaded. +* Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`. +* Set breakpoints in your code inside `src/extension.ts` to debug your extension. +* Find output from your extension in the debug console. + +## Make changes + +* You can relaunch the extension from the debug toolbar after changing code in `src/extension.ts`. +* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes. + + +## Explore the API + +* You can open the full set of our API when you open the file `node_modules/@types/vscode/index.d.ts`. + +## Run tests + +* Install the [Extension Test Runner](https://marketplace.visualstudio.com/items?itemName=ms-vscode.extension-test-runner) +* Run the "watch" task via the **Tasks: Run Task** command. Make sure this is running, or tests might not be discovered. +* Open the Testing view from the activity bar and click the Run Test" button, or use the hotkey `Ctrl/Cmd + ; A` +* See the output of the test result in the Test Results view. +* Make changes to `src/test/extension.test.ts` or create new test files inside the `test` folder. + * The provided test runner will only consider files matching the name pattern `**.test.ts`. + * You can create folders inside the `test` folder to structure your tests any way you want. + +## Go further + +* Reduce the extension size and improve the startup time by [bundling your extension](https://code.visualstudio.com/api/working-with-extensions/bundling-extension). +* [Publish your extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) on the VS Code extension marketplace. +* Automate builds by setting up [Continuous Integration](https://code.visualstudio.com/api/working-with-extensions/continuous-integration). diff --git a/subprojects/oxsts.lang.ide/.gitignore b/subprojects/oxsts.lang.ide/.gitignore index 8aa8d9b..ae7eb7e 100644 --- a/subprojects/oxsts.lang.ide/.gitignore +++ b/subprojects/oxsts.lang.ide/.gitignore @@ -2,5 +2,5 @@ # # SPDX-License-Identifier: EPL-2.0 -** +/src/main/xtext-gen/ !.gitignore diff --git a/subprojects/oxsts.lang.ide/build.gradle.kts b/subprojects/oxsts.lang.ide/build.gradle.kts new file mode 100644 index 0000000..4f1eaa2 --- /dev/null +++ b/subprojects/oxsts.lang.ide/build.gradle.kts @@ -0,0 +1,23 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + +plugins { + id("hu.bme.mit.semantifyr.gradle.xtext-generated") + id("hu.bme.mit.semantifyr.gradle.conventions.application") +} + +val distributionOutput by configurations.creating + +artifacts { + add(distributionOutput.name, tasks.distTar) +} + +dependencies { + api(project(":oxsts.lang")) + + implementation(libs.xtext.ide) + runtimeOnly(libs.slf4j.log4j) +} diff --git a/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeModule.java b/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeModule.java new file mode 100644 index 0000000..071fcea --- /dev/null +++ b/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeModule.java @@ -0,0 +1,59 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + +package hu.bme.mit.semantifyr.oxsts.lang.ide; + +import com.google.inject.Guice; +import com.google.inject.Injector; +import org.eclipse.lsp4j.jsonrpc.Launcher; +import org.eclipse.lsp4j.jsonrpc.MessageConsumer; +import org.eclipse.lsp4j.services.LanguageClient; +import org.eclipse.xtext.ide.server.LanguageServerImpl; +import org.eclipse.xtext.ide.server.ServerModule; + +import java.io.IOException; +import java.net.InetSocketAddress; +import java.net.SocketAddress; +import java.nio.channels.AsynchronousServerSocketChannel; +import java.nio.channels.AsynchronousSocketChannel; +import java.nio.channels.Channels; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.Future; +import java.util.function.Function; + +/** + * Use this class to register ide components. + */ +public class OxstsIdeModule extends AbstractOxstsIdeModule { + public static void main(final String[] args) throws IOException, InterruptedException, ExecutionException { + Injector injector = Guice.createInjector(new ServerModule()); + LanguageServerImpl languageServer = injector.getInstance(LanguageServerImpl.class); + Function wrapper = consumer -> { + MessageConsumer result = message -> { + System.out.println(message); + consumer.consume(message); + }; + return result; + }; + Launcher launcher = createSocketLauncher(languageServer, LanguageClient.class, new InetSocketAddress("localhost", 5007), Executors.newCachedThreadPool(), wrapper); + languageServer.connect(launcher.getRemoteProxy()); + Future future = launcher.startListening(); + while (!future.isDone()) { + System.out.println("Waiting"); + Thread.sleep(10_000l); + } + System.out.println("Done"); + System.exit(0); + } + + static Launcher createSocketLauncher(Object localService, Class remoteInterface, SocketAddress socketAddress, ExecutorService executorService, Function wrapper) throws IOException, ExecutionException, InterruptedException { + AsynchronousServerSocketChannel serverSocket = AsynchronousServerSocketChannel.open().bind(socketAddress); + AsynchronousSocketChannel socketChannel = serverSocket.accept().get(); + return Launcher.createIoLauncher(localService, remoteInterface, Channels.newInputStream(socketChannel), Channels.newOutputStream(socketChannel), executorService, wrapper); + } +} diff --git a/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeSetup.java b/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeSetup.java new file mode 100644 index 0000000..a22f473 --- /dev/null +++ b/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeSetup.java @@ -0,0 +1,25 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + +package hu.bme.mit.semantifyr.oxsts.lang.ide; + +import com.google.inject.Guice; +import com.google.inject.Injector; +import hu.bme.mit.semantifyr.oxsts.lang.OxstsRuntimeModule; +import hu.bme.mit.semantifyr.oxsts.lang.OxstsStandaloneSetup; +import org.eclipse.xtext.util.Modules2; + +/** + * Initialization support for running Xtext languages as language servers. + */ +public class OxstsIdeSetup extends OxstsStandaloneSetup { + + @Override + public Injector createInjector() { + return Guice.createInjector(Modules2.mixin(new OxstsRuntimeModule(), new OxstsIdeModule())); + } + +} diff --git a/subprojects/oxsts.lang.ide/src/main/resources/log4j2.properties b/subprojects/oxsts.lang.ide/src/main/resources/log4j2.properties new file mode 100644 index 0000000..95f781f --- /dev/null +++ b/subprojects/oxsts.lang.ide/src/main/resources/log4j2.properties @@ -0,0 +1,8 @@ +# The root logger with appender name +rootLogger = TRACE, STDOUT + +# Assign STDOUT a valid appender & define its layout +appender.console.name = STDOUT +appender.console.type = Console +appender.console.layout.type = PatternLayout +appender.console.layout.pattern = [%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n diff --git a/subprojects/oxsts.lang/build.gradle.kts b/subprojects/oxsts.lang/build.gradle.kts index 1e015a1..932a597 100644 --- a/subprojects/oxsts.lang/build.gradle.kts +++ b/subprojects/oxsts.lang/build.gradle.kts @@ -37,7 +37,8 @@ val generateXtextLanguage by tasks.registering(JavaExec::class) { outputs.dir("src/main/xtext-gen") outputs.dir("src/testFixtures/xtext-gen") - outputs.dir(layout.buildDirectory.dir("generated/sources/xtext/ide")) + outputs.dir(project(":oxsts.lang.ide").layout.projectDirectory.dir("src/main/xtext-gen")) + outputs.dir(project(":oxsts.lang.ide").layout.projectDirectory.dir("src/main/java")) args("src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2", "-p", "rootPath=/$projectDir/..") } diff --git a/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2 b/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2 index 6b6394e..a2ca4d0 100644 --- a/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2 +++ b/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2 @@ -28,8 +28,7 @@ Workflow { } genericIde = { enabled = true - root = null - srcGen = "${rootPath}/oxsts.lang/build/generated/sources/xtext/ide" + root = "${rootPath}/oxsts.lang.ide" } mavenLayout = true } From d179c16c8278139816fa73f6dcc3157390fc9ba3 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Fri, 4 Oct 2024 22:27:53 +0200 Subject: [PATCH 02/36] #13 Added LSP Server --- subprojects/oxsts-vs-code/build.gradle.kts | 7 ++- subprojects/oxsts-vs-code/package-lock.json | 57 +++++++++++++++++- subprojects/oxsts-vs-code/package.json | 11 ++++ subprojects/oxsts-vs-code/src/extension.ts | 59 ++++++++++++------- subprojects/oxsts.lang.ide/build.gradle.kts | 8 +++ .../oxsts/lang/ide/OxstsIdeModule.java | 51 +++------------- .../oxsts/lang/ide/OxstsIdeSetup.java | 23 +++++++- .../src/main/resources/log4j2.properties | 8 --- .../src/main/resources/plugin.properties | 5 ++ 9 files changed, 152 insertions(+), 77 deletions(-) delete mode 100644 subprojects/oxsts.lang.ide/src/main/resources/log4j2.properties create mode 100644 subprojects/oxsts.lang.ide/src/main/resources/plugin.properties diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/oxsts-vs-code/build.gradle.kts index 84f177e..7e957f9 100644 --- a/subprojects/oxsts-vs-code/build.gradle.kts +++ b/subprojects/oxsts-vs-code/build.gradle.kts @@ -1,6 +1,4 @@ -import com.github.gradle.node.exec.ExecRunner import com.github.gradle.node.npm.task.NpmTask -import com.github.gradle.node.task.NodeTask import org.apache.tools.ant.taskdefs.condition.Os plugins { @@ -15,6 +13,9 @@ dependencies { } val cloneIde by tasks.registering(Sync::class) { + dependsOn(distribution) + inputs.file(distribution.singleFile) + from(tarTree(distribution.singleFile)) into("bin") } @@ -38,8 +39,10 @@ tasks { } val packageExtension by registering(Exec::class) { + inputs.files(cloneIde.get().outputs) inputs.files(compile.get().outputs) inputs.file("node_modules/.bin/vsce.cmd") + outputs.dir(project.layout.buildDirectory.dir("vscode")) if (Os.isFamily(Os.FAMILY_WINDOWS)) { diff --git a/subprojects/oxsts-vs-code/package-lock.json b/subprojects/oxsts-vs-code/package-lock.json index d5d3b6b..fd6a407 100644 --- a/subprojects/oxsts-vs-code/package-lock.json +++ b/subprojects/oxsts-vs-code/package-lock.json @@ -7,6 +7,9 @@ "": { "name": "semantifyr", "version": "0.0.1", + "dependencies": { + "vscode-languageclient": "^9.0.1" + }, "devDependencies": { "@types/mocha": "^10.0.8", "@types/node": "20.x", @@ -1204,7 +1207,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, "license": "MIT" }, "node_modules/base64-js": { @@ -1279,7 +1281,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" @@ -5110,7 +5111,6 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -6258,6 +6258,57 @@ "node": ">=4.0.0" } }, + "node_modules/vscode-jsonrpc": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz", + "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/vscode-languageclient": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-9.0.1.tgz", + "integrity": "sha512-JZiimVdvimEuHh5olxhxkht09m3JzUGwggb5eRUkzzJhZ2KjCN0nh55VfiED9oez9DyF8/fz1g1iBV3h+0Z2EA==", + "license": "MIT", + "dependencies": { + "minimatch": "^5.1.0", + "semver": "^7.3.7", + "vscode-languageserver-protocol": "3.17.5" + }, + "engines": { + "vscode": "^1.82.0" + } + }, + "node_modules/vscode-languageclient/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/vscode-languageserver-protocol": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz", + "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==", + "license": "MIT", + "dependencies": { + "vscode-jsonrpc": "8.2.0", + "vscode-languageserver-types": "3.17.5" + } + }, + "node_modules/vscode-languageserver-types": { + "version": "3.17.5", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", + "license": "MIT" + }, "node_modules/whatwg-encoding": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", diff --git a/subprojects/oxsts-vs-code/package.json b/subprojects/oxsts-vs-code/package.json index aaa8309..0b28676 100644 --- a/subprojects/oxsts-vs-code/package.json +++ b/subprojects/oxsts-vs-code/package.json @@ -17,6 +17,14 @@ "command": "semantifyr.helloWorld", "title": "Hello World" } + ], + "languages": [ + { + "id": "oxsts", + "extensions": [".oxsts"], + "aliases": ["OXSTS"], + "configuration": "./oxsts-configuration.json" + } ] }, "scripts": { @@ -46,5 +54,8 @@ "npm-run-all": "^4.1.5", "typescript": "^5.6.2", "vsce": "^2.15.0" + }, + "dependencies": { + "vscode-languageclient": "^9.0.1" } } diff --git a/subprojects/oxsts-vs-code/src/extension.ts b/subprojects/oxsts-vs-code/src/extension.ts index f514d44..cbe6c0d 100644 --- a/subprojects/oxsts-vs-code/src/extension.ts +++ b/subprojects/oxsts-vs-code/src/extension.ts @@ -1,26 +1,45 @@ -// The module 'vscode' contains the VS Code extensibility API -// Import the module and reference it with the alias vscode in your code below -import * as vscode from 'vscode'; +import * as path from 'path'; +import { LanguageClient, LanguageClientOptions, ServerOptions } from 'vscode-languageclient/node'; +import { workspace, ExtensionContext } from 'vscode'; +import { Trace } from 'vscode-jsonrpc'; -// This method is called when your extension is activated -// Your extension is activated the very first time the command is executed -export function activate(context: vscode.ExtensionContext) { +let client: LanguageClient; - // Use the console to output diagnostic information (console.log) and errors (console.error) - // This line of code will only be executed once when your extension is activated - console.log('Congratulations, your extension "semantifyr" is now active!'); +export function activate(context: ExtensionContext) { + const serverModule = path.join(context.extensionPath, 'bin', 'oxsts.lang.ide', 'bin', 'oxsts.lang.ide.bat'); + + let serverOptions: ServerOptions = { + run : { command: 'cmd', args: ['/c', serverModule] }, + debug: { command: 'cmd', args: ['/c', serverModule], options: { env: createDebugEnv() } } + }; - // The command has been defined in the package.json file - // Now provide the implementation of the command with registerCommand - // The commandId parameter must match the command field in package.json - const disposable = vscode.commands.registerCommand('semantifyr.helloWorld', () => { - // The code you place here will be executed every time your command is executed - // Display a message box to the user - vscode.window.showInformationMessage('Hello World from Semantifyr!'); - }); + const clientOptions: LanguageClientOptions = { + documentSelector: [{ scheme: 'file', language: 'oxsts' }], + synchronize: { + fileEvents: workspace.createFileSystemWatcher('**/.oxsts') + } + }; - context.subscriptions.push(disposable); + client = new LanguageClient( + 'oxstsLSP', + 'OXSTS Language Server', + serverOptions, + clientOptions + ); + + client.setTrace(Trace.Verbose); + client.start(); +} + +export function deactivate() { + if (!client) { + return undefined; + } + return client.stop(); } -// This method is called when your extension is deactivated -export function deactivate() {} +function createDebugEnv() { + return Object.assign({ + JAVA_OPTS:"-Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n,quiet=y" + }, process.env); +} diff --git a/subprojects/oxsts.lang.ide/build.gradle.kts b/subprojects/oxsts.lang.ide/build.gradle.kts index 4f1eaa2..b85634c 100644 --- a/subprojects/oxsts.lang.ide/build.gradle.kts +++ b/subprojects/oxsts.lang.ide/build.gradle.kts @@ -15,9 +15,17 @@ artifacts { add(distributionOutput.name, tasks.distTar) } +tasks.clean { + delete("src/main/xtext-gen") +} + dependencies { api(project(":oxsts.lang")) implementation(libs.xtext.ide) runtimeOnly(libs.slf4j.log4j) } + +application { + mainClass = "hu.bme.mit.semantifyr.oxsts.lang.ide.OxstsIdeSetup" +} diff --git a/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeModule.java b/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeModule.java index 071fcea..ff523b0 100644 --- a/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeModule.java +++ b/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeModule.java @@ -6,54 +6,19 @@ package hu.bme.mit.semantifyr.oxsts.lang.ide; -import com.google.inject.Guice; -import com.google.inject.Injector; -import org.eclipse.lsp4j.jsonrpc.Launcher; -import org.eclipse.lsp4j.jsonrpc.MessageConsumer; -import org.eclipse.lsp4j.services.LanguageClient; -import org.eclipse.xtext.ide.server.LanguageServerImpl; -import org.eclipse.xtext.ide.server.ServerModule; - -import java.io.IOException; -import java.net.InetSocketAddress; -import java.net.SocketAddress; -import java.nio.channels.AsynchronousServerSocketChannel; -import java.nio.channels.AsynchronousSocketChannel; -import java.nio.channels.Channels; -import java.util.concurrent.ExecutionException; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; -import java.util.concurrent.Future; -import java.util.function.Function; +import com.google.inject.Binder; +import org.eclipse.xtext.ide.server.*; /** * Use this class to register ide components. */ public class OxstsIdeModule extends AbstractOxstsIdeModule { - public static void main(final String[] args) throws IOException, InterruptedException, ExecutionException { - Injector injector = Guice.createInjector(new ServerModule()); - LanguageServerImpl languageServer = injector.getInstance(LanguageServerImpl.class); - Function wrapper = consumer -> { - MessageConsumer result = message -> { - System.out.println(message); - consumer.consume(message); - }; - return result; - }; - Launcher launcher = createSocketLauncher(languageServer, LanguageClient.class, new InetSocketAddress("localhost", 5007), Executors.newCachedThreadPool(), wrapper); - languageServer.connect(launcher.getRemoteProxy()); - Future future = launcher.startListening(); - while (!future.isDone()) { - System.out.println("Waiting"); - Thread.sleep(10_000l); - } - System.out.println("Done"); - System.exit(0); - } + @Override + public void configure(Binder binder) { + super.configure(binder); - static Launcher createSocketLauncher(Object localService, Class remoteInterface, SocketAddress socketAddress, ExecutorService executorService, Function wrapper) throws IOException, ExecutionException, InterruptedException { - AsynchronousServerSocketChannel serverSocket = AsynchronousServerSocketChannel.open().bind(socketAddress); - AsynchronousSocketChannel socketChannel = serverSocket.accept().get(); - return Launcher.createIoLauncher(localService, remoteInterface, Channels.newInputStream(socketChannel), Channels.newOutputStream(socketChannel), executorService, wrapper); + // Bind the required interfaces to their implementations + binder.bind(IProjectDescriptionFactory.class).to(DefaultProjectDescriptionFactory.class); + binder.bind(IMultiRootWorkspaceConfigFactory.class).to(MultiRootWorkspaceConfigFactory.class); } } diff --git a/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeSetup.java b/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeSetup.java index a22f473..3cc1c5d 100644 --- a/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeSetup.java +++ b/subprojects/oxsts.lang.ide/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/ide/OxstsIdeSetup.java @@ -10,8 +10,17 @@ import com.google.inject.Injector; import hu.bme.mit.semantifyr.oxsts.lang.OxstsRuntimeModule; import hu.bme.mit.semantifyr.oxsts.lang.OxstsStandaloneSetup; +import hu.bme.mit.semantifyr.oxsts.model.oxsts.OxstsPackage; +import org.eclipse.lsp4j.jsonrpc.Launcher; +import org.eclipse.lsp4j.services.LanguageClient; +import org.eclipse.xtext.ide.server.LanguageServerImpl; +import org.eclipse.xtext.ide.server.ServerModule; import org.eclipse.xtext.util.Modules2; +import java.io.*; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.Future; + /** * Initialization support for running Xtext languages as language servers. */ @@ -21,5 +30,17 @@ public class OxstsIdeSetup extends OxstsStandaloneSetup { public Injector createInjector() { return Guice.createInjector(Modules2.mixin(new OxstsRuntimeModule(), new OxstsIdeModule())); } - + + public static void main(String[] args) throws InterruptedException, IOException, ExecutionException { + OxstsIdeSetup.doSetup(); + OxstsPackage.eINSTANCE.getName(); + + Injector injector = Guice.createInjector(new ServerModule()); + LanguageServerImpl languageServer = injector.getInstance(LanguageServerImpl.class); + + Launcher launcher = Launcher.createLauncher(languageServer, LanguageClient.class, System.in, System.out); + languageServer.connect(launcher.getRemoteProxy()); + launcher.startListening().get(); + } + } diff --git a/subprojects/oxsts.lang.ide/src/main/resources/log4j2.properties b/subprojects/oxsts.lang.ide/src/main/resources/log4j2.properties deleted file mode 100644 index 95f781f..0000000 --- a/subprojects/oxsts.lang.ide/src/main/resources/log4j2.properties +++ /dev/null @@ -1,8 +0,0 @@ -# The root logger with appender name -rootLogger = TRACE, STDOUT - -# Assign STDOUT a valid appender & define its layout -appender.console.name = STDOUT -appender.console.type = Console -appender.console.layout.type = PatternLayout -appender.console.layout.pattern = [%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n diff --git a/subprojects/oxsts.lang.ide/src/main/resources/plugin.properties b/subprojects/oxsts.lang.ide/src/main/resources/plugin.properties new file mode 100644 index 0000000..c0f2617 --- /dev/null +++ b/subprojects/oxsts.lang.ide/src/main/resources/plugin.properties @@ -0,0 +1,5 @@ +# SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors +# +# SPDX-License-Identifier: EPL-2.0 + +_UI_DiagnosticRoot_diagnostic=Specified, so the LSP server functions correctly From b2bc256a018720e34ee0deb60ad87ad04a8903c5 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Fri, 4 Oct 2024 22:34:11 +0200 Subject: [PATCH 03/36] #13 Added node_modules to task inputs --- subprojects/oxsts-vs-code/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/oxsts-vs-code/build.gradle.kts index 7e957f9..25afbc7 100644 --- a/subprojects/oxsts-vs-code/build.gradle.kts +++ b/subprojects/oxsts-vs-code/build.gradle.kts @@ -27,6 +27,7 @@ tasks.clean { tasks { val compile by registering(NpmTask::class) { dependsOn(npmInstall) + inputs.files("node_modules") npmCommand.set( listOf( @@ -41,7 +42,7 @@ tasks { val packageExtension by registering(Exec::class) { inputs.files(cloneIde.get().outputs) inputs.files(compile.get().outputs) - inputs.file("node_modules/.bin/vsce.cmd") + inputs.files("node_modules") outputs.dir(project.layout.buildDirectory.dir("vscode")) From f2b7c30b27c0eb648ed598a60e64ff67b728cbfc Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 09:12:08 +0200 Subject: [PATCH 04/36] #13 Added .vscode to repository --- subprojects/oxsts-vs-code/.gitignore | 2 - .../oxsts-vs-code/.vscode/extensions.json | 5 ++ subprojects/oxsts-vs-code/.vscode/launch.json | 21 ++++++ .../oxsts-vs-code/.vscode/settings.json | 13 ++++ subprojects/oxsts-vs-code/.vscode/tasks.json | 64 +++++++++++++++++++ 5 files changed, 103 insertions(+), 2 deletions(-) create mode 100644 subprojects/oxsts-vs-code/.vscode/extensions.json create mode 100644 subprojects/oxsts-vs-code/.vscode/launch.json create mode 100644 subprojects/oxsts-vs-code/.vscode/settings.json create mode 100644 subprojects/oxsts-vs-code/.vscode/tasks.json diff --git a/subprojects/oxsts-vs-code/.gitignore b/subprojects/oxsts-vs-code/.gitignore index 92aec19..09a1eae 100644 --- a/subprojects/oxsts-vs-code/.gitignore +++ b/subprojects/oxsts-vs-code/.gitignore @@ -1,6 +1,4 @@ /node_modules/ /dist/ /bin/ -/.vscode/ -/.vscode-test/ /out/ diff --git a/subprojects/oxsts-vs-code/.vscode/extensions.json b/subprojects/oxsts-vs-code/.vscode/extensions.json new file mode 100644 index 0000000..d7a3ca1 --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": ["dbaeumer.vscode-eslint", "connor4312.esbuild-problem-matchers", "ms-vscode.extension-test-runner"] +} diff --git a/subprojects/oxsts-vs-code/.vscode/launch.json b/subprojects/oxsts-vs-code/.vscode/launch.json new file mode 100644 index 0000000..c42edc0 --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode/launch.json @@ -0,0 +1,21 @@ +// A launch configuration that compiles the extension and then opens it inside a new window +// Use IntelliSense to learn about possible attributes. +// Hover to view descriptions of existing attributes. +// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Run Extension", + "type": "extensionHost", + "request": "launch", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ], + "outFiles": [ + "${workspaceFolder}/dist/**/*.js" + ], + "preLaunchTask": "${defaultBuildTask}" + } + ] +} diff --git a/subprojects/oxsts-vs-code/.vscode/settings.json b/subprojects/oxsts-vs-code/.vscode/settings.json new file mode 100644 index 0000000..5c5ac48 --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode/settings.json @@ -0,0 +1,13 @@ +// Place your settings in this file to overwrite default and user settings. +{ + "files.exclude": { + "out": false, // set this to true to hide the "out" folder with the compiled JS files + "dist": false // set this to true to hide the "dist" folder with the compiled JS files + }, + "search.exclude": { + "out": true, // set this to false to include "out" folder in search results + "dist": true // set this to false to include "dist" folder in search results + }, + // Turn off tsc task auto detection since we have the necessary tasks as npm scripts + "typescript.tsc.autoDetect": "off" +} \ No newline at end of file diff --git a/subprojects/oxsts-vs-code/.vscode/tasks.json b/subprojects/oxsts-vs-code/.vscode/tasks.json new file mode 100644 index 0000000..3cf99c3 --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode/tasks.json @@ -0,0 +1,64 @@ +// See https://go.microsoft.com/fwlink/?LinkId=733558 +// for the documentation about the tasks.json format +{ + "version": "2.0.0", + "tasks": [ + { + "label": "watch", + "dependsOn": [ + "npm: watch:tsc", + "npm: watch:esbuild" + ], + "presentation": { + "reveal": "never" + }, + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "type": "npm", + "script": "watch:esbuild", + "group": "build", + "problemMatcher": "$esbuild-watch", + "isBackground": true, + "label": "npm: watch:esbuild", + "presentation": { + "group": "watch", + "reveal": "never" + } + }, + { + "type": "npm", + "script": "watch:tsc", + "group": "build", + "problemMatcher": "$tsc-watch", + "isBackground": true, + "label": "npm: watch:tsc", + "presentation": { + "group": "watch", + "reveal": "never" + } + }, + { + "type": "npm", + "script": "watch-tests", + "problemMatcher": "$tsc-watch", + "isBackground": true, + "presentation": { + "reveal": "never", + "group": "watchers" + }, + "group": "build" + }, + { + "label": "tasks: watch-tests", + "dependsOn": [ + "npm: watch", + "npm: watch-tests" + ], + "problemMatcher": [] + } + ] +} From b06c487041d7defa0c60486750133bef6949eeae Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 11:50:52 +0200 Subject: [PATCH 05/36] #13 Extracted generated IDE code to a separate task --- subprojects/oxsts-vs-code/build.gradle.kts | 34 +++++++++-------- subprojects/oxsts.lang.ide/build.gradle.kts | 37 +++++++++++++++---- subprojects/oxsts.lang/build.gradle.kts | 15 ++++++-- .../semantifyr/oxsts/lang/GenerateOxsts.mwe2 | 3 +- 4 files changed, 63 insertions(+), 26 deletions(-) diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/oxsts-vs-code/build.gradle.kts index 25afbc7..b2cbfc8 100644 --- a/subprojects/oxsts-vs-code/build.gradle.kts +++ b/subprojects/oxsts-vs-code/build.gradle.kts @@ -6,28 +6,28 @@ plugins { alias(libs.plugins.gradle.node) } -val distribution by configurations.creating +val distributionClasspath by configurations.creating { + isCanBeConsumed = false + isCanBeResolved = true +} dependencies { - distribution(project(":oxsts.lang.ide", configuration = "distributionOutput")) + distributionClasspath(project(":oxsts.lang.ide", configuration = "distributionOutput")) } -val cloneIde by tasks.registering(Sync::class) { - dependsOn(distribution) - inputs.file(distribution.singleFile) +val cloneDistribution by tasks.registering(Sync::class) { + inputs.files(distributionClasspath) - from(tarTree(distribution.singleFile)) - into("bin") -} + from (distributionClasspath.map { + tarTree(it) + }) -tasks.clean { - delete("dist") + into("bin") } tasks { val compile by registering(NpmTask::class) { - dependsOn(npmInstall) - inputs.files("node_modules") + inputs.files(npmInstall.get().outputs) npmCommand.set( listOf( @@ -40,9 +40,9 @@ tasks { } val packageExtension by registering(Exec::class) { - inputs.files(cloneIde.get().outputs) + inputs.files(cloneDistribution.get().outputs) inputs.files(compile.get().outputs) - inputs.files("node_modules") + inputs.dir("node_modules") outputs.dir(project.layout.buildDirectory.dir("vscode")) @@ -65,6 +65,10 @@ tasks { } assemble { - dependsOn(packageExtension) + inputs.files(packageExtension.get().outputs) + } + + clean { + delete("dist") } } diff --git a/subprojects/oxsts.lang.ide/build.gradle.kts b/subprojects/oxsts.lang.ide/build.gradle.kts index b85634c..e68ca22 100644 --- a/subprojects/oxsts.lang.ide/build.gradle.kts +++ b/subprojects/oxsts.lang.ide/build.gradle.kts @@ -9,21 +9,44 @@ plugins { id("hu.bme.mit.semantifyr.gradle.conventions.application") } -val distributionOutput by configurations.creating +val ideGeneratedClasspath by configurations.creating { + isCanBeConsumed = false + isCanBeResolved = true +} + +dependencies { + api(project(":oxsts.lang")) + + implementation(libs.xtext.ide) + runtimeOnly(libs.slf4j.log4j) + + ideGeneratedClasspath(project(":oxsts.lang", configuration = "ideGeneratedOutput")) +} + +val distributionOutput by configurations.creating { + isCanBeConsumed = true + isCanBeResolved = false +} artifacts { add(distributionOutput.name, tasks.distTar) } -tasks.clean { - delete("src/main/xtext-gen") +val cloneIdeGenerated by tasks.registering(Sync::class) { + inputs.files(ideGeneratedClasspath) + + from(ideGeneratedClasspath.asFileTree) + into("src/main/xtext-gen") } -dependencies { - api(project(":oxsts.lang")) +listOf("compileJava", "processResources").forEach { task -> + tasks.named(task) { + inputs.files(cloneIdeGenerated.get().outputs) + } +} - implementation(libs.xtext.ide) - runtimeOnly(libs.slf4j.log4j) +tasks.clean { + delete("src/main/xtext-gen") } application { diff --git a/subprojects/oxsts.lang/build.gradle.kts b/subprojects/oxsts.lang/build.gradle.kts index 932a597..1738404 100644 --- a/subprojects/oxsts.lang/build.gradle.kts +++ b/subprojects/oxsts.lang/build.gradle.kts @@ -31,18 +31,27 @@ val generateXtextLanguage by tasks.registering(JavaExec::class) { classpath(configurations.mwe2) inputs.files(syncModel.get().outputs) - inputs.file("src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2") inputs.file("src/main/java/hu/bme/mit/semantifyr/oxsts/lang/Oxsts.xtext") outputs.dir("src/main/xtext-gen") outputs.dir("src/testFixtures/xtext-gen") - outputs.dir(project(":oxsts.lang.ide").layout.projectDirectory.dir("src/main/xtext-gen")) - outputs.dir(project(":oxsts.lang.ide").layout.projectDirectory.dir("src/main/java")) + outputs.dir(layout.buildDirectory.dir("generated/sources/xtext/ide")) args("src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2", "-p", "rootPath=/$projectDir/..") } +val ideGeneratedOutput by configurations.creating { + isCanBeConsumed = true + isCanBeResolved = false +} + +artifacts { + add(ideGeneratedOutput.name, layout.buildDirectory.dir("generated/sources/xtext/ide")) { + builtBy(generateXtextLanguage) + } +} + tasks { jar { from(sourceSets.main.map { it.allSource }) { diff --git a/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2 b/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2 index a2ca4d0..6b6394e 100644 --- a/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2 +++ b/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/GenerateOxsts.mwe2 @@ -28,7 +28,8 @@ Workflow { } genericIde = { enabled = true - root = "${rootPath}/oxsts.lang.ide" + root = null + srcGen = "${rootPath}/oxsts.lang/build/generated/sources/xtext/ide" } mavenLayout = true } From 89731af9754083a41d7473d2a3e4868821012dfe Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 11:53:54 +0200 Subject: [PATCH 06/36] #13 Added license headers --- subprojects/oxsts-vs-code/.gitignore | 4 ++++ subprojects/oxsts-vs-code/.vscode-test.mjs | 6 ++++++ subprojects/oxsts-vs-code/.vscode/extensions.json | 2 -- .../oxsts-vs-code/.vscode/extensions.json.license | 3 +++ subprojects/oxsts-vs-code/.vscode/launch.json | 4 ---- .../oxsts-vs-code/.vscode/launch.json.license | 3 +++ subprojects/oxsts-vs-code/.vscode/settings.json | 12 +++++------- .../oxsts-vs-code/.vscode/settings.json.license | 3 +++ subprojects/oxsts-vs-code/.vscode/tasks.json | 2 -- subprojects/oxsts-vs-code/.vscode/tasks.json.license | 3 +++ subprojects/oxsts-vs-code/.vscodeignore | 4 ++++ subprojects/oxsts-vs-code/build.gradle.kts | 7 +++++++ subprojects/oxsts-vs-code/esbuild.js | 6 ++++++ subprojects/oxsts-vs-code/eslint.config.mjs | 8 +++++++- subprojects/oxsts-vs-code/package-lock.json.license | 3 +++ subprojects/oxsts-vs-code/package.json.license | 3 +++ subprojects/oxsts-vs-code/src/extension.ts | 6 ++++++ subprojects/oxsts-vs-code/src/test/extension.test.ts | 6 ++++++ subprojects/oxsts-vs-code/tsconfig.json.license | 3 +++ 19 files changed, 72 insertions(+), 16 deletions(-) create mode 100644 subprojects/oxsts-vs-code/.vscode/extensions.json.license create mode 100644 subprojects/oxsts-vs-code/.vscode/launch.json.license create mode 100644 subprojects/oxsts-vs-code/.vscode/settings.json.license create mode 100644 subprojects/oxsts-vs-code/.vscode/tasks.json.license create mode 100644 subprojects/oxsts-vs-code/package-lock.json.license create mode 100644 subprojects/oxsts-vs-code/package.json.license create mode 100644 subprojects/oxsts-vs-code/tsconfig.json.license diff --git a/subprojects/oxsts-vs-code/.gitignore b/subprojects/oxsts-vs-code/.gitignore index 09a1eae..afbb6f3 100644 --- a/subprojects/oxsts-vs-code/.gitignore +++ b/subprojects/oxsts-vs-code/.gitignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors +# +# SPDX-License-Identifier: EPL-2.0 + /node_modules/ /dist/ /bin/ diff --git a/subprojects/oxsts-vs-code/.vscode-test.mjs b/subprojects/oxsts-vs-code/.vscode-test.mjs index b62ba25..45156f7 100644 --- a/subprojects/oxsts-vs-code/.vscode-test.mjs +++ b/subprojects/oxsts-vs-code/.vscode-test.mjs @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + import { defineConfig } from '@vscode/test-cli'; export default defineConfig({ diff --git a/subprojects/oxsts-vs-code/.vscode/extensions.json b/subprojects/oxsts-vs-code/.vscode/extensions.json index d7a3ca1..adcbfcd 100644 --- a/subprojects/oxsts-vs-code/.vscode/extensions.json +++ b/subprojects/oxsts-vs-code/.vscode/extensions.json @@ -1,5 +1,3 @@ { - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format "recommendations": ["dbaeumer.vscode-eslint", "connor4312.esbuild-problem-matchers", "ms-vscode.extension-test-runner"] } diff --git a/subprojects/oxsts-vs-code/.vscode/extensions.json.license b/subprojects/oxsts-vs-code/.vscode/extensions.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode/extensions.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 diff --git a/subprojects/oxsts-vs-code/.vscode/launch.json b/subprojects/oxsts-vs-code/.vscode/launch.json index c42edc0..81b773f 100644 --- a/subprojects/oxsts-vs-code/.vscode/launch.json +++ b/subprojects/oxsts-vs-code/.vscode/launch.json @@ -1,7 +1,3 @@ -// A launch configuration that compiles the extension and then opens it inside a new window -// Use IntelliSense to learn about possible attributes. -// Hover to view descriptions of existing attributes. -// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 { "version": "0.2.0", "configurations": [ diff --git a/subprojects/oxsts-vs-code/.vscode/launch.json.license b/subprojects/oxsts-vs-code/.vscode/launch.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode/launch.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 diff --git a/subprojects/oxsts-vs-code/.vscode/settings.json b/subprojects/oxsts-vs-code/.vscode/settings.json index 5c5ac48..508f2a9 100644 --- a/subprojects/oxsts-vs-code/.vscode/settings.json +++ b/subprojects/oxsts-vs-code/.vscode/settings.json @@ -1,13 +1,11 @@ -// Place your settings in this file to overwrite default and user settings. { "files.exclude": { - "out": false, // set this to true to hide the "out" folder with the compiled JS files - "dist": false // set this to true to hide the "dist" folder with the compiled JS files + "out": false, + "dist": false }, "search.exclude": { - "out": true, // set this to false to include "out" folder in search results - "dist": true // set this to false to include "dist" folder in search results + "out": true, + "dist": true }, - // Turn off tsc task auto detection since we have the necessary tasks as npm scripts "typescript.tsc.autoDetect": "off" -} \ No newline at end of file +} diff --git a/subprojects/oxsts-vs-code/.vscode/settings.json.license b/subprojects/oxsts-vs-code/.vscode/settings.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode/settings.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 diff --git a/subprojects/oxsts-vs-code/.vscode/tasks.json b/subprojects/oxsts-vs-code/.vscode/tasks.json index 3cf99c3..86b2d43 100644 --- a/subprojects/oxsts-vs-code/.vscode/tasks.json +++ b/subprojects/oxsts-vs-code/.vscode/tasks.json @@ -1,5 +1,3 @@ -// See https://go.microsoft.com/fwlink/?LinkId=733558 -// for the documentation about the tasks.json format { "version": "2.0.0", "tasks": [ diff --git a/subprojects/oxsts-vs-code/.vscode/tasks.json.license b/subprojects/oxsts-vs-code/.vscode/tasks.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/.vscode/tasks.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 diff --git a/subprojects/oxsts-vs-code/.vscodeignore b/subprojects/oxsts-vs-code/.vscodeignore index 159277f..d818e2c 100644 --- a/subprojects/oxsts-vs-code/.vscodeignore +++ b/subprojects/oxsts-vs-code/.vscodeignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors +# +# SPDX-License-Identifier: EPL-2.0 + .vscode/** .vscode-test/** out/** diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/oxsts-vs-code/build.gradle.kts index b2cbfc8..1de23bb 100644 --- a/subprojects/oxsts-vs-code/build.gradle.kts +++ b/subprojects/oxsts-vs-code/build.gradle.kts @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + import com.github.gradle.node.npm.task.NpmTask import org.apache.tools.ant.taskdefs.condition.Os @@ -57,6 +63,7 @@ tasks { } else { commandLine( "sh", + "-c", "node_modules/.bin/vsce", "package", "--out", project.layout.buildDirectory.dir("vscode").get().asFile.absolutePath, diff --git a/subprojects/oxsts-vs-code/esbuild.js b/subprojects/oxsts-vs-code/esbuild.js index cc2be59..1081901 100644 --- a/subprojects/oxsts-vs-code/esbuild.js +++ b/subprojects/oxsts-vs-code/esbuild.js @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + const esbuild = require("esbuild"); const production = process.argv.includes('--production'); diff --git a/subprojects/oxsts-vs-code/eslint.config.mjs b/subprojects/oxsts-vs-code/eslint.config.mjs index d5c0b53..e07e901 100644 --- a/subprojects/oxsts-vs-code/eslint.config.mjs +++ b/subprojects/oxsts-vs-code/eslint.config.mjs @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + import typescriptEslint from "@typescript-eslint/eslint-plugin"; import tsParser from "@typescript-eslint/parser"; @@ -25,4 +31,4 @@ export default [{ "no-throw-literal": "warn", semi: "warn", }, -}]; \ No newline at end of file +}]; diff --git a/subprojects/oxsts-vs-code/package-lock.json.license b/subprojects/oxsts-vs-code/package-lock.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/package-lock.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 diff --git a/subprojects/oxsts-vs-code/package.json.license b/subprojects/oxsts-vs-code/package.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/package.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 diff --git a/subprojects/oxsts-vs-code/src/extension.ts b/subprojects/oxsts-vs-code/src/extension.ts index cbe6c0d..df2f546 100644 --- a/subprojects/oxsts-vs-code/src/extension.ts +++ b/subprojects/oxsts-vs-code/src/extension.ts @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + import * as path from 'path'; import { LanguageClient, LanguageClientOptions, ServerOptions } from 'vscode-languageclient/node'; import { workspace, ExtensionContext } from 'vscode'; diff --git a/subprojects/oxsts-vs-code/src/test/extension.test.ts b/subprojects/oxsts-vs-code/src/test/extension.test.ts index 4ca0ab4..959a17f 100644 --- a/subprojects/oxsts-vs-code/src/test/extension.test.ts +++ b/subprojects/oxsts-vs-code/src/test/extension.test.ts @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + * + * SPDX-License-Identifier: EPL-2.0 + */ + import * as assert from 'assert'; // You can import and use all API from the 'vscode' module diff --git a/subprojects/oxsts-vs-code/tsconfig.json.license b/subprojects/oxsts-vs-code/tsconfig.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/tsconfig.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 From 10b412628959fa5bc554638e5df5efb072683cf1 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 11:54:22 +0200 Subject: [PATCH 07/36] #13 Added OXSTS language descriptor files --- .../oxsts-vs-code/language-configuration.json | 33 ++++++++ .../language-configuration.json.license | 3 + subprojects/oxsts-vs-code/package.json | 9 +- .../syntaxes/oxsts.tmLanguage.json | 84 +++++++++++++++++++ .../syntaxes/oxsts.tmLanguage.json.license | 3 + 5 files changed, 131 insertions(+), 1 deletion(-) create mode 100644 subprojects/oxsts-vs-code/language-configuration.json create mode 100644 subprojects/oxsts-vs-code/language-configuration.json.license create mode 100644 subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json create mode 100644 subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json.license diff --git a/subprojects/oxsts-vs-code/language-configuration.json b/subprojects/oxsts-vs-code/language-configuration.json new file mode 100644 index 0000000..d9aa3ca --- /dev/null +++ b/subprojects/oxsts-vs-code/language-configuration.json @@ -0,0 +1,33 @@ +{ + "comments": { + "lineComment": "//", + "blockComment": ["/*", "*/"] + }, + "brackets": [ + ["{", "}"], + ["(", ")"] + ], + "autoClosingPairs": [ + { "open": "{", "close": "}" }, + { "open": "[", "close": "]" }, + { "open": "(", "close": ")" }, + { "open": "/**", "close": " */", "notIn": ["string"] } + ], + "autoCloseBefore": ";:.,=}])>` \n\t", + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ], + "folding": { + "markers": { + "start": "^\\s*//\\s*#?region\\b", + "end": "^\\s*//\\s*#?endregion\\b" + } + }, + "wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\?\\s]+)", + "indentationRules": { + "increaseIndentPattern": "^((?!\\/\\/).)*(\\{[^}\"'`]*|\\([^)\"'`]*|\\[[^\\]\"'`]*)$", + "decreaseIndentPattern": "^((?!.*?\\/\\*).*\\*/)?\\s*[\\)\\}\\]].*$" + } + } \ No newline at end of file diff --git a/subprojects/oxsts-vs-code/language-configuration.json.license b/subprojects/oxsts-vs-code/language-configuration.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/language-configuration.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 diff --git a/subprojects/oxsts-vs-code/package.json b/subprojects/oxsts-vs-code/package.json index 0b28676..2b148ec 100644 --- a/subprojects/oxsts-vs-code/package.json +++ b/subprojects/oxsts-vs-code/package.json @@ -23,7 +23,14 @@ "id": "oxsts", "extensions": [".oxsts"], "aliases": ["OXSTS"], - "configuration": "./oxsts-configuration.json" + "configuration": "./language-configuration.json" + } + ], + "grammars": [ + { + "language": "oxsts", + "scopeName": "source.oxsts", + "path": "./syntaxes/oxsts.tmLanguage.json" } ] }, diff --git a/subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json b/subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json new file mode 100644 index 0000000..1a6abe2 --- /dev/null +++ b/subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json @@ -0,0 +1,84 @@ +{ + "scopeName": "source.oxsts", + "name": "Oxsts", + "patterns": [ + { + "include": "#keywords" + }, + { + "include": "#operators" + }, + { + "include": "#types" + }, + { + "include": "#literals" + }, + { + "include": "#comments" + } + ], + "repository": { + "keywords": { + "patterns": [ + { + "name": "keyword.control.oxsts", + "match": "\\b(abstract|package|or|import|enum|inline|seq|ctrl|as|assume|var|type|target|feature|containment|reference|derived|instance|association|pattern|init|havoc|tran|choice|if|else|find|virtual|override|prop)\\b" + } + ] + }, + "operators": { + "patterns": [ + { + "name": "keyword.operator.oxsts", + "match": "(==|!=|<=|>=|<|>|\\+|-|&&|\\|\\|)" + }, + { + "name": "keyword.operator.assignment.oxsts", + "match": ":=" + }, + { + "name": "keyword.operator.multiplicity.oxsts", + "match": "(\\[0\\.\\.1\\]|\\[1\\.\\.1\\]|\\[0\\.\\*\\]|\\[1\\.\\*\\])" + }, + { + "name": "keyword.operator.transitive.oxsts", + "match": "(\\+|\\*)" + } + ] + }, + "types": { + "patterns": [ + { + "name": "storage.type.oxsts", + "match": "\\b(Integer|Boolean|Self|Nothing)\\b" + } + ] + }, + "literals": { + "patterns": [ + { + "name": "constant.numeric.oxsts", + "match": "\\b\\d+\\b" + }, + { + "name": "constant.language.boolean.oxsts", + "match": "\\b(true|false)\\b" + } + ] + }, + "comments": { + "patterns": [ + { + "name": "comment.block.oxsts", + "begin": "/\\*", + "end": "\\*/" + }, + { + "name": "comment.line.double-slash.oxsts", + "match": "//.*$" + } + ] + } + } +} diff --git a/subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json.license b/subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json.license new file mode 100644 index 0000000..d2ab7bf --- /dev/null +++ b/subprojects/oxsts-vs-code/syntaxes/oxsts.tmLanguage.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023-2024 The Semantifyr Authors + +SPDX-License-Identifier: EPL-2.0 From 0008e9cffa3ad59b83553f870bf7806c21b312cc Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 11:54:36 +0200 Subject: [PATCH 08/36] #13 Removed quickstart.md --- subprojects/oxsts-vs-code/build.gradle.kts | 4 +- .../oxsts-vs-code/vsc-extension-quickstart.md | 48 ------------------- 2 files changed, 1 insertion(+), 51 deletions(-) delete mode 100644 subprojects/oxsts-vs-code/vsc-extension-quickstart.md diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/oxsts-vs-code/build.gradle.kts index 1de23bb..f8cb488 100644 --- a/subprojects/oxsts-vs-code/build.gradle.kts +++ b/subprojects/oxsts-vs-code/build.gradle.kts @@ -64,9 +64,7 @@ tasks { commandLine( "sh", "-c", - "node_modules/.bin/vsce", - "package", - "--out", project.layout.buildDirectory.dir("vscode").get().asFile.absolutePath, + "node_modules/.bin/vsce package --out " + project.layout.buildDirectory.dir("vscode").get().asFile.absolutePath, ) } } diff --git a/subprojects/oxsts-vs-code/vsc-extension-quickstart.md b/subprojects/oxsts-vs-code/vsc-extension-quickstart.md deleted file mode 100644 index f518bb8..0000000 --- a/subprojects/oxsts-vs-code/vsc-extension-quickstart.md +++ /dev/null @@ -1,48 +0,0 @@ -# Welcome to your VS Code Extension - -## What's in the folder - -* This folder contains all of the files necessary for your extension. -* `package.json` - this is the manifest file in which you declare your extension and command. - * 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. -* `src/extension.ts` - this is the main file where you will provide the implementation of your command. - * 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`. - * We pass the function containing the implementation of the command as the second parameter to `registerCommand`. - -## Setup - -* install the recommended extensions (amodio.tsl-problem-matcher, ms-vscode.extension-test-runner, and dbaeumer.vscode-eslint) - - -## Get up and running straight away - -* Press `F5` to open a new window with your extension loaded. -* Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`. -* Set breakpoints in your code inside `src/extension.ts` to debug your extension. -* Find output from your extension in the debug console. - -## Make changes - -* You can relaunch the extension from the debug toolbar after changing code in `src/extension.ts`. -* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes. - - -## Explore the API - -* You can open the full set of our API when you open the file `node_modules/@types/vscode/index.d.ts`. - -## Run tests - -* Install the [Extension Test Runner](https://marketplace.visualstudio.com/items?itemName=ms-vscode.extension-test-runner) -* Run the "watch" task via the **Tasks: Run Task** command. Make sure this is running, or tests might not be discovered. -* Open the Testing view from the activity bar and click the Run Test" button, or use the hotkey `Ctrl/Cmd + ; A` -* See the output of the test result in the Test Results view. -* Make changes to `src/test/extension.test.ts` or create new test files inside the `test` folder. - * The provided test runner will only consider files matching the name pattern `**.test.ts`. - * You can create folders inside the `test` folder to structure your tests any way you want. - -## Go further - -* Reduce the extension size and improve the startup time by [bundling your extension](https://code.visualstudio.com/api/working-with-extensions/bundling-extension). -* [Publish your extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) on the VS Code extension marketplace. -* Automate builds by setting up [Continuous Integration](https://code.visualstudio.com/api/working-with-extensions/continuous-integration). From 7d376917d0ffcfc50a105cdcdc969bfa1d0f1684 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 12:19:59 +0200 Subject: [PATCH 09/36] #13 Added NPM caching and vscode output to artifacts --- .github/workflows/build.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5877b9..018e8aa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,6 +25,8 @@ jobs: # if: ${{ matrix.os == 'macos-13' }} - name: Test Docker run: docker run hello-world + - name: Checkout code + uses: actions/checkout@v4 - name: Set up JDK uses: actions/setup-java@v4 with: @@ -32,8 +34,13 @@ jobs: distribution: adopt - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 - - name: Checkout code - uses: actions/checkout@v4 + - name: Cache npm dependencies + uses: actions/cache@v4 + with: + path: subprojects/oxsts-vs-code/node_modules + key: ${{ matrix.os }}-node-${{ hashFiles('subprojects/oxsts-vs-code/package-lock.json') }} + restore-keys: | + ${{ matrix.os }}-node- - name: Gradle build run: ./gradlew build - name: Upload Artifacts @@ -41,6 +48,7 @@ jobs: uses: actions/upload-artifact@v4 with: path: | + **/build/vscode/ **/build/distributions/ **/build/reports/ **/build/test-results/ From 6dd4fdfad7a41ac6af2a019aec766f72cdfe0043 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 13:05:23 +0200 Subject: [PATCH 10/36] #13 Swallow all validator exceptions so the LSP server does not terminate when an exception is thrown during validation. Usually exceptions are only thrown, when the model is not well-formed, which will either be a syntactical error (will be displayed on the client), or another validation rule will find it. In either case, we can safely ignore all exceptions. --- .../mit/semantifyr/oxsts/lang/validation/OxstsValidator.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/validation/OxstsValidator.java b/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/validation/OxstsValidator.java index c9c0169..d102d77 100644 --- a/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/validation/OxstsValidator.java +++ b/subprojects/oxsts.lang/src/main/java/hu/bme/mit/semantifyr/oxsts/lang/validation/OxstsValidator.java @@ -20,6 +20,11 @@ public class OxstsValidator extends AbstractOxstsValidator { public static final String INVALID_INLINING = "invalidInlining"; public static final String INVALID_MULTIPLICITIY = "invalidMultiplicity"; + @Override + protected void handleExceptionDuringValidation(Throwable targetException) throws RuntimeException { + // swallow all exceptions! + } + @Check public void checkFeatureSubsetting(Feature feature) { if (feature.getSubsets().isEmpty()) return; From 21ff0b1c732b9d3dfb5b154b8cfd7de298fe491e Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 20:22:21 +0200 Subject: [PATCH 11/36] #13 Fixed absolute file paths not working --- subprojects/compiler/src/main/kotlin/reader/OxstsReader.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/compiler/src/main/kotlin/reader/OxstsReader.kt b/subprojects/compiler/src/main/kotlin/reader/OxstsReader.kt index 97d543e..9a40de0 100644 --- a/subprojects/compiler/src/main/kotlin/reader/OxstsReader.kt +++ b/subprojects/compiler/src/main/kotlin/reader/OxstsReader.kt @@ -57,7 +57,7 @@ class OxstsReader( val inputFile = File(inputDirectory) for (file in inputFile.walkFiles().filter { it.extension == "oxsts" }) { - val resource = resourceSet.getResource(URI.createURI(file.path), true) + val resource = resourceSet.getResource(URI.createFileURI(file.path), true) resource.load(emptyMap()) userResources += resource } From 51fd92791d3ef6a79830503929624e92797fc65f Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 20:23:34 +0200 Subject: [PATCH 12/36] #13 Added compilation runtime config --- .run/EngineCliKt.run.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .run/EngineCliKt.run.xml diff --git a/.run/EngineCliKt.run.xml b/.run/EngineCliKt.run.xml new file mode 100644 index 0000000..fae2159 --- /dev/null +++ b/.run/EngineCliKt.run.xml @@ -0,0 +1,18 @@ + + + + + + From 0ad4ff8792afdfa0daa5c18a6a1d2c7f30234766 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 21:26:27 +0200 Subject: [PATCH 13/36] #13 Use installDist instead of distTar --- subprojects/oxsts-vs-code/build.gradle.kts | 2 +- subprojects/oxsts.lang.ide/build.gradle.kts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/oxsts-vs-code/build.gradle.kts index f8cb488..4ace3a0 100644 --- a/subprojects/oxsts-vs-code/build.gradle.kts +++ b/subprojects/oxsts-vs-code/build.gradle.kts @@ -25,7 +25,7 @@ val cloneDistribution by tasks.registering(Sync::class) { inputs.files(distributionClasspath) from (distributionClasspath.map { - tarTree(it) + fileTree(it) }) into("bin") diff --git a/subprojects/oxsts.lang.ide/build.gradle.kts b/subprojects/oxsts.lang.ide/build.gradle.kts index e68ca22..9fc5781 100644 --- a/subprojects/oxsts.lang.ide/build.gradle.kts +++ b/subprojects/oxsts.lang.ide/build.gradle.kts @@ -29,7 +29,9 @@ val distributionOutput by configurations.creating { } artifacts { - add(distributionOutput.name, tasks.distTar) + add(distributionOutput.name, layout.buildDirectory.dir("install")) { + builtBy(tasks.installDist) + } } val cloneIdeGenerated by tasks.registering(Sync::class) { From 28fc773a362081e8cf0a5e941e0f4b1114a84c68 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 21:27:01 +0200 Subject: [PATCH 14/36] #13 Add compiler to VS Code --- subprojects/compiler/build.gradle.kts | 15 +++++++++++++++ subprojects/oxsts-vs-code/build.gradle.kts | 1 + 2 files changed, 16 insertions(+) diff --git a/subprojects/compiler/build.gradle.kts b/subprojects/compiler/build.gradle.kts index 472f105..4f847f7 100644 --- a/subprojects/compiler/build.gradle.kts +++ b/subprojects/compiler/build.gradle.kts @@ -18,6 +18,17 @@ repositories { maven("https://repo.eclipse.org/content/groups/viatra/") } +val distributionOutput by configurations.creating { + isCanBeConsumed = true + isCanBeResolved = false +} + +artifacts { + add(distributionOutput.name, layout.buildDirectory.dir("install")) { + builtBy(tasks.installDist) + } +} + dependencies { implementation(project(":oxsts.lang")) @@ -40,3 +51,7 @@ dependencies { testFixturesImplementation(libs.docker.java.core) testFixturesImplementation(libs.docker.java.transport) } + +application { + mainClass = "hu.bme.mit.semantifyr.oxsts.compiler.CompileCliKt" +} diff --git a/subprojects/oxsts-vs-code/build.gradle.kts b/subprojects/oxsts-vs-code/build.gradle.kts index 4ace3a0..7bec435 100644 --- a/subprojects/oxsts-vs-code/build.gradle.kts +++ b/subprojects/oxsts-vs-code/build.gradle.kts @@ -19,6 +19,7 @@ val distributionClasspath by configurations.creating { dependencies { distributionClasspath(project(":oxsts.lang.ide", configuration = "distributionOutput")) + distributionClasspath(project(":compiler", configuration = "distributionOutput")) } val cloneDistribution by tasks.registering(Sync::class) { From 53db2458cba23a555f49aaa929d4ae6939bfd412 Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Sat, 5 Oct 2024 21:34:49 +0200 Subject: [PATCH 15/36] #13 Oxsts reader with directory or file reading --- ...gineCliKt.run.xml => CompileCliKt.run.xml} | 6 +- .../kotlin/{EngineCli.kt => CompileCli.kt} | 14 +++-- .../src/main/kotlin/reader/OxstsReader.kt | 57 ++++++++++++++----- .../testFixtures/kotlin/CompilationTest.kt | 4 +- .../testFixtures/kotlin/VerificationTest.kt | 8 +-- 5 files changed, 59 insertions(+), 30 deletions(-) rename .run/{EngineCliKt.run.xml => CompileCliKt.run.xml} (67%) rename subprojects/compiler/src/main/kotlin/{EngineCli.kt => CompileCli.kt} (67%) diff --git a/.run/EngineCliKt.run.xml b/.run/CompileCliKt.run.xml similarity index 67% rename from .run/EngineCliKt.run.xml rename to .run/CompileCliKt.run.xml index fae2159..c7013ed 100644 --- a/.run/EngineCliKt.run.xml +++ b/.run/CompileCliKt.run.xml @@ -5,10 +5,10 @@ SPDX-License-Identifier: EPL-2.0 --> - - \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index ee5bef2..81d7c36 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -7,7 +7,7 @@ rootProject.name = "semantifyr" include( - "compiler", + "semantifyr", "xsts.lang", "xsts.lang.ide", "oxsts.model", diff --git a/subprojects/semantifyr-vscode/build.gradle.kts b/subprojects/semantifyr-vscode/build.gradle.kts index a7c333f..95a662d 100644 --- a/subprojects/semantifyr-vscode/build.gradle.kts +++ b/subprojects/semantifyr-vscode/build.gradle.kts @@ -20,7 +20,7 @@ val distributionClasspath by configurations.creating { dependencies { distributionClasspath(project(":oxsts.lang.ide", configuration = "distributionOutput")) distributionClasspath(project(":xsts.lang.ide", configuration = "distributionOutput")) - distributionClasspath(project(":compiler", configuration = "distributionOutput")) + distributionClasspath(project(":semantifyr", configuration = "distributionOutput")) } val cloneDistribution by tasks.registering(Sync::class) { diff --git a/subprojects/semantifyr-vscode/src/extension.ts b/subprojects/semantifyr-vscode/src/extension.ts index 6e1d011..eae5620 100644 --- a/subprojects/semantifyr-vscode/src/extension.ts +++ b/subprojects/semantifyr-vscode/src/extension.ts @@ -46,13 +46,13 @@ class SemantifyrCodeLensProvider implements vscode.CodeLensProvider { } export function activate(context: ExtensionContext) { - const oxstsIdeExecutable = path.join(context.extensionPath, 'bin', 'oxsts.lang.ide', 'bin', 'oxsts.lang.ide.bat'); - const xstsIdeExecutable = path.join(context.extensionPath, 'bin', 'xsts.lang.ide', 'bin', 'xsts.lang.ide.bat'); - const compilerExecutable = path.join(context.extensionPath, 'bin', 'compiler', 'bin', 'compiler.bat'); - const runner = os.type() === 'Windows_NT' ? 'cmd' : 'sh'; const commandArg = os.type() === 'Windows_NT' ? '/c' : '-c'; + const executablePostfix = os.type() === 'Windows_NT' ? '.bat' : ''; + const oxstsIdeExecutable = path.join(context.extensionPath, 'bin', 'oxsts.lang.ide', 'bin', `oxsts.lang.ide${executablePostfix}`); + const xstsIdeExecutable = path.join(context.extensionPath, 'bin', 'xsts.lang.ide', 'bin', `xsts.lang.ide${executablePostfix}`); + const compilerExecutable = path.join(context.extensionPath, 'bin', 'semantifyr', 'bin', `semantifyr${executablePostfix}`); context.subscriptions.push( vscode.languages.registerCodeLensProvider({ language: 'oxsts' }, new SemantifyrCodeLensProvider()) diff --git a/subprojects/compiler/.gitignore b/subprojects/semantifyr/.gitignore similarity index 100% rename from subprojects/compiler/.gitignore rename to subprojects/semantifyr/.gitignore diff --git a/subprojects/compiler/TestModels/Automated/Example/CompositeInline/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Example/CompositeInline/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/CompositeInline/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Example/CompositeInline/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Example/CompositeInline/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Example/CompositeInline/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/CompositeInline/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Example/CompositeInline/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Example/Feature/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Example/Feature/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/Feature/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Example/Feature/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Example/Feature/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Example/Feature/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/Feature/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Example/Feature/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Example/FeatureTyping/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Example/FeatureTyping/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/FeatureTyping/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Example/FeatureTyping/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Example/FeatureTyping/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Example/FeatureTyping/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/FeatureTyping/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Example/FeatureTyping/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Example/InlineIf/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Example/InlineIf/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/InlineIf/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Example/InlineIf/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Example/InlineIf/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Example/InlineIf/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/InlineIf/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Example/InlineIf/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Example/SimpleTarget/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Example/SimpleTarget/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/SimpleTarget/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Example/SimpleTarget/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Example/SimpleTarget/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Example/SimpleTarget/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/SimpleTarget/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Example/SimpleTarget/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Example/StaticRecursion/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Example/StaticRecursion/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/StaticRecursion/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Example/StaticRecursion/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Example/StaticRecursion/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Example/StaticRecursion/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/StaticRecursion/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Example/StaticRecursion/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Example/TransitionInlining/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Example/TransitionInlining/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/TransitionInlining/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Example/TransitionInlining/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Example/TransitionInlining/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Example/TransitionInlining/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/TransitionInlining/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Example/TransitionInlining/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Example/Type/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Example/Type/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/Type/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Example/Type/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Example/Type/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Example/Type/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Example/Type/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Example/Type/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Gamma/Crossroads/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Gamma/Crossroads/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Gamma/Crossroads/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Gamma/Crossroads/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Gamma/Crossroads/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Gamma/Crossroads/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Gamma/Crossroads/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Gamma/Crossroads/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Gamma/SimpleMission/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Gamma/SimpleMission/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Gamma/SimpleMission/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Gamma/SimpleMission/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Gamma/SimpleMission/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Gamma/SimpleMission/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Gamma/SimpleMission/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Gamma/SimpleMission/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Gamma/Spacecraft/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Gamma/Spacecraft/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Gamma/Spacecraft/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Gamma/Spacecraft/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Gamma/Spacecraft/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Gamma/Spacecraft/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Gamma/Spacecraft/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Gamma/Spacecraft/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Actions.oxsts b/subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Actions.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Actions.oxsts rename to subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Actions.oxsts diff --git a/subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/BottomUpStatecharts.oxsts b/subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/BottomUpStatecharts.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/BottomUpStatecharts.oxsts rename to subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/BottomUpStatecharts.oxsts diff --git a/subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Components.oxsts b/subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Components.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Components.oxsts rename to subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Components.oxsts diff --git a/subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Events.oxsts b/subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Events.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Events.oxsts rename to subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Events.oxsts diff --git a/subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Statecharts.oxsts b/subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Statecharts.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Statecharts.oxsts rename to subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Statecharts.oxsts diff --git a/subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Triggers.oxsts b/subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Triggers.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/GammaSemanticLibrary/Triggers.oxsts rename to subprojects/semantifyr/TestModels/Automated/GammaSemanticLibrary/Triggers.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Feature/FeatureRedefinition/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Feature/FeatureRedefinition/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Feature/FeatureRedefinition/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Feature/FeatureRedefinition/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Feature/FeatureRedefinition/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Feature/FeatureRedefinition/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Feature/FeatureRedefinition/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Feature/FeatureRedefinition/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Feature/FeatureSubseting/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Feature/FeatureSubseting/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Feature/FeatureSubseting/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Feature/FeatureSubseting/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Feature/FeatureSubseting/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Feature/FeatureSubseting/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Feature/FeatureSubseting/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Feature/FeatureSubseting/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Feature/ReferenceSubseting/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Feature/ReferenceSubseting/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Feature/ReferenceSubseting/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Feature/ReferenceSubseting/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Feature/ReferenceSubseting/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Feature/ReferenceSubseting/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Feature/ReferenceSubseting/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Feature/ReferenceSubseting/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/MultipleVariables/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/MultipleVariables/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/MultipleVariables/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/MultipleVariables/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/MultipleVariables/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/MultipleVariables/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/MultipleVariables/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/MultipleVariables/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/MultipleVariablesDifferentFeature/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/MultipleVariablesDifferentFeature/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/MultipleVariablesDifferentFeature/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/MultipleVariablesDifferentFeature/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/MultipleVariablesDifferentFeature/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/MultipleVariablesDifferentFeature/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/MultipleVariablesDifferentFeature/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/MultipleVariablesDifferentFeature/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/SingleVariable/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/SingleVariable/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/SingleVariable/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/SingleVariable/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/SingleVariable/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/SingleVariable/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/SingleVariable/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/SingleVariable/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/VariableWithNothing/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/VariableWithNothing/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/VariableWithNothing/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/VariableWithNothing/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/VariableWithNothing/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/VariableWithNothing/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/VariableWithNothing/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/VariableWithNothing/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/VariableWithNothingExpression/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/VariableWithNothingExpression/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/VariableWithNothingExpression/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/VariableWithNothingExpression/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/VariableWithNothingExpression/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/VariableWithNothingExpression/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/FeatureTyping/VariableWithNothingExpression/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/FeatureTyping/VariableWithNothingExpression/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Import/A.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Import/A.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Import/A.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Import/A.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Import/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Import/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Import/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Import/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Import/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Import/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Import/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Import/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/BaseTypeFeature/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/BaseTypeFeature/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/BaseTypeFeature/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/BaseTypeFeature/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/BaseTypeFeature/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/BaseTypeFeature/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/BaseTypeFeature/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/BaseTypeFeature/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/ChildTypeFeature/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/ChildTypeFeature/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/ChildTypeFeature/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/ChildTypeFeature/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/ChildTypeFeature/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/ChildTypeFeature/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/ChildTypeFeature/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/ChildTypeFeature/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/MultipleOverrides/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/MultipleOverrides/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/MultipleOverrides/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/MultipleOverrides/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/MultipleOverrides/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/MultipleOverrides/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/MultipleOverrides/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/MultipleOverrides/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/MultipleTypes/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/MultipleTypes/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/MultipleTypes/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/MultipleTypes/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/MultipleTypes/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/MultipleTypes/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/MultipleTypes/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/MultipleTypes/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/NonVirtualTransformationIsNotOverridden/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/NonVirtualTransformationIsNotOverridden/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/NonVirtualTransformationIsNotOverridden/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/NonVirtualTransformationIsNotOverridden/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/NonVirtualTransformationIsNotOverridden/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/NonVirtualTransformationIsNotOverridden/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/NonVirtualTransformationIsNotOverridden/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/NonVirtualTransformationIsNotOverridden/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/VirtualTransformationIsOverridden/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/VirtualTransformationIsOverridden/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/VirtualTransformationIsOverridden/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/VirtualTransformationIsOverridden/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Inheritance/VirtualTransformationIsOverridden/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/VirtualTransformationIsOverridden/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Inheritance/VirtualTransformationIsOverridden/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Inheritance/VirtualTransformationIsOverridden/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallOfMultipleTransitions/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallOfMultipleTransitions/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallOfMultipleTransitions/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallOfMultipleTransitions/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallOfMultipleTransitions/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallOfMultipleTransitions/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallOfMultipleTransitions/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallOfMultipleTransitions/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallWithNoInstance/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallWithNoInstance/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallWithNoInstance/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallWithNoInstance/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallWithNoInstance/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallWithNoInstance/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallWithNoInstance/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallWithNoInstance/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallWithParameters/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallWithParameters/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallWithParameters/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallWithParameters/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallWithParameters/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallWithParameters/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCallWithParameters/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCallWithParameters/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineChoiceWithNoInstances/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineChoiceWithNoInstances/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineChoiceWithNoInstances/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineChoiceWithNoInstances/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineChoiceWithNoInstances/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineChoiceWithNoInstances/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineChoiceWithNoInstances/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineChoiceWithNoInstances/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCompositeChoice/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCompositeChoice/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCompositeChoice/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCompositeChoice/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCompositeChoice/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCompositeChoice/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCompositeChoice/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCompositeChoice/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCompositeSequence/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCompositeSequence/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCompositeSequence/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCompositeSequence/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCompositeSequence/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCompositeSequence/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineCompositeSequence/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineCompositeSequence/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineFunctor/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineFunctor/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineFunctor/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineFunctor/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineFunctor/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineFunctor/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineFunctor/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineFunctor/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineIfFalse/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineIfFalse/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineIfFalse/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineIfFalse/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineIfFalse/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineIfFalse/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineIfFalse/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineIfFalse/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineIfTrue/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineIfTrue/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineIfTrue/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineIfTrue/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineIfTrue/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineIfTrue/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineIfTrue/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineIfTrue/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineSeqWithNoInstances/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineSeqWithNoInstances/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineSeqWithNoInstances/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineSeqWithNoInstances/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineSeqWithNoInstances/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineSeqWithNoInstances/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineSeqWithNoInstances/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineSeqWithNoInstances/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineStaticRecursion/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineStaticRecursion/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineStaticRecursion/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineStaticRecursion/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineStaticRecursion/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineStaticRecursion/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/InlineStaticRecursion/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/InlineStaticRecursion/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/MultipleInlineCalls/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/MultipleInlineCalls/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/MultipleInlineCalls/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/MultipleInlineCalls/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/MultipleInlineCalls/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/MultipleInlineCalls/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/MultipleInlineCalls/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/MultipleInlineCalls/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/SingleInlineCall/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/SingleInlineCall/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/SingleInlineCall/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/SingleInlineCall/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/InlineTransition/SingleInlineCall/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/SingleInlineCall/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/InlineTransition/SingleInlineCall/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/InlineTransition/SingleInlineCall/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/FlatTargetWithMultipleInstantiations/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/FlatTargetWithMultipleInstantiations/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/FlatTargetWithMultipleInstantiations/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/FlatTargetWithMultipleInstantiations/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/FlatTargetWithMultipleInstantiations/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/FlatTargetWithMultipleInstantiations/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/FlatTargetWithMultipleInstantiations/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/FlatTargetWithMultipleInstantiations/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/FlatTargetWithSingleInstantiation/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/FlatTargetWithSingleInstantiation/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/FlatTargetWithSingleInstantiation/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/FlatTargetWithSingleInstantiation/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/FlatTargetWithSingleInstantiation/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/FlatTargetWithSingleInstantiation/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/FlatTargetWithSingleInstantiation/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/FlatTargetWithSingleInstantiation/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/ManyLayerCompositeInstantiation/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/ManyLayerCompositeInstantiation/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/ManyLayerCompositeInstantiation/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/ManyLayerCompositeInstantiation/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/ManyLayerCompositeInstantiation/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/ManyLayerCompositeInstantiation/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/ManyLayerCompositeInstantiation/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/ManyLayerCompositeInstantiation/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/ManyLayerCompositeReferenceBinding/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/ManyLayerCompositeReferenceBinding/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/ManyLayerCompositeReferenceBinding/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/ManyLayerCompositeReferenceBinding/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/ManyLayerCompositeReferenceBinding/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/ManyLayerCompositeReferenceBinding/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/ManyLayerCompositeReferenceBinding/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/ManyLayerCompositeReferenceBinding/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/MultipleInstancesInOneReference/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/MultipleInstancesInOneReference/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/MultipleInstancesInOneReference/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/MultipleInstancesInOneReference/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/MultipleInstancesInOneReference/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/MultipleInstancesInOneReference/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/MultipleInstancesInOneReference/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/MultipleInstancesInOneReference/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/ReferenceBinding/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/ReferenceBinding/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/ReferenceBinding/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/ReferenceBinding/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/ReferenceBinding/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/ReferenceBinding/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/ReferenceBinding/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/ReferenceBinding/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/ReferenceBindingToUpper/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/ReferenceBindingToUpper/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/ReferenceBindingToUpper/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/ReferenceBindingToUpper/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/ReferenceBindingToUpper/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/ReferenceBindingToUpper/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/ReferenceBindingToUpper/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/ReferenceBindingToUpper/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/TwoLayerCompositeInstantiation/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/TwoLayerCompositeInstantiation/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/TwoLayerCompositeInstantiation/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/TwoLayerCompositeInstantiation/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/TwoLayerCompositeInstantiation/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/TwoLayerCompositeInstantiation/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/TwoLayerCompositeInstantiation/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/TwoLayerCompositeInstantiation/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/TwoLayerCompositeReferenceBinding/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/TwoLayerCompositeReferenceBinding/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/TwoLayerCompositeReferenceBinding/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/TwoLayerCompositeReferenceBinding/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Instance/TwoLayerCompositeReferenceBinding/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Instance/TwoLayerCompositeReferenceBinding/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Instance/TwoLayerCompositeReferenceBinding/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Instance/TwoLayerCompositeReferenceBinding/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Pattern/Simple/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Pattern/Simple/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Pattern/Simple/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Pattern/Simple/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Pattern/Simple/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Pattern/Simple/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Pattern/Simple/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Pattern/Simple/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Target/BooleanVariable/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Target/BooleanVariable/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Target/BooleanVariable/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Target/BooleanVariable/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Target/BooleanVariable/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Target/BooleanVariable/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Target/BooleanVariable/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Target/BooleanVariable/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Target/EnumVariable/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Target/EnumVariable/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Target/EnumVariable/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Target/EnumVariable/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Target/EnumVariable/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Target/EnumVariable/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Target/EnumVariable/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Target/EnumVariable/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Target/IntegerVariable/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Target/IntegerVariable/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Target/IntegerVariable/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Target/IntegerVariable/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Target/IntegerVariable/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Target/IntegerVariable/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Target/IntegerVariable/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Target/IntegerVariable/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/AssignmentOperation/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/AssignmentOperation/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/AssignmentOperation/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/AssignmentOperation/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/AssignmentOperation/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/AssignmentOperation/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/AssignmentOperation/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/AssignmentOperation/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/Assumption/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/Assumption/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/Assumption/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/Assumption/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/Assumption/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/Assumption/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/Assumption/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/Assumption/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/Choice/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/Choice/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/Choice/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/Choice/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/Choice/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/Choice/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/Choice/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/Choice/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/ChoiceElse/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/ChoiceElse/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/ChoiceElse/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/ChoiceElse/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/ChoiceElse/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/ChoiceElse/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/ChoiceElse/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/ChoiceElse/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/HavocOperation/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/HavocOperation/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/HavocOperation/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/HavocOperation/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/HavocOperation/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/HavocOperation/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/HavocOperation/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/HavocOperation/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/If/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/If/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/If/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/If/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/If/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/If/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/If/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/If/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/Sequence/expected.xsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/Sequence/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/Sequence/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/Sequence/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/Simple/Transition/Sequence/model.oxsts b/subprojects/semantifyr/TestModels/Automated/Simple/Transition/Sequence/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/Simple/Transition/Sequence/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/Simple/Transition/Sequence/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/SysMLv2/Action/Decision/expected.xsts b/subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Decision/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/SysMLv2/Action/Decision/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Decision/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/SysMLv2/Action/Decision/model.oxsts b/subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Decision/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/SysMLv2/Action/Decision/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Decision/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/SysMLv2/Action/Fork/expected.xsts b/subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Fork/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/SysMLv2/Action/Fork/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Fork/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/SysMLv2/Action/Fork/model.oxsts b/subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Fork/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/SysMLv2/Action/Fork/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Fork/model.oxsts diff --git a/subprojects/compiler/TestModels/Automated/SysMLv2/Action/Simple/expected.xsts b/subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Simple/expected.xsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/SysMLv2/Action/Simple/expected.xsts rename to subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Simple/expected.xsts diff --git a/subprojects/compiler/TestModels/Automated/SysMLv2/Action/Simple/model.oxsts b/subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Simple/model.oxsts similarity index 100% rename from subprojects/compiler/TestModels/Automated/SysMLv2/Action/Simple/model.oxsts rename to subprojects/semantifyr/TestModels/Automated/SysMLv2/Action/Simple/model.oxsts diff --git a/subprojects/compiler/build.gradle.kts b/subprojects/semantifyr/build.gradle.kts similarity index 95% rename from subprojects/compiler/build.gradle.kts rename to subprojects/semantifyr/build.gradle.kts index e2aca54..2911eba 100644 --- a/subprojects/compiler/build.gradle.kts +++ b/subprojects/semantifyr/build.gradle.kts @@ -57,5 +57,5 @@ dependencies { } application { - mainClass = "hu.bme.mit.semantifyr.oxsts.compiler.CompileCliKt" + mainClass = "hu.bme.mit.semantifyr.oxsts.semantifyr.SemantifyrCliKt" } diff --git a/subprojects/compiler/src/main/kotlin/CompileCli.kt b/subprojects/semantifyr/src/main/kotlin/SemantifyrCli.kt similarity index 73% rename from subprojects/compiler/src/main/kotlin/CompileCli.kt rename to subprojects/semantifyr/src/main/kotlin/SemantifyrCli.kt index 77f28e2..e61be9e 100644 --- a/subprojects/compiler/src/main/kotlin/CompileCli.kt +++ b/subprojects/semantifyr/src/main/kotlin/SemantifyrCli.kt @@ -4,12 +4,12 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler +package hu.bme.mit.semantifyr.oxsts.semantifyr -import hu.bme.mit.semantifyr.oxsts.compiler.reader.OxstsReader -import hu.bme.mit.semantifyr.oxsts.compiler.reader.prepareOxsts -import hu.bme.mit.semantifyr.oxsts.compiler.serialization.Serializer -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.XstsTransformer +import hu.bme.mit.semantifyr.oxsts.semantifyr.reader.OxstsReader +import hu.bme.mit.semantifyr.oxsts.semantifyr.reader.prepareOxsts +import hu.bme.mit.semantifyr.oxsts.semantifyr.serialization.Serializer +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.XstsTransformer import kotlinx.cli.ArgParser import kotlinx.cli.ArgType import java.io.File diff --git a/subprojects/compiler/src/main/kotlin/reader/OxstsReader.kt b/subprojects/semantifyr/src/main/kotlin/reader/OxstsReader.kt similarity index 98% rename from subprojects/compiler/src/main/kotlin/reader/OxstsReader.kt rename to subprojects/semantifyr/src/main/kotlin/reader/OxstsReader.kt index 743397d..2f71385 100644 --- a/subprojects/compiler/src/main/kotlin/reader/OxstsReader.kt +++ b/subprojects/semantifyr/src/main/kotlin/reader/OxstsReader.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.reader +package hu.bme.mit.semantifyr.oxsts.semantifyr.reader import hu.bme.mit.semantifyr.oxsts.lang.OxstsStandaloneSetup import hu.bme.mit.semantifyr.oxsts.model.oxsts.OxstsPackage diff --git a/subprojects/compiler/src/main/kotlin/serialization/IndentationAwareStringWriter.kt b/subprojects/semantifyr/src/main/kotlin/serialization/IndentationAwareStringWriter.kt similarity index 95% rename from subprojects/compiler/src/main/kotlin/serialization/IndentationAwareStringWriter.kt rename to subprojects/semantifyr/src/main/kotlin/serialization/IndentationAwareStringWriter.kt index dc65244..c809145 100644 --- a/subprojects/compiler/src/main/kotlin/serialization/IndentationAwareStringWriter.kt +++ b/subprojects/semantifyr/src/main/kotlin/serialization/IndentationAwareStringWriter.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.serialization +package hu.bme.mit.semantifyr.oxsts.semantifyr.serialization class IndentationAwareStringWriter( private val indentation: String diff --git a/subprojects/compiler/src/main/kotlin/serialization/Serializer.kt b/subprojects/semantifyr/src/main/kotlin/serialization/Serializer.kt similarity index 98% rename from subprojects/compiler/src/main/kotlin/serialization/Serializer.kt rename to subprojects/semantifyr/src/main/kotlin/serialization/Serializer.kt index 0e159d0..051ed87 100644 --- a/subprojects/compiler/src/main/kotlin/serialization/Serializer.kt +++ b/subprojects/semantifyr/src/main/kotlin/serialization/Serializer.kt @@ -4,9 +4,9 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.serialization +package hu.bme.mit.semantifyr.oxsts.semantifyr.serialization -import hu.bme.mit.semantifyr.oxsts.compiler.utils.referencedElement +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.referencedElement import hu.bme.mit.semantifyr.oxsts.model.oxsts.AndOperator import hu.bme.mit.semantifyr.oxsts.model.oxsts.AssignmentOperation import hu.bme.mit.semantifyr.oxsts.model.oxsts.AssumptionOperation diff --git a/subprojects/compiler/src/main/kotlin/theta/ThetaExecutor.kt b/subprojects/semantifyr/src/main/kotlin/theta/ThetaExecutor.kt similarity index 96% rename from subprojects/compiler/src/main/kotlin/theta/ThetaExecutor.kt rename to subprojects/semantifyr/src/main/kotlin/theta/ThetaExecutor.kt index 10aaa84..ae088f3 100644 --- a/subprojects/compiler/src/main/kotlin/theta/ThetaExecutor.kt +++ b/subprojects/semantifyr/src/main/kotlin/theta/ThetaExecutor.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.theta +package hu.bme.mit.semantifyr.oxsts.semantifyr.theta import com.github.dockerjava.api.command.CreateContainerResponse import com.github.dockerjava.api.model.Bind @@ -14,9 +14,9 @@ import com.github.dockerjava.api.model.WaitResponse import com.github.dockerjava.core.DefaultDockerClientConfig import com.github.dockerjava.core.DockerClientImpl import com.github.dockerjava.httpclient5.ApacheDockerHttpClient -import hu.bme.mit.semantifyr.oxsts.compiler.utils.StreamLoggerCallback -import hu.bme.mit.semantifyr.oxsts.compiler.utils.awaitAny -import hu.bme.mit.semantifyr.oxsts.compiler.utils.runAsync +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.StreamLoggerCallback +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.awaitAny +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.runAsync import kotlinx.coroutines.CancellationException import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.NonCancellable diff --git a/subprojects/compiler/src/main/kotlin/transformation/OperationInliner.kt b/subprojects/semantifyr/src/main/kotlin/transformation/OperationInliner.kt similarity index 91% rename from subprojects/compiler/src/main/kotlin/transformation/OperationInliner.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/OperationInliner.kt index 3b42147..6a3bc93 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/OperationInliner.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/OperationInliner.kt @@ -4,17 +4,17 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation - -import hu.bme.mit.semantifyr.oxsts.compiler.utils.OxstsFactory -import hu.bme.mit.semantifyr.oxsts.compiler.utils.appendWith -import hu.bme.mit.semantifyr.oxsts.compiler.utils.asChainReferenceExpression -import hu.bme.mit.semantifyr.oxsts.compiler.utils.contextualEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.copy -import hu.bme.mit.semantifyr.oxsts.compiler.utils.drop -import hu.bme.mit.semantifyr.oxsts.compiler.utils.dropLast -import hu.bme.mit.semantifyr.oxsts.compiler.utils.element -import hu.bme.mit.semantifyr.oxsts.compiler.utils.isStaticReference +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation + +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.OxstsFactory +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.appendWith +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.asChainReferenceExpression +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.contextualEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.copy +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.drop +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.dropLast +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.element +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.isStaticReference import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainReferenceExpression import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainingExpression import hu.bme.mit.semantifyr.oxsts.model.oxsts.ContextDependentReference diff --git a/subprojects/compiler/src/main/kotlin/transformation/XstsTransformer.kt b/subprojects/semantifyr/src/main/kotlin/transformation/XstsTransformer.kt similarity index 90% rename from subprojects/compiler/src/main/kotlin/transformation/XstsTransformer.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/XstsTransformer.kt index 0435503..e8c7adb 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/XstsTransformer.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/XstsTransformer.kt @@ -4,24 +4,24 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation - -import hu.bme.mit.semantifyr.oxsts.compiler.reader.OxstsReader -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation.BooleanData -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation.IntegerData -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.instantiation.Instantiator -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.optimization.ExpressionOptimizer -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.optimization.OperationOptimizer -import hu.bme.mit.semantifyr.oxsts.compiler.utils.OxstsFactory -import hu.bme.mit.semantifyr.oxsts.compiler.utils.contextualEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.copy -import hu.bme.mit.semantifyr.oxsts.compiler.utils.dropLast -import hu.bme.mit.semantifyr.oxsts.compiler.utils.element -import hu.bme.mit.semantifyr.oxsts.compiler.utils.isFeatureTyped -import hu.bme.mit.semantifyr.oxsts.compiler.utils.lastChain -import hu.bme.mit.semantifyr.oxsts.compiler.utils.operationInliner -import hu.bme.mit.semantifyr.oxsts.compiler.utils.referencedElement -import hu.bme.mit.semantifyr.oxsts.compiler.utils.variableTransformer +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation + +import hu.bme.mit.semantifyr.oxsts.semantifyr.reader.OxstsReader +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation.BooleanData +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation.IntegerData +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.instantiation.Instantiator +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.optimization.ExpressionOptimizer +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.optimization.OperationOptimizer +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.OxstsFactory +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.contextualEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.copy +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.dropLast +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.element +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.isFeatureTyped +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.lastChain +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.operationInliner +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.referencedElement +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.variableTransformer import hu.bme.mit.semantifyr.oxsts.model.oxsts.AssignmentOperation import hu.bme.mit.semantifyr.oxsts.model.oxsts.AssumptionOperation import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainReferenceExpression diff --git a/subprojects/compiler/src/main/kotlin/transformation/evaluation/ContextualExpressionEvaluator.kt b/subprojects/semantifyr/src/main/kotlin/transformation/evaluation/ContextualExpressionEvaluator.kt similarity index 81% rename from subprojects/compiler/src/main/kotlin/transformation/evaluation/ContextualExpressionEvaluator.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/evaluation/ContextualExpressionEvaluator.kt index debe6ef..46d30aa 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/evaluation/ContextualExpressionEvaluator.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/evaluation/ContextualExpressionEvaluator.kt @@ -4,13 +4,13 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation -import hu.bme.mit.semantifyr.oxsts.compiler.utils.contextualEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.dropLast -import hu.bme.mit.semantifyr.oxsts.compiler.utils.featureEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.lastChain -import hu.bme.mit.semantifyr.oxsts.compiler.utils.transitionResolver +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.contextualEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.dropLast +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.featureEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.lastChain +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.transitionResolver import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainReferenceExpression import hu.bme.mit.semantifyr.oxsts.model.oxsts.Expression import hu.bme.mit.semantifyr.oxsts.model.oxsts.Instance diff --git a/subprojects/compiler/src/main/kotlin/transformation/evaluation/DataType.kt b/subprojects/semantifyr/src/main/kotlin/transformation/evaluation/DataType.kt similarity index 97% rename from subprojects/compiler/src/main/kotlin/transformation/evaluation/DataType.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/evaluation/DataType.kt index ae41b0e..f0c7930 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/evaluation/DataType.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/evaluation/DataType.kt @@ -4,10 +4,10 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation -import hu.bme.mit.semantifyr.oxsts.compiler.utils.NothingInstance -import hu.bme.mit.semantifyr.oxsts.compiler.utils.except +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.NothingInstance +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.except import hu.bme.mit.semantifyr.oxsts.model.oxsts.AndOperator import hu.bme.mit.semantifyr.oxsts.model.oxsts.EqualityOperator import hu.bme.mit.semantifyr.oxsts.model.oxsts.GreaterThanOperator diff --git a/subprojects/compiler/src/main/kotlin/transformation/evaluation/ExpressionEvaluator.kt b/subprojects/semantifyr/src/main/kotlin/transformation/evaluation/ExpressionEvaluator.kt similarity index 97% rename from subprojects/compiler/src/main/kotlin/transformation/evaluation/ExpressionEvaluator.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/evaluation/ExpressionEvaluator.kt index 6a29d9c..91ec7e3 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/evaluation/ExpressionEvaluator.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/evaluation/ExpressionEvaluator.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation import hu.bme.mit.semantifyr.oxsts.model.oxsts.Expression import hu.bme.mit.semantifyr.oxsts.model.oxsts.Instance diff --git a/subprojects/compiler/src/main/kotlin/transformation/evaluation/FeatureEvaluator.kt b/subprojects/semantifyr/src/main/kotlin/transformation/evaluation/FeatureEvaluator.kt similarity index 83% rename from subprojects/compiler/src/main/kotlin/transformation/evaluation/FeatureEvaluator.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/evaluation/FeatureEvaluator.kt index 755f089..ba88d11 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/evaluation/FeatureEvaluator.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/evaluation/FeatureEvaluator.kt @@ -4,18 +4,18 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation - -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.resolution.RedefinitionHandler -import hu.bme.mit.semantifyr.oxsts.compiler.utils.NothingInstance -import hu.bme.mit.semantifyr.oxsts.compiler.utils.contextualEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.dropLast -import hu.bme.mit.semantifyr.oxsts.compiler.utils.featureEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.instancePlacer -import hu.bme.mit.semantifyr.oxsts.compiler.utils.isDataType -import hu.bme.mit.semantifyr.oxsts.compiler.utils.lastChain -import hu.bme.mit.semantifyr.oxsts.compiler.utils.referencedElement -import hu.bme.mit.semantifyr.oxsts.compiler.utils.type +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation + +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.resolution.RedefinitionHandler +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.NothingInstance +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.contextualEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.dropLast +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.featureEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.instancePlacer +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.isDataType +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.lastChain +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.referencedElement +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.type import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainReferenceExpression import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainingExpression import hu.bme.mit.semantifyr.oxsts.model.oxsts.DeclarationReferenceExpression diff --git a/subprojects/compiler/src/main/kotlin/transformation/instantiation/InstancePlacer.kt b/subprojects/semantifyr/src/main/kotlin/transformation/instantiation/InstancePlacer.kt similarity index 76% rename from subprojects/compiler/src/main/kotlin/transformation/instantiation/InstancePlacer.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/instantiation/InstancePlacer.kt index 75d7177..95b0073 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/instantiation/InstancePlacer.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/instantiation/InstancePlacer.kt @@ -4,12 +4,12 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.instantiation +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.instantiation -import hu.bme.mit.semantifyr.oxsts.compiler.utils.OxstsFactory -import hu.bme.mit.semantifyr.oxsts.compiler.utils.allFeatures -import hu.bme.mit.semantifyr.oxsts.compiler.utils.allSubsets -import hu.bme.mit.semantifyr.oxsts.compiler.utils.type +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.OxstsFactory +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.allFeatures +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.allSubsets +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.type import hu.bme.mit.semantifyr.oxsts.model.oxsts.Feature import hu.bme.mit.semantifyr.oxsts.model.oxsts.Instance diff --git a/subprojects/compiler/src/main/kotlin/transformation/instantiation/Instantiator.kt b/subprojects/semantifyr/src/main/kotlin/transformation/instantiation/Instantiator.kt similarity index 85% rename from subprojects/compiler/src/main/kotlin/transformation/instantiation/Instantiator.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/instantiation/Instantiator.kt index 50433dc..0ddcd62 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/instantiation/Instantiator.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/instantiation/Instantiator.kt @@ -4,22 +4,22 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.instantiation - -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.pattern.PatternRunner -import hu.bme.mit.semantifyr.oxsts.compiler.utils.OxstsFactory -import hu.bme.mit.semantifyr.oxsts.compiler.utils._package -import hu.bme.mit.semantifyr.oxsts.compiler.utils.allContainments -import hu.bme.mit.semantifyr.oxsts.compiler.utils.allFeatures -import hu.bme.mit.semantifyr.oxsts.compiler.utils.allVariables -import hu.bme.mit.semantifyr.oxsts.compiler.utils.contextualEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.dropLast -import hu.bme.mit.semantifyr.oxsts.compiler.utils.instancePlacer -import hu.bme.mit.semantifyr.oxsts.compiler.utils.isDataType -import hu.bme.mit.semantifyr.oxsts.compiler.utils.treeSequence -import hu.bme.mit.semantifyr.oxsts.compiler.utils.type -import hu.bme.mit.semantifyr.oxsts.compiler.utils.typedReferencedElement -import hu.bme.mit.semantifyr.oxsts.compiler.utils.variableTransformer +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.instantiation + +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.pattern.PatternRunner +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.OxstsFactory +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils._package +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.allContainments +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.allFeatures +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.allVariables +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.contextualEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.dropLast +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.instancePlacer +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.isDataType +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.treeSequence +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.type +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.typedReferencedElement +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.variableTransformer import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainReferenceExpression import hu.bme.mit.semantifyr.oxsts.model.oxsts.Containment import hu.bme.mit.semantifyr.oxsts.model.oxsts.Derived diff --git a/subprojects/compiler/src/main/kotlin/transformation/instantiation/VariableTransformer.kt b/subprojects/semantifyr/src/main/kotlin/transformation/instantiation/VariableTransformer.kt similarity index 84% rename from subprojects/compiler/src/main/kotlin/transformation/instantiation/VariableTransformer.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/instantiation/VariableTransformer.kt index 3c38957..98d3f71 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/instantiation/VariableTransformer.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/instantiation/VariableTransformer.kt @@ -4,19 +4,19 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.instantiation - -import hu.bme.mit.semantifyr.oxsts.compiler.utils.NothingInstance -import hu.bme.mit.semantifyr.oxsts.compiler.utils.OxstsFactory -import hu.bme.mit.semantifyr.oxsts.compiler.utils.asChainReferenceExpression -import hu.bme.mit.semantifyr.oxsts.compiler.utils.contextualEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.copy -import hu.bme.mit.semantifyr.oxsts.compiler.utils.dropLast -import hu.bme.mit.semantifyr.oxsts.compiler.utils.fullyQualifiedName -import hu.bme.mit.semantifyr.oxsts.compiler.utils.instancePlacer -import hu.bme.mit.semantifyr.oxsts.compiler.utils.isFeatureTyped -import hu.bme.mit.semantifyr.oxsts.compiler.utils.referencedElement -import hu.bme.mit.semantifyr.oxsts.compiler.utils.variableTransformer +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.instantiation + +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.NothingInstance +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.OxstsFactory +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.asChainReferenceExpression +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.contextualEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.copy +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.dropLast +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.fullyQualifiedName +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.instancePlacer +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.isFeatureTyped +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.referencedElement +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.variableTransformer import hu.bme.mit.semantifyr.oxsts.model.oxsts.Enum import hu.bme.mit.semantifyr.oxsts.model.oxsts.EnumLiteral import hu.bme.mit.semantifyr.oxsts.model.oxsts.Expression diff --git a/subprojects/compiler/src/main/kotlin/transformation/optimization/ExpressionOptimizer.kt b/subprojects/semantifyr/src/main/kotlin/transformation/optimization/ExpressionOptimizer.kt similarity index 91% rename from subprojects/compiler/src/main/kotlin/transformation/optimization/ExpressionOptimizer.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/optimization/ExpressionOptimizer.kt index 0f6ee08..69ac1fb 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/optimization/ExpressionOptimizer.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/optimization/ExpressionOptimizer.kt @@ -4,12 +4,12 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.optimization +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.optimization -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation.BooleanData -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation.IntegerData -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation.SharedExpressionEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.utils.OxstsFactory +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation.BooleanData +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation.IntegerData +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation.SharedExpressionEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.OxstsFactory import hu.bme.mit.semantifyr.oxsts.model.oxsts.AndOperator import hu.bme.mit.semantifyr.oxsts.model.oxsts.Expression import hu.bme.mit.semantifyr.oxsts.model.oxsts.LiteralBoolean diff --git a/subprojects/compiler/src/main/kotlin/transformation/optimization/OperationOptimizer.kt b/subprojects/semantifyr/src/main/kotlin/transformation/optimization/OperationOptimizer.kt similarity index 99% rename from subprojects/compiler/src/main/kotlin/transformation/optimization/OperationOptimizer.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/optimization/OperationOptimizer.kt index 8c587da..4064835 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/optimization/OperationOptimizer.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/optimization/OperationOptimizer.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.optimization +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.optimization import hu.bme.mit.semantifyr.oxsts.model.oxsts.AssignmentOperation import hu.bme.mit.semantifyr.oxsts.model.oxsts.AssumptionOperation diff --git a/subprojects/compiler/src/main/kotlin/transformation/pattern/PatternRunner.kt b/subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternRunner.kt similarity index 88% rename from subprojects/compiler/src/main/kotlin/transformation/pattern/PatternRunner.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternRunner.kt index 504a480..3fa774a 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/pattern/PatternRunner.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternRunner.kt @@ -4,9 +4,9 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.pattern +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.pattern -import hu.bme.mit.semantifyr.oxsts.compiler.utils.fullyQualifiedName +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.fullyQualifiedName import hu.bme.mit.semantifyr.oxsts.model.oxsts.Instance import hu.bme.mit.semantifyr.oxsts.model.oxsts.Pattern import org.eclipse.emf.ecore.resource.ResourceSet diff --git a/subprojects/compiler/src/main/kotlin/transformation/pattern/PatternSerializer.kt b/subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternSerializer.kt similarity index 94% rename from subprojects/compiler/src/main/kotlin/transformation/pattern/PatternSerializer.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternSerializer.kt index ab51a73..d730c7b 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/pattern/PatternSerializer.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternSerializer.kt @@ -4,11 +4,11 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.pattern +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.pattern -import hu.bme.mit.semantifyr.oxsts.compiler.serialization.IndentationAwareStringWriter -import hu.bme.mit.semantifyr.oxsts.compiler.serialization.indent -import hu.bme.mit.semantifyr.oxsts.compiler.utils.fullyQualifiedName +import hu.bme.mit.semantifyr.oxsts.semantifyr.serialization.IndentationAwareStringWriter +import hu.bme.mit.semantifyr.oxsts.semantifyr.serialization.indent +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.fullyQualifiedName import hu.bme.mit.semantifyr.oxsts.model.oxsts.Constraint import hu.bme.mit.semantifyr.oxsts.model.oxsts.FeatureConstraint import hu.bme.mit.semantifyr.oxsts.model.oxsts.Parameter diff --git a/subprojects/compiler/src/main/kotlin/transformation/pattern/PatternTransformer.kt b/subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternTransformer.kt similarity index 88% rename from subprojects/compiler/src/main/kotlin/transformation/pattern/PatternTransformer.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternTransformer.kt index 5b65ff9..f2744d6 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/pattern/PatternTransformer.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/pattern/PatternTransformer.kt @@ -4,10 +4,10 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.pattern +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.pattern -import hu.bme.mit.semantifyr.oxsts.compiler.utils.allReferencedPatterns -import hu.bme.mit.semantifyr.oxsts.compiler.utils.fullyQualifiedName +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.allReferencedPatterns +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.fullyQualifiedName import hu.bme.mit.semantifyr.oxsts.model.oxsts.Pattern import org.eclipse.viatra.query.patternlanguage.emf.util.PatternParserBuilder import org.eclipse.viatra.query.runtime.api.GenericPatternMatcher diff --git a/subprojects/compiler/src/main/kotlin/transformation/resolution/RedefinitionHandler.kt b/subprojects/semantifyr/src/main/kotlin/transformation/resolution/RedefinitionHandler.kt similarity index 90% rename from subprojects/compiler/src/main/kotlin/transformation/resolution/RedefinitionHandler.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/resolution/RedefinitionHandler.kt index e31c51d..dd8b189 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/resolution/RedefinitionHandler.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/resolution/RedefinitionHandler.kt @@ -4,9 +4,9 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.resolution +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.resolution -import hu.bme.mit.semantifyr.oxsts.compiler.utils.isRedefine +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.isRedefine import hu.bme.mit.semantifyr.oxsts.model.oxsts.Feature import hu.bme.mit.semantifyr.oxsts.model.oxsts.Type diff --git a/subprojects/compiler/src/main/kotlin/transformation/resolution/TransitionResolver.kt b/subprojects/semantifyr/src/main/kotlin/transformation/resolution/TransitionResolver.kt similarity index 93% rename from subprojects/compiler/src/main/kotlin/transformation/resolution/TransitionResolver.kt rename to subprojects/semantifyr/src/main/kotlin/transformation/resolution/TransitionResolver.kt index 97b1ff9..b865e35 100644 --- a/subprojects/compiler/src/main/kotlin/transformation/resolution/TransitionResolver.kt +++ b/subprojects/semantifyr/src/main/kotlin/transformation/resolution/TransitionResolver.kt @@ -4,9 +4,9 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.transformation.resolution +package hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.resolution -import hu.bme.mit.semantifyr.oxsts.compiler.utils.type +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.type import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainingExpression import hu.bme.mit.semantifyr.oxsts.model.oxsts.DeclarationReferenceExpression import hu.bme.mit.semantifyr.oxsts.model.oxsts.HavocTransitionExpression diff --git a/subprojects/compiler/src/main/kotlin/utils/CollectionUtils.kt b/subprojects/semantifyr/src/main/kotlin/utils/CollectionUtils.kt similarity index 79% rename from subprojects/compiler/src/main/kotlin/utils/CollectionUtils.kt rename to subprojects/semantifyr/src/main/kotlin/utils/CollectionUtils.kt index e53b80d..ef62875 100644 --- a/subprojects/compiler/src/main/kotlin/utils/CollectionUtils.kt +++ b/subprojects/semantifyr/src/main/kotlin/utils/CollectionUtils.kt @@ -4,6 +4,6 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.utils +package hu.bme.mit.semantifyr.oxsts.semantifyr.utils inline fun > C.except(other: T) = filter { it != other }.toSet() diff --git a/subprojects/compiler/src/main/kotlin/utils/DockerUtils.kt b/subprojects/semantifyr/src/main/kotlin/utils/DockerUtils.kt similarity index 98% rename from subprojects/compiler/src/main/kotlin/utils/DockerUtils.kt rename to subprojects/semantifyr/src/main/kotlin/utils/DockerUtils.kt index a276241..e457e1b 100644 --- a/subprojects/compiler/src/main/kotlin/utils/DockerUtils.kt +++ b/subprojects/semantifyr/src/main/kotlin/utils/DockerUtils.kt @@ -1,4 +1,4 @@ -package hu.bme.mit.semantifyr.oxsts.compiler.utils +package hu.bme.mit.semantifyr.oxsts.semantifyr.utils import com.github.dockerjava.api.async.ResultCallback import com.github.dockerjava.api.model.Frame diff --git a/subprojects/compiler/src/main/kotlin/utils/EcoreUtils.kt b/subprojects/semantifyr/src/main/kotlin/utils/EcoreUtils.kt similarity index 84% rename from subprojects/compiler/src/main/kotlin/utils/EcoreUtils.kt rename to subprojects/semantifyr/src/main/kotlin/utils/EcoreUtils.kt index b122628..11a3091 100644 --- a/subprojects/compiler/src/main/kotlin/utils/EcoreUtils.kt +++ b/subprojects/semantifyr/src/main/kotlin/utils/EcoreUtils.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.utils +package hu.bme.mit.semantifyr.oxsts.semantifyr.utils import org.eclipse.emf.ecore.EObject import org.eclipse.xtext.EcoreUtil2 diff --git a/subprojects/compiler/src/main/kotlin/utils/InstanceExtensions.kt b/subprojects/semantifyr/src/main/kotlin/utils/InstanceExtensions.kt similarity index 78% rename from subprojects/compiler/src/main/kotlin/utils/InstanceExtensions.kt rename to subprojects/semantifyr/src/main/kotlin/utils/InstanceExtensions.kt index 222caf3..e99f1db 100644 --- a/subprojects/compiler/src/main/kotlin/utils/InstanceExtensions.kt +++ b/subprojects/semantifyr/src/main/kotlin/utils/InstanceExtensions.kt @@ -4,14 +4,14 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.utils +package hu.bme.mit.semantifyr.oxsts.semantifyr.utils -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.OperationInliner -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation.ContextualExpressionEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.evaluation.FeatureEvaluator -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.instantiation.InstancePlacer -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.instantiation.VariableTransformer -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.resolution.TransitionResolver +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.OperationInliner +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation.ContextualExpressionEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.evaluation.FeatureEvaluator +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.instantiation.InstancePlacer +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.instantiation.VariableTransformer +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.resolution.TransitionResolver import hu.bme.mit.semantifyr.oxsts.model.oxsts.Instance import hu.bme.mit.semantifyr.oxsts.model.oxsts.impl.InstanceImpl diff --git a/subprojects/compiler/src/main/kotlin/utils/InstanceTreeIterator.kt b/subprojects/semantifyr/src/main/kotlin/utils/InstanceTreeIterator.kt similarity index 93% rename from subprojects/compiler/src/main/kotlin/utils/InstanceTreeIterator.kt rename to subprojects/semantifyr/src/main/kotlin/utils/InstanceTreeIterator.kt index 0eaa178..fe849a3 100644 --- a/subprojects/compiler/src/main/kotlin/utils/InstanceTreeIterator.kt +++ b/subprojects/semantifyr/src/main/kotlin/utils/InstanceTreeIterator.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.utils +package hu.bme.mit.semantifyr.oxsts.semantifyr.utils import hu.bme.mit.semantifyr.oxsts.model.oxsts.Instance import java.util.* diff --git a/subprojects/compiler/src/main/kotlin/utils/OxstsFactory.kt b/subprojects/semantifyr/src/main/kotlin/utils/OxstsFactory.kt similarity index 98% rename from subprojects/compiler/src/main/kotlin/utils/OxstsFactory.kt rename to subprojects/semantifyr/src/main/kotlin/utils/OxstsFactory.kt index 2c2a679..4dbb677 100644 --- a/subprojects/compiler/src/main/kotlin/utils/OxstsFactory.kt +++ b/subprojects/semantifyr/src/main/kotlin/utils/OxstsFactory.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.utils +package hu.bme.mit.semantifyr.oxsts.semantifyr.utils import hu.bme.mit.semantifyr.oxsts.model.oxsts.AndOperator import hu.bme.mit.semantifyr.oxsts.model.oxsts.Association diff --git a/subprojects/compiler/src/main/kotlin/utils/OxstsUtils.kt b/subprojects/semantifyr/src/main/kotlin/utils/OxstsUtils.kt similarity index 99% rename from subprojects/compiler/src/main/kotlin/utils/OxstsUtils.kt rename to subprojects/semantifyr/src/main/kotlin/utils/OxstsUtils.kt index 2755cea..50f8a0a 100644 --- a/subprojects/compiler/src/main/kotlin/utils/OxstsUtils.kt +++ b/subprojects/semantifyr/src/main/kotlin/utils/OxstsUtils.kt @@ -4,7 +4,7 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler.utils +package hu.bme.mit.semantifyr.oxsts.semantifyr.utils import hu.bme.mit.semantifyr.oxsts.model.oxsts.BooleanType import hu.bme.mit.semantifyr.oxsts.model.oxsts.ChainReferenceExpression diff --git a/subprojects/compiler/src/main/kotlin/utils/SystemUtils.kt b/subprojects/semantifyr/src/main/kotlin/utils/SystemUtils.kt similarity index 81% rename from subprojects/compiler/src/main/kotlin/utils/SystemUtils.kt rename to subprojects/semantifyr/src/main/kotlin/utils/SystemUtils.kt index 7067cea..bb8fd3e 100644 --- a/subprojects/compiler/src/main/kotlin/utils/SystemUtils.kt +++ b/subprojects/semantifyr/src/main/kotlin/utils/SystemUtils.kt @@ -1,4 +1,4 @@ -package hu.bme.mit.semantifyr.oxsts.compiler.utils +package hu.bme.mit.semantifyr.oxsts.semantifyr.utils import kotlin.reflect.KProperty diff --git a/subprojects/compiler/src/main/resources/log4j2.properties b/subprojects/semantifyr/src/main/resources/log4j2.properties similarity index 100% rename from subprojects/compiler/src/main/resources/log4j2.properties rename to subprojects/semantifyr/src/main/resources/log4j2.properties diff --git a/subprojects/compiler/src/test/kotlin/GammaCompilationTests.kt b/subprojects/semantifyr/src/test/kotlin/GammaCompilationTests.kt similarity index 92% rename from subprojects/compiler/src/test/kotlin/GammaCompilationTests.kt rename to subprojects/semantifyr/src/test/kotlin/GammaCompilationTests.kt index aadd64b..2cf9f36 100644 --- a/subprojects/compiler/src/test/kotlin/GammaCompilationTests.kt +++ b/subprojects/semantifyr/src/test/kotlin/GammaCompilationTests.kt @@ -4,9 +4,9 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler +package hu.bme.mit.semantifyr.oxsts.semantifyr -import hu.bme.mit.semantifyr.oxsts.compiler.reader.prepareOxsts +import hu.bme.mit.semantifyr.oxsts.semantifyr.reader.prepareOxsts import hu.bme.mit.semantifyr.oxsts.lang.tests.OxstsInjectorProvider import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.extensions.InjectionExtension diff --git a/subprojects/compiler/src/test/kotlin/GammaVerificationTests.kt b/subprojects/semantifyr/src/test/kotlin/GammaVerificationTests.kt similarity index 95% rename from subprojects/compiler/src/test/kotlin/GammaVerificationTests.kt rename to subprojects/semantifyr/src/test/kotlin/GammaVerificationTests.kt index 47f2d00..5742be6 100644 --- a/subprojects/compiler/src/test/kotlin/GammaVerificationTests.kt +++ b/subprojects/semantifyr/src/test/kotlin/GammaVerificationTests.kt @@ -4,9 +4,9 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler +package hu.bme.mit.semantifyr.oxsts.semantifyr -import hu.bme.mit.semantifyr.oxsts.compiler.reader.prepareOxsts +import hu.bme.mit.semantifyr.oxsts.semantifyr.reader.prepareOxsts import hu.bme.mit.semantifyr.oxsts.lang.tests.OxstsInjectorProvider import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.extensions.InjectionExtension diff --git a/subprojects/compiler/src/test/kotlin/RegressionCompilationTests.kt b/subprojects/semantifyr/src/test/kotlin/RegressionCompilationTests.kt similarity index 94% rename from subprojects/compiler/src/test/kotlin/RegressionCompilationTests.kt rename to subprojects/semantifyr/src/test/kotlin/RegressionCompilationTests.kt index 21d171a..cf9d769 100644 --- a/subprojects/compiler/src/test/kotlin/RegressionCompilationTests.kt +++ b/subprojects/semantifyr/src/test/kotlin/RegressionCompilationTests.kt @@ -4,9 +4,9 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler +package hu.bme.mit.semantifyr.oxsts.semantifyr -import hu.bme.mit.semantifyr.oxsts.compiler.reader.prepareOxsts +import hu.bme.mit.semantifyr.oxsts.semantifyr.reader.prepareOxsts import hu.bme.mit.semantifyr.oxsts.lang.tests.OxstsInjectorProvider import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.extensions.InjectionExtension diff --git a/subprojects/compiler/src/testFixtures/kotlin/CompilationTest.kt b/subprojects/semantifyr/src/testFixtures/kotlin/CompilationTest.kt similarity index 85% rename from subprojects/compiler/src/testFixtures/kotlin/CompilationTest.kt rename to subprojects/semantifyr/src/testFixtures/kotlin/CompilationTest.kt index 97b1952..c6734be 100644 --- a/subprojects/compiler/src/testFixtures/kotlin/CompilationTest.kt +++ b/subprojects/semantifyr/src/testFixtures/kotlin/CompilationTest.kt @@ -4,11 +4,11 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler +package hu.bme.mit.semantifyr.oxsts.semantifyr -import hu.bme.mit.semantifyr.oxsts.compiler.reader.OxstsReader -import hu.bme.mit.semantifyr.oxsts.compiler.serialization.Serializer -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.XstsTransformer +import hu.bme.mit.semantifyr.oxsts.semantifyr.reader.OxstsReader +import hu.bme.mit.semantifyr.oxsts.semantifyr.serialization.Serializer +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.XstsTransformer import org.junit.jupiter.api.Assertions import java.io.File import java.nio.charset.Charset diff --git a/subprojects/compiler/src/testFixtures/kotlin/VerificationTest.kt b/subprojects/semantifyr/src/testFixtures/kotlin/VerificationTest.kt similarity index 89% rename from subprojects/compiler/src/testFixtures/kotlin/VerificationTest.kt rename to subprojects/semantifyr/src/testFixtures/kotlin/VerificationTest.kt index f254c99..7dd42f8 100644 --- a/subprojects/compiler/src/testFixtures/kotlin/VerificationTest.kt +++ b/subprojects/semantifyr/src/testFixtures/kotlin/VerificationTest.kt @@ -4,13 +4,13 @@ * SPDX-License-Identifier: EPL-2.0 */ -package hu.bme.mit.semantifyr.oxsts.compiler +package hu.bme.mit.semantifyr.oxsts.semantifyr -import hu.bme.mit.semantifyr.oxsts.compiler.reader.OxstsReader -import hu.bme.mit.semantifyr.oxsts.compiler.serialization.Serializer -import hu.bme.mit.semantifyr.oxsts.compiler.theta.ThetaExecutor -import hu.bme.mit.semantifyr.oxsts.compiler.transformation.XstsTransformer -import hu.bme.mit.semantifyr.oxsts.compiler.utils.EnvVar +import hu.bme.mit.semantifyr.oxsts.semantifyr.reader.OxstsReader +import hu.bme.mit.semantifyr.oxsts.semantifyr.serialization.Serializer +import hu.bme.mit.semantifyr.oxsts.semantifyr.theta.ThetaExecutor +import hu.bme.mit.semantifyr.oxsts.semantifyr.transformation.XstsTransformer +import hu.bme.mit.semantifyr.oxsts.semantifyr.utils.EnvVar import hu.bme.mit.semantifyr.oxsts.model.oxsts.Target import org.junit.jupiter.api.Assertions import org.slf4j.LoggerFactory From 480bdfb17381deab149389212b5a7bf20f6a747f Mon Sep 17 00:00:00 2001 From: Armin Zavada Date: Mon, 7 Oct 2024 14:15:40 +0200 Subject: [PATCH 27/36] #13 Introduced verification command --- ...eMission LeaderOperational_Unsafe.run.xml} | 4 +- ...leMission LeaderOperational_Unsafe.run.xml | 12 +++++ ...leMission LeaderOperational_Unsafe.run.xml | 12 +++++ gradle/libs.versions.toml | 4 +- .../semantifyr-vscode/src/extension.ts | 34 ++++++++++++-- subprojects/semantifyr/build.gradle.kts | 2 +- .../src/main/kotlin/SemantifyrCli.kt | 44 +++++++------------ .../main/kotlin/commands/BaseVerifyCommand.kt | 42 ++++++++++++++++++ .../main/kotlin/commands/CompileCommand.kt | 36 +++++++++++++++ .../src/main/kotlin/commands/VerifyCommand.kt | 34 ++++++++++++++ .../main/kotlin/commands/VerifyXstsCommand.kt | 16 +++++++ 11 files changed, 203 insertions(+), 37 deletions(-) rename .run/{SemantifyrCliKt.run.xml => Compile SimpleMission LeaderOperational_Unsafe.run.xml} (58%) create mode 100644 .run/Verify SimpleMission LeaderOperational_Unsafe.run.xml create mode 100644 .run/Verify XSTS SimpleMission LeaderOperational_Unsafe.run.xml create mode 100644 subprojects/semantifyr/src/main/kotlin/commands/BaseVerifyCommand.kt create mode 100644 subprojects/semantifyr/src/main/kotlin/commands/CompileCommand.kt create mode 100644 subprojects/semantifyr/src/main/kotlin/commands/VerifyCommand.kt create mode 100644 subprojects/semantifyr/src/main/kotlin/commands/VerifyXstsCommand.kt diff --git a/.run/SemantifyrCliKt.run.xml b/.run/Compile SimpleMission LeaderOperational_Unsafe.run.xml similarity index 58% rename from .run/SemantifyrCliKt.run.xml rename to .run/Compile SimpleMission LeaderOperational_Unsafe.run.xml index a5d4556..d7f18d3 100644 --- a/.run/SemantifyrCliKt.run.xml +++ b/.run/Compile SimpleMission LeaderOperational_Unsafe.run.xml @@ -1,8 +1,8 @@ - +