├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── res └── index.txt ├── src ├── conf.ts └── main.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "eslint:recommended", 4 | "plugin:@typescript-eslint/recommended", 5 | "prettier" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | game/ 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "prettier-plugin-organize-imports" 4 | ] 5 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LÖVE 2D TypeScript Project Template 2 | 3 | A template LÖVE 2D TypeScript Project made possible with [TypeScriptToLua](https://github.com/TypeScriptToLua/TypeScriptToLua). 4 | 5 | You can click `Use this template` to clone this repo, or download it as a zip. 6 | 7 | ## Scripts 8 | 9 | Requires [NodeJS](https://nodejs.org/en/download/) and [LÖVE 2D](https://love2d.org/) within your CLI. 10 | 11 | | Command | Description | 12 | | ---------------------- | ------------------------------------------------ | 13 | | `npm install` | ⏬ Install dependencies | 14 | | `npm run build` | 🔨 Build everything | 15 | | `npm run watch` | 🔨x♾ Re-build Lua files when a TS file is saved | 16 | | `npm start` | 🎮 Start the game | 17 | | `npm run fix:prettier` | 💄 Fixes linting issues | 18 | | `npm run lint` | 💄 Checks for linting issues in code | 19 | 20 | To distribute the game, see the [game distribution wiki page](https://love2d.org/wiki/Game_Distribution). 21 | 22 | External files can be placed in `res/` and referenced with `res/`. 23 | 24 | e.g. 25 | 26 | ```ts 27 | love.filesystem.read("res/input.txt"); 28 | ``` 29 | 30 | ### Notes 31 | 32 | - If you're using VS Code, the [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) extension will automatically format your code for you so you don't need to run `npm run fix:prettier` on every change. 33 | - Index your arrays at 0 in your source code. 34 | - Lua does not iterate over sparse arrays (arrays with no values in the middle of them). 35 | 36 | ### Links 37 | 38 | - [TypeScriptToLua Wiki](https://github.com/TypeScriptToLua/TypeScriptToLua/wiki) 39 | - [Writing Declarations](https://github.com/TypeScriptToLua/TypeScriptToLua/wiki/Writing-Declarations) 40 | - [Compiler Directives](https://github.com/TypeScriptToLua/TypeScriptToLua/wiki/Compiler-Directives) 41 | - [LÖVE 2D Wiki](https://love2d.org/wiki/Main_Page) 42 | - [LÖVE 2D - Getting Started](https://love2d.org/wiki/Getting_Started) 43 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "love-typescript-template", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "devDependencies": { 8 | "@typescript-eslint/eslint-plugin": "^8.5.0", 9 | "copyfiles": "^2.4.1", 10 | "eslint": "^9.10.0", 11 | "eslint-config-prettier": "^9.0.0", 12 | "love-typescript-definitions": "^11.5.0", 13 | "lua-types": "^2.13.1", 14 | "prettier": "^3.2.5", 15 | "prettier-plugin-organize-imports": "^4.0.0", 16 | "typescript-to-lua": "^1.25.1" 17 | } 18 | }, 19 | "node_modules/@aashutoshrathi/word-wrap": { 20 | "version": "1.2.6", 21 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 22 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 23 | "dev": true, 24 | "engines": { 25 | "node": ">=0.10.0" 26 | } 27 | }, 28 | "node_modules/@eslint-community/eslint-utils": { 29 | "version": "4.4.0", 30 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 31 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 32 | "dev": true, 33 | "dependencies": { 34 | "eslint-visitor-keys": "^3.3.0" 35 | }, 36 | "engines": { 37 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 38 | }, 39 | "peerDependencies": { 40 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 41 | } 42 | }, 43 | "node_modules/@eslint-community/regexpp": { 44 | "version": "4.11.0", 45 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", 46 | "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", 47 | "dev": true, 48 | "license": "MIT", 49 | "engines": { 50 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 51 | } 52 | }, 53 | "node_modules/@eslint/config-array": { 54 | "version": "0.18.0", 55 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.18.0.tgz", 56 | "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", 57 | "dev": true, 58 | "license": "Apache-2.0", 59 | "dependencies": { 60 | "@eslint/object-schema": "^2.1.4", 61 | "debug": "^4.3.1", 62 | "minimatch": "^3.1.2" 63 | }, 64 | "engines": { 65 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 66 | } 67 | }, 68 | "node_modules/@eslint/config-array/node_modules/brace-expansion": { 69 | "version": "1.1.11", 70 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 71 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 72 | "dev": true, 73 | "license": "MIT", 74 | "dependencies": { 75 | "balanced-match": "^1.0.0", 76 | "concat-map": "0.0.1" 77 | } 78 | }, 79 | "node_modules/@eslint/config-array/node_modules/minimatch": { 80 | "version": "3.1.2", 81 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 82 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 83 | "dev": true, 84 | "license": "ISC", 85 | "dependencies": { 86 | "brace-expansion": "^1.1.7" 87 | }, 88 | "engines": { 89 | "node": "*" 90 | } 91 | }, 92 | "node_modules/@eslint/eslintrc": { 93 | "version": "3.1.0", 94 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", 95 | "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", 96 | "dev": true, 97 | "license": "MIT", 98 | "dependencies": { 99 | "ajv": "^6.12.4", 100 | "debug": "^4.3.2", 101 | "espree": "^10.0.1", 102 | "globals": "^14.0.0", 103 | "ignore": "^5.2.0", 104 | "import-fresh": "^3.2.1", 105 | "js-yaml": "^4.1.0", 106 | "minimatch": "^3.1.2", 107 | "strip-json-comments": "^3.1.1" 108 | }, 109 | "engines": { 110 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 111 | }, 112 | "funding": { 113 | "url": "https://opencollective.com/eslint" 114 | } 115 | }, 116 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 117 | "version": "1.1.11", 118 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 119 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 120 | "dev": true, 121 | "license": "MIT", 122 | "dependencies": { 123 | "balanced-match": "^1.0.0", 124 | "concat-map": "0.0.1" 125 | } 126 | }, 127 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 128 | "version": "3.1.2", 129 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 130 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 131 | "dev": true, 132 | "license": "ISC", 133 | "dependencies": { 134 | "brace-expansion": "^1.1.7" 135 | }, 136 | "engines": { 137 | "node": "*" 138 | } 139 | }, 140 | "node_modules/@eslint/js": { 141 | "version": "9.10.0", 142 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.10.0.tgz", 143 | "integrity": "sha512-fuXtbiP5GWIn8Fz+LWoOMVf/Jxm+aajZYkhi6CuEm4SxymFM+eUWzbO9qXT+L0iCkL5+KGYMCSGxo686H19S1g==", 144 | "dev": true, 145 | "license": "MIT", 146 | "engines": { 147 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 148 | } 149 | }, 150 | "node_modules/@eslint/object-schema": { 151 | "version": "2.1.4", 152 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", 153 | "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", 154 | "dev": true, 155 | "license": "Apache-2.0", 156 | "engines": { 157 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 158 | } 159 | }, 160 | "node_modules/@eslint/plugin-kit": { 161 | "version": "0.1.0", 162 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.1.0.tgz", 163 | "integrity": "sha512-autAXT203ixhqei9xt+qkYOvY8l6LAFIdT2UXc/RPNeUVfqRF1BV94GTJyVPFKT8nFM6MyVJhjLj9E8JWvf5zQ==", 164 | "dev": true, 165 | "license": "Apache-2.0", 166 | "dependencies": { 167 | "levn": "^0.4.1" 168 | }, 169 | "engines": { 170 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 171 | } 172 | }, 173 | "node_modules/@humanwhocodes/module-importer": { 174 | "version": "1.0.1", 175 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 176 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 177 | "dev": true, 178 | "engines": { 179 | "node": ">=12.22" 180 | }, 181 | "funding": { 182 | "type": "github", 183 | "url": "https://github.com/sponsors/nzakas" 184 | } 185 | }, 186 | "node_modules/@humanwhocodes/retry": { 187 | "version": "0.3.0", 188 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", 189 | "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", 190 | "dev": true, 191 | "license": "Apache-2.0", 192 | "engines": { 193 | "node": ">=18.18" 194 | }, 195 | "funding": { 196 | "type": "github", 197 | "url": "https://github.com/sponsors/nzakas" 198 | } 199 | }, 200 | "node_modules/@nodelib/fs.scandir": { 201 | "version": "2.1.5", 202 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 203 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 204 | "dev": true, 205 | "dependencies": { 206 | "@nodelib/fs.stat": "2.0.5", 207 | "run-parallel": "^1.1.9" 208 | }, 209 | "engines": { 210 | "node": ">= 8" 211 | } 212 | }, 213 | "node_modules/@nodelib/fs.stat": { 214 | "version": "2.0.5", 215 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 216 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 217 | "dev": true, 218 | "engines": { 219 | "node": ">= 8" 220 | } 221 | }, 222 | "node_modules/@nodelib/fs.walk": { 223 | "version": "1.2.8", 224 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 225 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 226 | "dev": true, 227 | "dependencies": { 228 | "@nodelib/fs.scandir": "2.1.5", 229 | "fastq": "^1.6.0" 230 | }, 231 | "engines": { 232 | "node": ">= 8" 233 | } 234 | }, 235 | "node_modules/@typescript-eslint/eslint-plugin": { 236 | "version": "8.5.0", 237 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.5.0.tgz", 238 | "integrity": "sha512-lHS5hvz33iUFQKuPFGheAB84LwcJ60G8vKnEhnfcK1l8kGVLro2SFYW6K0/tj8FUhRJ0VHyg1oAfg50QGbPPHw==", 239 | "dev": true, 240 | "license": "MIT", 241 | "dependencies": { 242 | "@eslint-community/regexpp": "^4.10.0", 243 | "@typescript-eslint/scope-manager": "8.5.0", 244 | "@typescript-eslint/type-utils": "8.5.0", 245 | "@typescript-eslint/utils": "8.5.0", 246 | "@typescript-eslint/visitor-keys": "8.5.0", 247 | "graphemer": "^1.4.0", 248 | "ignore": "^5.3.1", 249 | "natural-compare": "^1.4.0", 250 | "ts-api-utils": "^1.3.0" 251 | }, 252 | "engines": { 253 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 254 | }, 255 | "funding": { 256 | "type": "opencollective", 257 | "url": "https://opencollective.com/typescript-eslint" 258 | }, 259 | "peerDependencies": { 260 | "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", 261 | "eslint": "^8.57.0 || ^9.0.0" 262 | }, 263 | "peerDependenciesMeta": { 264 | "typescript": { 265 | "optional": true 266 | } 267 | } 268 | }, 269 | "node_modules/@typescript-eslint/parser": { 270 | "version": "8.5.0", 271 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.5.0.tgz", 272 | "integrity": "sha512-gF77eNv0Xz2UJg/NbpWJ0kqAm35UMsvZf1GHj8D9MRFTj/V3tAciIWXfmPLsAAF/vUlpWPvUDyH1jjsr0cMVWw==", 273 | "dev": true, 274 | "license": "BSD-2-Clause", 275 | "peer": true, 276 | "dependencies": { 277 | "@typescript-eslint/scope-manager": "8.5.0", 278 | "@typescript-eslint/types": "8.5.0", 279 | "@typescript-eslint/typescript-estree": "8.5.0", 280 | "@typescript-eslint/visitor-keys": "8.5.0", 281 | "debug": "^4.3.4" 282 | }, 283 | "engines": { 284 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 285 | }, 286 | "funding": { 287 | "type": "opencollective", 288 | "url": "https://opencollective.com/typescript-eslint" 289 | }, 290 | "peerDependencies": { 291 | "eslint": "^8.57.0 || ^9.0.0" 292 | }, 293 | "peerDependenciesMeta": { 294 | "typescript": { 295 | "optional": true 296 | } 297 | } 298 | }, 299 | "node_modules/@typescript-eslint/scope-manager": { 300 | "version": "8.5.0", 301 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.5.0.tgz", 302 | "integrity": "sha512-06JOQ9Qgj33yvBEx6tpC8ecP9o860rsR22hWMEd12WcTRrfaFgHr2RB/CA/B+7BMhHkXT4chg2MyboGdFGawYg==", 303 | "dev": true, 304 | "license": "MIT", 305 | "dependencies": { 306 | "@typescript-eslint/types": "8.5.0", 307 | "@typescript-eslint/visitor-keys": "8.5.0" 308 | }, 309 | "engines": { 310 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 311 | }, 312 | "funding": { 313 | "type": "opencollective", 314 | "url": "https://opencollective.com/typescript-eslint" 315 | } 316 | }, 317 | "node_modules/@typescript-eslint/type-utils": { 318 | "version": "8.5.0", 319 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.5.0.tgz", 320 | "integrity": "sha512-N1K8Ix+lUM+cIDhL2uekVn/ZD7TZW+9/rwz8DclQpcQ9rk4sIL5CAlBC0CugWKREmDjBzI/kQqU4wkg46jWLYA==", 321 | "dev": true, 322 | "license": "MIT", 323 | "dependencies": { 324 | "@typescript-eslint/typescript-estree": "8.5.0", 325 | "@typescript-eslint/utils": "8.5.0", 326 | "debug": "^4.3.4", 327 | "ts-api-utils": "^1.3.0" 328 | }, 329 | "engines": { 330 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 331 | }, 332 | "funding": { 333 | "type": "opencollective", 334 | "url": "https://opencollective.com/typescript-eslint" 335 | }, 336 | "peerDependenciesMeta": { 337 | "typescript": { 338 | "optional": true 339 | } 340 | } 341 | }, 342 | "node_modules/@typescript-eslint/types": { 343 | "version": "8.5.0", 344 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.5.0.tgz", 345 | "integrity": "sha512-qjkormnQS5wF9pjSi6q60bKUHH44j2APxfh9TQRXK8wbYVeDYYdYJGIROL87LGZZ2gz3Rbmjc736qyL8deVtdw==", 346 | "dev": true, 347 | "license": "MIT", 348 | "engines": { 349 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 350 | }, 351 | "funding": { 352 | "type": "opencollective", 353 | "url": "https://opencollective.com/typescript-eslint" 354 | } 355 | }, 356 | "node_modules/@typescript-eslint/typescript-estree": { 357 | "version": "8.5.0", 358 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.5.0.tgz", 359 | "integrity": "sha512-vEG2Sf9P8BPQ+d0pxdfndw3xIXaoSjliG0/Ejk7UggByZPKXmJmw3GW5jV2gHNQNawBUyfahoSiCFVov0Ruf7Q==", 360 | "dev": true, 361 | "license": "BSD-2-Clause", 362 | "dependencies": { 363 | "@typescript-eslint/types": "8.5.0", 364 | "@typescript-eslint/visitor-keys": "8.5.0", 365 | "debug": "^4.3.4", 366 | "fast-glob": "^3.3.2", 367 | "is-glob": "^4.0.3", 368 | "minimatch": "^9.0.4", 369 | "semver": "^7.6.0", 370 | "ts-api-utils": "^1.3.0" 371 | }, 372 | "engines": { 373 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 374 | }, 375 | "funding": { 376 | "type": "opencollective", 377 | "url": "https://opencollective.com/typescript-eslint" 378 | }, 379 | "peerDependenciesMeta": { 380 | "typescript": { 381 | "optional": true 382 | } 383 | } 384 | }, 385 | "node_modules/@typescript-eslint/utils": { 386 | "version": "8.5.0", 387 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.5.0.tgz", 388 | "integrity": "sha512-6yyGYVL0e+VzGYp60wvkBHiqDWOpT63pdMV2CVG4LVDd5uR6q1qQN/7LafBZtAtNIn/mqXjsSeS5ggv/P0iECw==", 389 | "dev": true, 390 | "license": "MIT", 391 | "dependencies": { 392 | "@eslint-community/eslint-utils": "^4.4.0", 393 | "@typescript-eslint/scope-manager": "8.5.0", 394 | "@typescript-eslint/types": "8.5.0", 395 | "@typescript-eslint/typescript-estree": "8.5.0" 396 | }, 397 | "engines": { 398 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 399 | }, 400 | "funding": { 401 | "type": "opencollective", 402 | "url": "https://opencollective.com/typescript-eslint" 403 | }, 404 | "peerDependencies": { 405 | "eslint": "^8.57.0 || ^9.0.0" 406 | } 407 | }, 408 | "node_modules/@typescript-eslint/visitor-keys": { 409 | "version": "8.5.0", 410 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.5.0.tgz", 411 | "integrity": "sha512-yTPqMnbAZJNy2Xq2XU8AdtOW9tJIr+UQb64aXB9f3B1498Zx9JorVgFJcZpEc9UBuCCrdzKID2RGAMkYcDtZOw==", 412 | "dev": true, 413 | "license": "MIT", 414 | "dependencies": { 415 | "@typescript-eslint/types": "8.5.0", 416 | "eslint-visitor-keys": "^3.4.3" 417 | }, 418 | "engines": { 419 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 420 | }, 421 | "funding": { 422 | "type": "opencollective", 423 | "url": "https://opencollective.com/typescript-eslint" 424 | } 425 | }, 426 | "node_modules/@typescript-to-lua/language-extensions": { 427 | "version": "1.19.0", 428 | "resolved": "https://registry.npmjs.org/@typescript-to-lua/language-extensions/-/language-extensions-1.19.0.tgz", 429 | "integrity": "sha512-Os5wOKwviTD4LeqI29N0btYOjokSJ97iCf45EOjIABlb5IwNQy7AE/AqZJobRw3ywHH8+KzJUMkEirWPzh2tUA==", 430 | "dev": true 431 | }, 432 | "node_modules/acorn": { 433 | "version": "8.12.1", 434 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", 435 | "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", 436 | "dev": true, 437 | "license": "MIT", 438 | "bin": { 439 | "acorn": "bin/acorn" 440 | }, 441 | "engines": { 442 | "node": ">=0.4.0" 443 | } 444 | }, 445 | "node_modules/acorn-jsx": { 446 | "version": "5.3.2", 447 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 448 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 449 | "dev": true, 450 | "license": "MIT", 451 | "peerDependencies": { 452 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 453 | } 454 | }, 455 | "node_modules/ajv": { 456 | "version": "6.12.6", 457 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 458 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 459 | "dev": true, 460 | "license": "MIT", 461 | "dependencies": { 462 | "fast-deep-equal": "^3.1.1", 463 | "fast-json-stable-stringify": "^2.0.0", 464 | "json-schema-traverse": "^0.4.1", 465 | "uri-js": "^4.2.2" 466 | }, 467 | "funding": { 468 | "type": "github", 469 | "url": "https://github.com/sponsors/epoberezkin" 470 | } 471 | }, 472 | "node_modules/ansi-regex": { 473 | "version": "5.0.1", 474 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 475 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 476 | "dev": true, 477 | "engines": { 478 | "node": ">=8" 479 | } 480 | }, 481 | "node_modules/ansi-styles": { 482 | "version": "4.3.0", 483 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 484 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 485 | "dev": true, 486 | "dependencies": { 487 | "color-convert": "^2.0.1" 488 | }, 489 | "engines": { 490 | "node": ">=8" 491 | }, 492 | "funding": { 493 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 494 | } 495 | }, 496 | "node_modules/argparse": { 497 | "version": "2.0.1", 498 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 499 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 500 | "dev": true, 501 | "license": "Python-2.0" 502 | }, 503 | "node_modules/balanced-match": { 504 | "version": "1.0.2", 505 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 506 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 507 | "dev": true 508 | }, 509 | "node_modules/brace-expansion": { 510 | "version": "2.0.1", 511 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 512 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 513 | "dev": true, 514 | "license": "MIT", 515 | "dependencies": { 516 | "balanced-match": "^1.0.0" 517 | } 518 | }, 519 | "node_modules/braces": { 520 | "version": "3.0.3", 521 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 522 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 523 | "dev": true, 524 | "license": "MIT", 525 | "dependencies": { 526 | "fill-range": "^7.1.1" 527 | }, 528 | "engines": { 529 | "node": ">=8" 530 | } 531 | }, 532 | "node_modules/callsites": { 533 | "version": "3.1.0", 534 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 535 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 536 | "dev": true, 537 | "license": "MIT", 538 | "engines": { 539 | "node": ">=6" 540 | } 541 | }, 542 | "node_modules/chalk": { 543 | "version": "4.1.2", 544 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 545 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 546 | "dev": true, 547 | "dependencies": { 548 | "ansi-styles": "^4.1.0", 549 | "supports-color": "^7.1.0" 550 | }, 551 | "engines": { 552 | "node": ">=10" 553 | }, 554 | "funding": { 555 | "url": "https://github.com/chalk/chalk?sponsor=1" 556 | } 557 | }, 558 | "node_modules/cliui": { 559 | "version": "7.0.4", 560 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", 561 | "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", 562 | "dev": true, 563 | "dependencies": { 564 | "string-width": "^4.2.0", 565 | "strip-ansi": "^6.0.0", 566 | "wrap-ansi": "^7.0.0" 567 | } 568 | }, 569 | "node_modules/color-convert": { 570 | "version": "2.0.1", 571 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 572 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 573 | "dev": true, 574 | "dependencies": { 575 | "color-name": "~1.1.4" 576 | }, 577 | "engines": { 578 | "node": ">=7.0.0" 579 | } 580 | }, 581 | "node_modules/color-name": { 582 | "version": "1.1.4", 583 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 584 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 585 | "dev": true 586 | }, 587 | "node_modules/concat-map": { 588 | "version": "0.0.1", 589 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 590 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 591 | "dev": true 592 | }, 593 | "node_modules/copyfiles": { 594 | "version": "2.4.1", 595 | "resolved": "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.1.tgz", 596 | "integrity": "sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==", 597 | "dev": true, 598 | "dependencies": { 599 | "glob": "^7.0.5", 600 | "minimatch": "^3.0.3", 601 | "mkdirp": "^1.0.4", 602 | "noms": "0.0.0", 603 | "through2": "^2.0.1", 604 | "untildify": "^4.0.0", 605 | "yargs": "^16.1.0" 606 | }, 607 | "bin": { 608 | "copyfiles": "copyfiles", 609 | "copyup": "copyfiles" 610 | } 611 | }, 612 | "node_modules/copyfiles/node_modules/brace-expansion": { 613 | "version": "1.1.11", 614 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 615 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 616 | "dev": true, 617 | "dependencies": { 618 | "balanced-match": "^1.0.0", 619 | "concat-map": "0.0.1" 620 | } 621 | }, 622 | "node_modules/copyfiles/node_modules/minimatch": { 623 | "version": "3.1.2", 624 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 625 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 626 | "dev": true, 627 | "dependencies": { 628 | "brace-expansion": "^1.1.7" 629 | }, 630 | "engines": { 631 | "node": "*" 632 | } 633 | }, 634 | "node_modules/core-util-is": { 635 | "version": "1.0.3", 636 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 637 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", 638 | "dev": true 639 | }, 640 | "node_modules/cross-spawn": { 641 | "version": "7.0.3", 642 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 643 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 644 | "dev": true, 645 | "dependencies": { 646 | "path-key": "^3.1.0", 647 | "shebang-command": "^2.0.0", 648 | "which": "^2.0.1" 649 | }, 650 | "engines": { 651 | "node": ">= 8" 652 | } 653 | }, 654 | "node_modules/debug": { 655 | "version": "4.3.4", 656 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 657 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 658 | "dev": true, 659 | "dependencies": { 660 | "ms": "2.1.2" 661 | }, 662 | "engines": { 663 | "node": ">=6.0" 664 | }, 665 | "peerDependenciesMeta": { 666 | "supports-color": { 667 | "optional": true 668 | } 669 | } 670 | }, 671 | "node_modules/deep-is": { 672 | "version": "0.1.4", 673 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 674 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 675 | "dev": true 676 | }, 677 | "node_modules/emoji-regex": { 678 | "version": "8.0.0", 679 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 680 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 681 | "dev": true 682 | }, 683 | "node_modules/enhanced-resolve": { 684 | "version": "5.15.0", 685 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", 686 | "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", 687 | "dev": true, 688 | "dependencies": { 689 | "graceful-fs": "^4.2.4", 690 | "tapable": "^2.2.0" 691 | }, 692 | "engines": { 693 | "node": ">=10.13.0" 694 | } 695 | }, 696 | "node_modules/escalade": { 697 | "version": "3.1.1", 698 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 699 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 700 | "dev": true, 701 | "engines": { 702 | "node": ">=6" 703 | } 704 | }, 705 | "node_modules/escape-string-regexp": { 706 | "version": "4.0.0", 707 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 708 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 709 | "dev": true, 710 | "engines": { 711 | "node": ">=10" 712 | }, 713 | "funding": { 714 | "url": "https://github.com/sponsors/sindresorhus" 715 | } 716 | }, 717 | "node_modules/eslint": { 718 | "version": "9.10.0", 719 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.10.0.tgz", 720 | "integrity": "sha512-Y4D0IgtBZfOcOUAIQTSXBKoNGfY0REGqHJG6+Q81vNippW5YlKjHFj4soMxamKK1NXHUWuBZTLdU3Km+L/pcHw==", 721 | "dev": true, 722 | "license": "MIT", 723 | "dependencies": { 724 | "@eslint-community/eslint-utils": "^4.2.0", 725 | "@eslint-community/regexpp": "^4.11.0", 726 | "@eslint/config-array": "^0.18.0", 727 | "@eslint/eslintrc": "^3.1.0", 728 | "@eslint/js": "9.10.0", 729 | "@eslint/plugin-kit": "^0.1.0", 730 | "@humanwhocodes/module-importer": "^1.0.1", 731 | "@humanwhocodes/retry": "^0.3.0", 732 | "@nodelib/fs.walk": "^1.2.8", 733 | "ajv": "^6.12.4", 734 | "chalk": "^4.0.0", 735 | "cross-spawn": "^7.0.2", 736 | "debug": "^4.3.2", 737 | "escape-string-regexp": "^4.0.0", 738 | "eslint-scope": "^8.0.2", 739 | "eslint-visitor-keys": "^4.0.0", 740 | "espree": "^10.1.0", 741 | "esquery": "^1.5.0", 742 | "esutils": "^2.0.2", 743 | "fast-deep-equal": "^3.1.3", 744 | "file-entry-cache": "^8.0.0", 745 | "find-up": "^5.0.0", 746 | "glob-parent": "^6.0.2", 747 | "ignore": "^5.2.0", 748 | "imurmurhash": "^0.1.4", 749 | "is-glob": "^4.0.0", 750 | "is-path-inside": "^3.0.3", 751 | "json-stable-stringify-without-jsonify": "^1.0.1", 752 | "lodash.merge": "^4.6.2", 753 | "minimatch": "^3.1.2", 754 | "natural-compare": "^1.4.0", 755 | "optionator": "^0.9.3", 756 | "strip-ansi": "^6.0.1", 757 | "text-table": "^0.2.0" 758 | }, 759 | "bin": { 760 | "eslint": "bin/eslint.js" 761 | }, 762 | "engines": { 763 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 764 | }, 765 | "funding": { 766 | "url": "https://eslint.org/donate" 767 | }, 768 | "peerDependencies": { 769 | "jiti": "*" 770 | }, 771 | "peerDependenciesMeta": { 772 | "jiti": { 773 | "optional": true 774 | } 775 | } 776 | }, 777 | "node_modules/eslint-config-prettier": { 778 | "version": "9.1.0", 779 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", 780 | "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", 781 | "dev": true, 782 | "bin": { 783 | "eslint-config-prettier": "bin/cli.js" 784 | }, 785 | "peerDependencies": { 786 | "eslint": ">=7.0.0" 787 | } 788 | }, 789 | "node_modules/eslint-scope": { 790 | "version": "8.0.2", 791 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.2.tgz", 792 | "integrity": "sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==", 793 | "dev": true, 794 | "license": "BSD-2-Clause", 795 | "dependencies": { 796 | "esrecurse": "^4.3.0", 797 | "estraverse": "^5.2.0" 798 | }, 799 | "engines": { 800 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 801 | }, 802 | "funding": { 803 | "url": "https://opencollective.com/eslint" 804 | } 805 | }, 806 | "node_modules/eslint-visitor-keys": { 807 | "version": "3.4.3", 808 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 809 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 810 | "dev": true, 811 | "engines": { 812 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 813 | }, 814 | "funding": { 815 | "url": "https://opencollective.com/eslint" 816 | } 817 | }, 818 | "node_modules/eslint/node_modules/brace-expansion": { 819 | "version": "1.1.11", 820 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 821 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 822 | "dev": true, 823 | "dependencies": { 824 | "balanced-match": "^1.0.0", 825 | "concat-map": "0.0.1" 826 | } 827 | }, 828 | "node_modules/eslint/node_modules/eslint-visitor-keys": { 829 | "version": "4.0.0", 830 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", 831 | "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", 832 | "dev": true, 833 | "license": "Apache-2.0", 834 | "engines": { 835 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 836 | }, 837 | "funding": { 838 | "url": "https://opencollective.com/eslint" 839 | } 840 | }, 841 | "node_modules/eslint/node_modules/minimatch": { 842 | "version": "3.1.2", 843 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 844 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 845 | "dev": true, 846 | "dependencies": { 847 | "brace-expansion": "^1.1.7" 848 | }, 849 | "engines": { 850 | "node": "*" 851 | } 852 | }, 853 | "node_modules/espree": { 854 | "version": "10.1.0", 855 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", 856 | "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", 857 | "dev": true, 858 | "license": "BSD-2-Clause", 859 | "dependencies": { 860 | "acorn": "^8.12.0", 861 | "acorn-jsx": "^5.3.2", 862 | "eslint-visitor-keys": "^4.0.0" 863 | }, 864 | "engines": { 865 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 866 | }, 867 | "funding": { 868 | "url": "https://opencollective.com/eslint" 869 | } 870 | }, 871 | "node_modules/espree/node_modules/eslint-visitor-keys": { 872 | "version": "4.0.0", 873 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", 874 | "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", 875 | "dev": true, 876 | "license": "Apache-2.0", 877 | "engines": { 878 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 879 | }, 880 | "funding": { 881 | "url": "https://opencollective.com/eslint" 882 | } 883 | }, 884 | "node_modules/esquery": { 885 | "version": "1.5.0", 886 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 887 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 888 | "dev": true, 889 | "dependencies": { 890 | "estraverse": "^5.1.0" 891 | }, 892 | "engines": { 893 | "node": ">=0.10" 894 | } 895 | }, 896 | "node_modules/esrecurse": { 897 | "version": "4.3.0", 898 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 899 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 900 | "dev": true, 901 | "license": "BSD-2-Clause", 902 | "dependencies": { 903 | "estraverse": "^5.2.0" 904 | }, 905 | "engines": { 906 | "node": ">=4.0" 907 | } 908 | }, 909 | "node_modules/estraverse": { 910 | "version": "5.3.0", 911 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 912 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 913 | "dev": true, 914 | "engines": { 915 | "node": ">=4.0" 916 | } 917 | }, 918 | "node_modules/esutils": { 919 | "version": "2.0.3", 920 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 921 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 922 | "dev": true, 923 | "license": "BSD-2-Clause", 924 | "engines": { 925 | "node": ">=0.10.0" 926 | } 927 | }, 928 | "node_modules/fast-deep-equal": { 929 | "version": "3.1.3", 930 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 931 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 932 | "dev": true, 933 | "license": "MIT" 934 | }, 935 | "node_modules/fast-glob": { 936 | "version": "3.3.2", 937 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 938 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 939 | "dev": true, 940 | "license": "MIT", 941 | "dependencies": { 942 | "@nodelib/fs.stat": "^2.0.2", 943 | "@nodelib/fs.walk": "^1.2.3", 944 | "glob-parent": "^5.1.2", 945 | "merge2": "^1.3.0", 946 | "micromatch": "^4.0.4" 947 | }, 948 | "engines": { 949 | "node": ">=8.6.0" 950 | } 951 | }, 952 | "node_modules/fast-glob/node_modules/glob-parent": { 953 | "version": "5.1.2", 954 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 955 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 956 | "dev": true, 957 | "license": "ISC", 958 | "dependencies": { 959 | "is-glob": "^4.0.1" 960 | }, 961 | "engines": { 962 | "node": ">= 6" 963 | } 964 | }, 965 | "node_modules/fast-json-stable-stringify": { 966 | "version": "2.1.0", 967 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 968 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 969 | "dev": true, 970 | "license": "MIT" 971 | }, 972 | "node_modules/fast-levenshtein": { 973 | "version": "2.0.6", 974 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 975 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 976 | "dev": true 977 | }, 978 | "node_modules/fastq": { 979 | "version": "1.16.0", 980 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", 981 | "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", 982 | "dev": true, 983 | "dependencies": { 984 | "reusify": "^1.0.4" 985 | } 986 | }, 987 | "node_modules/file-entry-cache": { 988 | "version": "8.0.0", 989 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 990 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 991 | "dev": true, 992 | "license": "MIT", 993 | "dependencies": { 994 | "flat-cache": "^4.0.0" 995 | }, 996 | "engines": { 997 | "node": ">=16.0.0" 998 | } 999 | }, 1000 | "node_modules/fill-range": { 1001 | "version": "7.1.1", 1002 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1003 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1004 | "dev": true, 1005 | "license": "MIT", 1006 | "dependencies": { 1007 | "to-regex-range": "^5.0.1" 1008 | }, 1009 | "engines": { 1010 | "node": ">=8" 1011 | } 1012 | }, 1013 | "node_modules/find-up": { 1014 | "version": "5.0.0", 1015 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1016 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1017 | "dev": true, 1018 | "dependencies": { 1019 | "locate-path": "^6.0.0", 1020 | "path-exists": "^4.0.0" 1021 | }, 1022 | "engines": { 1023 | "node": ">=10" 1024 | }, 1025 | "funding": { 1026 | "url": "https://github.com/sponsors/sindresorhus" 1027 | } 1028 | }, 1029 | "node_modules/flat-cache": { 1030 | "version": "4.0.1", 1031 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 1032 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 1033 | "dev": true, 1034 | "license": "MIT", 1035 | "dependencies": { 1036 | "flatted": "^3.2.9", 1037 | "keyv": "^4.5.4" 1038 | }, 1039 | "engines": { 1040 | "node": ">=16" 1041 | } 1042 | }, 1043 | "node_modules/flatted": { 1044 | "version": "3.3.1", 1045 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 1046 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 1047 | "dev": true, 1048 | "license": "ISC" 1049 | }, 1050 | "node_modules/fs.realpath": { 1051 | "version": "1.0.0", 1052 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1053 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1054 | "dev": true 1055 | }, 1056 | "node_modules/function-bind": { 1057 | "version": "1.1.2", 1058 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1059 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1060 | "dev": true, 1061 | "funding": { 1062 | "url": "https://github.com/sponsors/ljharb" 1063 | } 1064 | }, 1065 | "node_modules/get-caller-file": { 1066 | "version": "2.0.5", 1067 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1068 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1069 | "dev": true, 1070 | "engines": { 1071 | "node": "6.* || 8.* || >= 10.*" 1072 | } 1073 | }, 1074 | "node_modules/glob": { 1075 | "version": "7.2.3", 1076 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1077 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1078 | "dev": true, 1079 | "dependencies": { 1080 | "fs.realpath": "^1.0.0", 1081 | "inflight": "^1.0.4", 1082 | "inherits": "2", 1083 | "minimatch": "^3.1.1", 1084 | "once": "^1.3.0", 1085 | "path-is-absolute": "^1.0.0" 1086 | }, 1087 | "engines": { 1088 | "node": "*" 1089 | }, 1090 | "funding": { 1091 | "url": "https://github.com/sponsors/isaacs" 1092 | } 1093 | }, 1094 | "node_modules/glob-parent": { 1095 | "version": "6.0.2", 1096 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1097 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1098 | "dev": true, 1099 | "dependencies": { 1100 | "is-glob": "^4.0.3" 1101 | }, 1102 | "engines": { 1103 | "node": ">=10.13.0" 1104 | } 1105 | }, 1106 | "node_modules/glob/node_modules/brace-expansion": { 1107 | "version": "1.1.11", 1108 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1109 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1110 | "dev": true, 1111 | "dependencies": { 1112 | "balanced-match": "^1.0.0", 1113 | "concat-map": "0.0.1" 1114 | } 1115 | }, 1116 | "node_modules/glob/node_modules/minimatch": { 1117 | "version": "3.1.2", 1118 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1119 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1120 | "dev": true, 1121 | "dependencies": { 1122 | "brace-expansion": "^1.1.7" 1123 | }, 1124 | "engines": { 1125 | "node": "*" 1126 | } 1127 | }, 1128 | "node_modules/globals": { 1129 | "version": "14.0.0", 1130 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 1131 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 1132 | "dev": true, 1133 | "license": "MIT", 1134 | "engines": { 1135 | "node": ">=18" 1136 | }, 1137 | "funding": { 1138 | "url": "https://github.com/sponsors/sindresorhus" 1139 | } 1140 | }, 1141 | "node_modules/graceful-fs": { 1142 | "version": "4.2.11", 1143 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1144 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1145 | "dev": true 1146 | }, 1147 | "node_modules/graphemer": { 1148 | "version": "1.4.0", 1149 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1150 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1151 | "dev": true 1152 | }, 1153 | "node_modules/has-flag": { 1154 | "version": "4.0.0", 1155 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1156 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1157 | "dev": true, 1158 | "engines": { 1159 | "node": ">=8" 1160 | } 1161 | }, 1162 | "node_modules/hasown": { 1163 | "version": "2.0.0", 1164 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", 1165 | "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", 1166 | "dev": true, 1167 | "dependencies": { 1168 | "function-bind": "^1.1.2" 1169 | }, 1170 | "engines": { 1171 | "node": ">= 0.4" 1172 | } 1173 | }, 1174 | "node_modules/ignore": { 1175 | "version": "5.3.1", 1176 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 1177 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 1178 | "dev": true, 1179 | "engines": { 1180 | "node": ">= 4" 1181 | } 1182 | }, 1183 | "node_modules/import-fresh": { 1184 | "version": "3.3.0", 1185 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1186 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1187 | "dev": true, 1188 | "license": "MIT", 1189 | "dependencies": { 1190 | "parent-module": "^1.0.0", 1191 | "resolve-from": "^4.0.0" 1192 | }, 1193 | "engines": { 1194 | "node": ">=6" 1195 | }, 1196 | "funding": { 1197 | "url": "https://github.com/sponsors/sindresorhus" 1198 | } 1199 | }, 1200 | "node_modules/imurmurhash": { 1201 | "version": "0.1.4", 1202 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1203 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1204 | "dev": true, 1205 | "engines": { 1206 | "node": ">=0.8.19" 1207 | } 1208 | }, 1209 | "node_modules/inflight": { 1210 | "version": "1.0.6", 1211 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1212 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1213 | "dev": true, 1214 | "dependencies": { 1215 | "once": "^1.3.0", 1216 | "wrappy": "1" 1217 | } 1218 | }, 1219 | "node_modules/inherits": { 1220 | "version": "2.0.4", 1221 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1222 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1223 | "dev": true 1224 | }, 1225 | "node_modules/is-core-module": { 1226 | "version": "2.13.1", 1227 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 1228 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 1229 | "dev": true, 1230 | "dependencies": { 1231 | "hasown": "^2.0.0" 1232 | }, 1233 | "funding": { 1234 | "url": "https://github.com/sponsors/ljharb" 1235 | } 1236 | }, 1237 | "node_modules/is-extglob": { 1238 | "version": "2.1.1", 1239 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1240 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1241 | "dev": true, 1242 | "engines": { 1243 | "node": ">=0.10.0" 1244 | } 1245 | }, 1246 | "node_modules/is-fullwidth-code-point": { 1247 | "version": "3.0.0", 1248 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1249 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1250 | "dev": true, 1251 | "engines": { 1252 | "node": ">=8" 1253 | } 1254 | }, 1255 | "node_modules/is-glob": { 1256 | "version": "4.0.3", 1257 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1258 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1259 | "dev": true, 1260 | "dependencies": { 1261 | "is-extglob": "^2.1.1" 1262 | }, 1263 | "engines": { 1264 | "node": ">=0.10.0" 1265 | } 1266 | }, 1267 | "node_modules/is-number": { 1268 | "version": "7.0.0", 1269 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1270 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1271 | "dev": true, 1272 | "license": "MIT", 1273 | "engines": { 1274 | "node": ">=0.12.0" 1275 | } 1276 | }, 1277 | "node_modules/is-path-inside": { 1278 | "version": "3.0.3", 1279 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1280 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1281 | "dev": true, 1282 | "engines": { 1283 | "node": ">=8" 1284 | } 1285 | }, 1286 | "node_modules/isarray": { 1287 | "version": "0.0.1", 1288 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", 1289 | "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", 1290 | "dev": true 1291 | }, 1292 | "node_modules/isexe": { 1293 | "version": "2.0.0", 1294 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1295 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1296 | "dev": true 1297 | }, 1298 | "node_modules/js-yaml": { 1299 | "version": "4.1.0", 1300 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1301 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1302 | "dev": true, 1303 | "license": "MIT", 1304 | "dependencies": { 1305 | "argparse": "^2.0.1" 1306 | }, 1307 | "bin": { 1308 | "js-yaml": "bin/js-yaml.js" 1309 | } 1310 | }, 1311 | "node_modules/json-buffer": { 1312 | "version": "3.0.1", 1313 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1314 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1315 | "dev": true, 1316 | "license": "MIT" 1317 | }, 1318 | "node_modules/json-schema-traverse": { 1319 | "version": "0.4.1", 1320 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1321 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1322 | "dev": true, 1323 | "license": "MIT" 1324 | }, 1325 | "node_modules/json-stable-stringify-without-jsonify": { 1326 | "version": "1.0.1", 1327 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1328 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1329 | "dev": true 1330 | }, 1331 | "node_modules/keyv": { 1332 | "version": "4.5.4", 1333 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1334 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1335 | "dev": true, 1336 | "license": "MIT", 1337 | "dependencies": { 1338 | "json-buffer": "3.0.1" 1339 | } 1340 | }, 1341 | "node_modules/levn": { 1342 | "version": "0.4.1", 1343 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1344 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1345 | "dev": true, 1346 | "dependencies": { 1347 | "prelude-ls": "^1.2.1", 1348 | "type-check": "~0.4.0" 1349 | }, 1350 | "engines": { 1351 | "node": ">= 0.8.0" 1352 | } 1353 | }, 1354 | "node_modules/locate-path": { 1355 | "version": "6.0.0", 1356 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1357 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1358 | "dev": true, 1359 | "dependencies": { 1360 | "p-locate": "^5.0.0" 1361 | }, 1362 | "engines": { 1363 | "node": ">=10" 1364 | }, 1365 | "funding": { 1366 | "url": "https://github.com/sponsors/sindresorhus" 1367 | } 1368 | }, 1369 | "node_modules/lodash.merge": { 1370 | "version": "4.6.2", 1371 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1372 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1373 | "dev": true 1374 | }, 1375 | "node_modules/love-typescript-definitions": { 1376 | "version": "11.5.0", 1377 | "resolved": "https://registry.npmjs.org/love-typescript-definitions/-/love-typescript-definitions-11.5.0.tgz", 1378 | "integrity": "sha512-eoWptNL0aTDhtW9ylZo+qxMoY1byvjw/rGdt8hTL9b4ugyHRKuKE4BLW8yKhc/h0hdy0xQlR8kQVEnaFV5w4MQ==", 1379 | "dev": true, 1380 | "license": "MIT" 1381 | }, 1382 | "node_modules/lua-types": { 1383 | "version": "2.13.1", 1384 | "resolved": "https://registry.npmjs.org/lua-types/-/lua-types-2.13.1.tgz", 1385 | "integrity": "sha512-rRwtvX6kS+5MpuO3xpvKsnYjdSDDI064Qq1OqX8gY+r+0l7m3dFLiZPDFoHqH22jaBpEvcHcPs6+WD7qkdmFsA==", 1386 | "dev": true 1387 | }, 1388 | "node_modules/merge2": { 1389 | "version": "1.4.1", 1390 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1391 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1392 | "dev": true, 1393 | "license": "MIT", 1394 | "engines": { 1395 | "node": ">= 8" 1396 | } 1397 | }, 1398 | "node_modules/micromatch": { 1399 | "version": "4.0.8", 1400 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 1401 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 1402 | "dev": true, 1403 | "license": "MIT", 1404 | "dependencies": { 1405 | "braces": "^3.0.3", 1406 | "picomatch": "^2.3.1" 1407 | }, 1408 | "engines": { 1409 | "node": ">=8.6" 1410 | } 1411 | }, 1412 | "node_modules/minimatch": { 1413 | "version": "9.0.5", 1414 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1415 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1416 | "dev": true, 1417 | "license": "ISC", 1418 | "dependencies": { 1419 | "brace-expansion": "^2.0.1" 1420 | }, 1421 | "engines": { 1422 | "node": ">=16 || 14 >=14.17" 1423 | }, 1424 | "funding": { 1425 | "url": "https://github.com/sponsors/isaacs" 1426 | } 1427 | }, 1428 | "node_modules/mkdirp": { 1429 | "version": "1.0.4", 1430 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 1431 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 1432 | "dev": true, 1433 | "bin": { 1434 | "mkdirp": "bin/cmd.js" 1435 | }, 1436 | "engines": { 1437 | "node": ">=10" 1438 | } 1439 | }, 1440 | "node_modules/ms": { 1441 | "version": "2.1.2", 1442 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1443 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1444 | "dev": true 1445 | }, 1446 | "node_modules/natural-compare": { 1447 | "version": "1.4.0", 1448 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1449 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1450 | "dev": true 1451 | }, 1452 | "node_modules/noms": { 1453 | "version": "0.0.0", 1454 | "resolved": "https://registry.npmjs.org/noms/-/noms-0.0.0.tgz", 1455 | "integrity": "sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==", 1456 | "dev": true, 1457 | "dependencies": { 1458 | "inherits": "^2.0.1", 1459 | "readable-stream": "~1.0.31" 1460 | } 1461 | }, 1462 | "node_modules/once": { 1463 | "version": "1.4.0", 1464 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1465 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1466 | "dev": true, 1467 | "dependencies": { 1468 | "wrappy": "1" 1469 | } 1470 | }, 1471 | "node_modules/optionator": { 1472 | "version": "0.9.3", 1473 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 1474 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 1475 | "dev": true, 1476 | "dependencies": { 1477 | "@aashutoshrathi/word-wrap": "^1.2.3", 1478 | "deep-is": "^0.1.3", 1479 | "fast-levenshtein": "^2.0.6", 1480 | "levn": "^0.4.1", 1481 | "prelude-ls": "^1.2.1", 1482 | "type-check": "^0.4.0" 1483 | }, 1484 | "engines": { 1485 | "node": ">= 0.8.0" 1486 | } 1487 | }, 1488 | "node_modules/p-limit": { 1489 | "version": "3.1.0", 1490 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1491 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1492 | "dev": true, 1493 | "dependencies": { 1494 | "yocto-queue": "^0.1.0" 1495 | }, 1496 | "engines": { 1497 | "node": ">=10" 1498 | }, 1499 | "funding": { 1500 | "url": "https://github.com/sponsors/sindresorhus" 1501 | } 1502 | }, 1503 | "node_modules/p-locate": { 1504 | "version": "5.0.0", 1505 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1506 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1507 | "dev": true, 1508 | "dependencies": { 1509 | "p-limit": "^3.0.2" 1510 | }, 1511 | "engines": { 1512 | "node": ">=10" 1513 | }, 1514 | "funding": { 1515 | "url": "https://github.com/sponsors/sindresorhus" 1516 | } 1517 | }, 1518 | "node_modules/parent-module": { 1519 | "version": "1.0.1", 1520 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1521 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1522 | "dev": true, 1523 | "license": "MIT", 1524 | "dependencies": { 1525 | "callsites": "^3.0.0" 1526 | }, 1527 | "engines": { 1528 | "node": ">=6" 1529 | } 1530 | }, 1531 | "node_modules/path-exists": { 1532 | "version": "4.0.0", 1533 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1534 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1535 | "dev": true, 1536 | "engines": { 1537 | "node": ">=8" 1538 | } 1539 | }, 1540 | "node_modules/path-is-absolute": { 1541 | "version": "1.0.1", 1542 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1543 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1544 | "dev": true, 1545 | "engines": { 1546 | "node": ">=0.10.0" 1547 | } 1548 | }, 1549 | "node_modules/path-key": { 1550 | "version": "3.1.1", 1551 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1552 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1553 | "dev": true, 1554 | "engines": { 1555 | "node": ">=8" 1556 | } 1557 | }, 1558 | "node_modules/path-parse": { 1559 | "version": "1.0.7", 1560 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1561 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1562 | "dev": true 1563 | }, 1564 | "node_modules/picomatch": { 1565 | "version": "2.3.1", 1566 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1567 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1568 | "dev": true, 1569 | "engines": { 1570 | "node": ">=8.6" 1571 | }, 1572 | "funding": { 1573 | "url": "https://github.com/sponsors/jonschlinkert" 1574 | } 1575 | }, 1576 | "node_modules/prelude-ls": { 1577 | "version": "1.2.1", 1578 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1579 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1580 | "dev": true, 1581 | "engines": { 1582 | "node": ">= 0.8.0" 1583 | } 1584 | }, 1585 | "node_modules/prettier": { 1586 | "version": "3.3.3", 1587 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", 1588 | "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", 1589 | "dev": true, 1590 | "license": "MIT", 1591 | "bin": { 1592 | "prettier": "bin/prettier.cjs" 1593 | }, 1594 | "engines": { 1595 | "node": ">=14" 1596 | }, 1597 | "funding": { 1598 | "url": "https://github.com/prettier/prettier?sponsor=1" 1599 | } 1600 | }, 1601 | "node_modules/prettier-plugin-organize-imports": { 1602 | "version": "4.0.0", 1603 | "resolved": "https://registry.npmjs.org/prettier-plugin-organize-imports/-/prettier-plugin-organize-imports-4.0.0.tgz", 1604 | "integrity": "sha512-vnKSdgv9aOlqKeEFGhf9SCBsTyzDSyScy1k7E0R1Uo4L0cTcOV7c1XQaT7jfXIOc/p08WLBfN2QUQA9zDSZMxA==", 1605 | "dev": true, 1606 | "license": "MIT", 1607 | "peerDependencies": { 1608 | "@vue/language-plugin-pug": "^2.0.24", 1609 | "prettier": ">=2.0", 1610 | "typescript": ">=2.9", 1611 | "vue-tsc": "^2.0.24" 1612 | }, 1613 | "peerDependenciesMeta": { 1614 | "@vue/language-plugin-pug": { 1615 | "optional": true 1616 | }, 1617 | "vue-tsc": { 1618 | "optional": true 1619 | } 1620 | } 1621 | }, 1622 | "node_modules/process-nextick-args": { 1623 | "version": "2.0.1", 1624 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 1625 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", 1626 | "dev": true 1627 | }, 1628 | "node_modules/punycode": { 1629 | "version": "2.3.1", 1630 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 1631 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1632 | "dev": true, 1633 | "license": "MIT", 1634 | "engines": { 1635 | "node": ">=6" 1636 | } 1637 | }, 1638 | "node_modules/queue-microtask": { 1639 | "version": "1.2.3", 1640 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1641 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1642 | "dev": true, 1643 | "funding": [ 1644 | { 1645 | "type": "github", 1646 | "url": "https://github.com/sponsors/feross" 1647 | }, 1648 | { 1649 | "type": "patreon", 1650 | "url": "https://www.patreon.com/feross" 1651 | }, 1652 | { 1653 | "type": "consulting", 1654 | "url": "https://feross.org/support" 1655 | } 1656 | ] 1657 | }, 1658 | "node_modules/readable-stream": { 1659 | "version": "1.0.34", 1660 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", 1661 | "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", 1662 | "dev": true, 1663 | "dependencies": { 1664 | "core-util-is": "~1.0.0", 1665 | "inherits": "~2.0.1", 1666 | "isarray": "0.0.1", 1667 | "string_decoder": "~0.10.x" 1668 | } 1669 | }, 1670 | "node_modules/require-directory": { 1671 | "version": "2.1.1", 1672 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 1673 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 1674 | "dev": true, 1675 | "engines": { 1676 | "node": ">=0.10.0" 1677 | } 1678 | }, 1679 | "node_modules/resolve": { 1680 | "version": "1.22.8", 1681 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 1682 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 1683 | "dev": true, 1684 | "dependencies": { 1685 | "is-core-module": "^2.13.0", 1686 | "path-parse": "^1.0.7", 1687 | "supports-preserve-symlinks-flag": "^1.0.0" 1688 | }, 1689 | "bin": { 1690 | "resolve": "bin/resolve" 1691 | }, 1692 | "funding": { 1693 | "url": "https://github.com/sponsors/ljharb" 1694 | } 1695 | }, 1696 | "node_modules/resolve-from": { 1697 | "version": "4.0.0", 1698 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1699 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1700 | "dev": true, 1701 | "license": "MIT", 1702 | "engines": { 1703 | "node": ">=4" 1704 | } 1705 | }, 1706 | "node_modules/reusify": { 1707 | "version": "1.0.4", 1708 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1709 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1710 | "dev": true, 1711 | "engines": { 1712 | "iojs": ">=1.0.0", 1713 | "node": ">=0.10.0" 1714 | } 1715 | }, 1716 | "node_modules/run-parallel": { 1717 | "version": "1.2.0", 1718 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1719 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1720 | "dev": true, 1721 | "funding": [ 1722 | { 1723 | "type": "github", 1724 | "url": "https://github.com/sponsors/feross" 1725 | }, 1726 | { 1727 | "type": "patreon", 1728 | "url": "https://www.patreon.com/feross" 1729 | }, 1730 | { 1731 | "type": "consulting", 1732 | "url": "https://feross.org/support" 1733 | } 1734 | ], 1735 | "dependencies": { 1736 | "queue-microtask": "^1.2.2" 1737 | } 1738 | }, 1739 | "node_modules/safe-buffer": { 1740 | "version": "5.1.2", 1741 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 1742 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 1743 | "dev": true 1744 | }, 1745 | "node_modules/semver": { 1746 | "version": "7.6.3", 1747 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 1748 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 1749 | "dev": true, 1750 | "license": "ISC", 1751 | "bin": { 1752 | "semver": "bin/semver.js" 1753 | }, 1754 | "engines": { 1755 | "node": ">=10" 1756 | } 1757 | }, 1758 | "node_modules/shebang-command": { 1759 | "version": "2.0.0", 1760 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1761 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1762 | "dev": true, 1763 | "dependencies": { 1764 | "shebang-regex": "^3.0.0" 1765 | }, 1766 | "engines": { 1767 | "node": ">=8" 1768 | } 1769 | }, 1770 | "node_modules/shebang-regex": { 1771 | "version": "3.0.0", 1772 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1773 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1774 | "dev": true, 1775 | "engines": { 1776 | "node": ">=8" 1777 | } 1778 | }, 1779 | "node_modules/source-map": { 1780 | "version": "0.7.4", 1781 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", 1782 | "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", 1783 | "dev": true, 1784 | "engines": { 1785 | "node": ">= 8" 1786 | } 1787 | }, 1788 | "node_modules/string_decoder": { 1789 | "version": "0.10.31", 1790 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", 1791 | "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", 1792 | "dev": true 1793 | }, 1794 | "node_modules/string-width": { 1795 | "version": "4.2.3", 1796 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1797 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1798 | "dev": true, 1799 | "dependencies": { 1800 | "emoji-regex": "^8.0.0", 1801 | "is-fullwidth-code-point": "^3.0.0", 1802 | "strip-ansi": "^6.0.1" 1803 | }, 1804 | "engines": { 1805 | "node": ">=8" 1806 | } 1807 | }, 1808 | "node_modules/strip-ansi": { 1809 | "version": "6.0.1", 1810 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1811 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1812 | "dev": true, 1813 | "dependencies": { 1814 | "ansi-regex": "^5.0.1" 1815 | }, 1816 | "engines": { 1817 | "node": ">=8" 1818 | } 1819 | }, 1820 | "node_modules/strip-json-comments": { 1821 | "version": "3.1.1", 1822 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1823 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1824 | "dev": true, 1825 | "license": "MIT", 1826 | "engines": { 1827 | "node": ">=8" 1828 | }, 1829 | "funding": { 1830 | "url": "https://github.com/sponsors/sindresorhus" 1831 | } 1832 | }, 1833 | "node_modules/supports-color": { 1834 | "version": "7.2.0", 1835 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1836 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1837 | "dev": true, 1838 | "dependencies": { 1839 | "has-flag": "^4.0.0" 1840 | }, 1841 | "engines": { 1842 | "node": ">=8" 1843 | } 1844 | }, 1845 | "node_modules/supports-preserve-symlinks-flag": { 1846 | "version": "1.0.0", 1847 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 1848 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 1849 | "dev": true, 1850 | "engines": { 1851 | "node": ">= 0.4" 1852 | }, 1853 | "funding": { 1854 | "url": "https://github.com/sponsors/ljharb" 1855 | } 1856 | }, 1857 | "node_modules/tapable": { 1858 | "version": "2.2.1", 1859 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 1860 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 1861 | "dev": true, 1862 | "engines": { 1863 | "node": ">=6" 1864 | } 1865 | }, 1866 | "node_modules/text-table": { 1867 | "version": "0.2.0", 1868 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 1869 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 1870 | "dev": true 1871 | }, 1872 | "node_modules/through2": { 1873 | "version": "2.0.5", 1874 | "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", 1875 | "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", 1876 | "dev": true, 1877 | "dependencies": { 1878 | "readable-stream": "~2.3.6", 1879 | "xtend": "~4.0.1" 1880 | } 1881 | }, 1882 | "node_modules/through2/node_modules/isarray": { 1883 | "version": "1.0.0", 1884 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1885 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", 1886 | "dev": true 1887 | }, 1888 | "node_modules/through2/node_modules/readable-stream": { 1889 | "version": "2.3.8", 1890 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 1891 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 1892 | "dev": true, 1893 | "dependencies": { 1894 | "core-util-is": "~1.0.0", 1895 | "inherits": "~2.0.3", 1896 | "isarray": "~1.0.0", 1897 | "process-nextick-args": "~2.0.0", 1898 | "safe-buffer": "~5.1.1", 1899 | "string_decoder": "~1.1.1", 1900 | "util-deprecate": "~1.0.1" 1901 | } 1902 | }, 1903 | "node_modules/through2/node_modules/string_decoder": { 1904 | "version": "1.1.1", 1905 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 1906 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 1907 | "dev": true, 1908 | "dependencies": { 1909 | "safe-buffer": "~5.1.0" 1910 | } 1911 | }, 1912 | "node_modules/to-regex-range": { 1913 | "version": "5.0.1", 1914 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1915 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1916 | "dev": true, 1917 | "license": "MIT", 1918 | "dependencies": { 1919 | "is-number": "^7.0.0" 1920 | }, 1921 | "engines": { 1922 | "node": ">=8.0" 1923 | } 1924 | }, 1925 | "node_modules/ts-api-utils": { 1926 | "version": "1.3.0", 1927 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", 1928 | "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", 1929 | "dev": true, 1930 | "license": "MIT", 1931 | "engines": { 1932 | "node": ">=16" 1933 | }, 1934 | "peerDependencies": { 1935 | "typescript": ">=4.2.0" 1936 | } 1937 | }, 1938 | "node_modules/type-check": { 1939 | "version": "0.4.0", 1940 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 1941 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 1942 | "dev": true, 1943 | "dependencies": { 1944 | "prelude-ls": "^1.2.1" 1945 | }, 1946 | "engines": { 1947 | "node": ">= 0.8.0" 1948 | } 1949 | }, 1950 | "node_modules/typescript": { 1951 | "version": "5.5.2", 1952 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz", 1953 | "integrity": "sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==", 1954 | "dev": true, 1955 | "license": "Apache-2.0", 1956 | "peer": true, 1957 | "bin": { 1958 | "tsc": "bin/tsc", 1959 | "tsserver": "bin/tsserver" 1960 | }, 1961 | "engines": { 1962 | "node": ">=14.17" 1963 | } 1964 | }, 1965 | "node_modules/typescript-to-lua": { 1966 | "version": "1.26.2", 1967 | "resolved": "https://registry.npmjs.org/typescript-to-lua/-/typescript-to-lua-1.26.2.tgz", 1968 | "integrity": "sha512-nmlYhi0mlXOKK5q3GumstC/fk30xPSILQTK5GHcTovSiCzSovLUq0F6NNBnSMskmw9ENjUwdMtHUl2IpfeiGrw==", 1969 | "dev": true, 1970 | "license": "MIT", 1971 | "dependencies": { 1972 | "@typescript-to-lua/language-extensions": "1.19.0", 1973 | "enhanced-resolve": "^5.8.2", 1974 | "picomatch": "^2.3.1", 1975 | "resolve": "^1.15.1", 1976 | "source-map": "^0.7.3" 1977 | }, 1978 | "bin": { 1979 | "tstl": "dist/tstl.js" 1980 | }, 1981 | "engines": { 1982 | "node": ">=16.10.0" 1983 | }, 1984 | "peerDependencies": { 1985 | "typescript": "5.5.2" 1986 | } 1987 | }, 1988 | "node_modules/untildify": { 1989 | "version": "4.0.0", 1990 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", 1991 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", 1992 | "dev": true, 1993 | "engines": { 1994 | "node": ">=8" 1995 | } 1996 | }, 1997 | "node_modules/uri-js": { 1998 | "version": "4.4.1", 1999 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2000 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2001 | "dev": true, 2002 | "license": "BSD-2-Clause", 2003 | "dependencies": { 2004 | "punycode": "^2.1.0" 2005 | } 2006 | }, 2007 | "node_modules/util-deprecate": { 2008 | "version": "1.0.2", 2009 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2010 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 2011 | "dev": true 2012 | }, 2013 | "node_modules/which": { 2014 | "version": "2.0.2", 2015 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2016 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2017 | "dev": true, 2018 | "dependencies": { 2019 | "isexe": "^2.0.0" 2020 | }, 2021 | "bin": { 2022 | "node-which": "bin/node-which" 2023 | }, 2024 | "engines": { 2025 | "node": ">= 8" 2026 | } 2027 | }, 2028 | "node_modules/wrap-ansi": { 2029 | "version": "7.0.0", 2030 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 2031 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 2032 | "dev": true, 2033 | "dependencies": { 2034 | "ansi-styles": "^4.0.0", 2035 | "string-width": "^4.1.0", 2036 | "strip-ansi": "^6.0.0" 2037 | }, 2038 | "engines": { 2039 | "node": ">=10" 2040 | }, 2041 | "funding": { 2042 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2043 | } 2044 | }, 2045 | "node_modules/wrappy": { 2046 | "version": "1.0.2", 2047 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2048 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2049 | "dev": true 2050 | }, 2051 | "node_modules/xtend": { 2052 | "version": "4.0.2", 2053 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 2054 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", 2055 | "dev": true, 2056 | "engines": { 2057 | "node": ">=0.4" 2058 | } 2059 | }, 2060 | "node_modules/y18n": { 2061 | "version": "5.0.8", 2062 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 2063 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 2064 | "dev": true, 2065 | "engines": { 2066 | "node": ">=10" 2067 | } 2068 | }, 2069 | "node_modules/yargs": { 2070 | "version": "16.2.0", 2071 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", 2072 | "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", 2073 | "dev": true, 2074 | "dependencies": { 2075 | "cliui": "^7.0.2", 2076 | "escalade": "^3.1.1", 2077 | "get-caller-file": "^2.0.5", 2078 | "require-directory": "^2.1.1", 2079 | "string-width": "^4.2.0", 2080 | "y18n": "^5.0.5", 2081 | "yargs-parser": "^20.2.2" 2082 | }, 2083 | "engines": { 2084 | "node": ">=10" 2085 | } 2086 | }, 2087 | "node_modules/yargs-parser": { 2088 | "version": "20.2.9", 2089 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", 2090 | "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", 2091 | "dev": true, 2092 | "engines": { 2093 | "node": ">=10" 2094 | } 2095 | }, 2096 | "node_modules/yocto-queue": { 2097 | "version": "0.1.0", 2098 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2099 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2100 | "dev": true, 2101 | "engines": { 2102 | "node": ">=10" 2103 | }, 2104 | "funding": { 2105 | "url": "https://github.com/sponsors/sindresorhus" 2106 | } 2107 | } 2108 | } 2109 | } 2110 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "start": "love game --console", 4 | "build": "npm run build:tstl && npm run build:copy", 5 | "lint": "npm run lint:prettier && npm run lint:eslint", 6 | "build:tstl": "tstl -p tsconfig.json", 7 | "build:copy": "copyfiles --all \"res/**/*\" game", 8 | "build:watch": "tstl -w -p tsconfig.json", 9 | "lint:eslint": "eslint -c .eslintrc src/**", 10 | "lint:prettier": "prettier \"**/*.{js,ts,ym,md}\" --check", 11 | "fix:prettier": "prettier \"**/*.{js,ts,ym,md}\" --check --write" 12 | }, 13 | "devDependencies": { 14 | "@typescript-eslint/eslint-plugin": "^8.5.0", 15 | "copyfiles": "^2.4.1", 16 | "eslint": "^9.10.0", 17 | "eslint-config-prettier": "^9.0.0", 18 | "love-typescript-definitions": "^11.5.0", 19 | "lua-types": "^2.13.1", 20 | "prettier": "^3.2.5", 21 | "prettier-plugin-organize-imports": "^4.0.0", 22 | "typescript-to-lua": "^1.25.1" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /res/index.txt: -------------------------------------------------------------------------------- 1 | index.txt content 2 | -------------------------------------------------------------------------------- /src/conf.ts: -------------------------------------------------------------------------------- 1 | love.conf = (t) => { 2 | t.window.title = "TypeScript Project"; 3 | }; 4 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | love.load = () => { 2 | const [content] = love.filesystem.read("res/index.txt"); 3 | print(content); 4 | }; 5 | 6 | love.draw = () => { 7 | love.graphics.print("Hello World!", 400, 300); 8 | }; 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "strict": true, 4 | "forceConsistentCasingInFileNames": true, 5 | "lib": ["esnext"], 6 | "rootDir": "src", 7 | "outDir": "game", 8 | "types": [ 9 | "lua-types/jit", 10 | "love-typescript-definitions", 11 | "@typescript-to-lua/language-extensions" 12 | ] 13 | }, 14 | "tstl": { 15 | "luaLibImport": "require", 16 | "luaTarget": "JIT", 17 | "noImplicitSelf": true, 18 | "sourceMapTraceback": true 19 | } 20 | } 21 | --------------------------------------------------------------------------------