├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── ccc_icon.png ├── package-lock.json ├── package.json ├── resource └── icon.svg ├── src ├── .eslintrc.js └── extension.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .vscode-test/ 4 | *.vsix -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that compiles the extension and then opens it inside a new window 2 | { 3 | "version": "0.2.0", 4 | "configurations": [{ 5 | "name": "Run Extension", 6 | "type": "extensionHost", 7 | "request": "launch", 8 | "runtimeExecutable": "${execPath}", 9 | "args": [ 10 | "--extensionDevelopmentPath=${workspaceFolder}" 11 | ], 12 | "outFiles": [ 13 | "${workspaceFolder}/out/**/*.js" 14 | ], 15 | "preLaunchTask": "npm: watch" 16 | }] 17 | } 18 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "files.exclude": { 4 | "out": false // set this to true to hide the "out" folder with the compiled JS files 5 | }, 6 | "search.exclude": { 7 | "out": true // set this to false to include "out" folder in search results 8 | } 9 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | // See https://go.microsoft.com/fwlink/?LinkId=733558 2 | // for the documentation about the tasks.json format 3 | { 4 | "version": "2.0.0", 5 | "tasks": [ 6 | { 7 | "type": "npm", 8 | "script": "watch", 9 | "problemMatcher": "$tsc-watch", 10 | "isBackground": true, 11 | "presentation": { 12 | "reveal": "never" 13 | }, 14 | "group": { 15 | "kind": "build", 16 | "isDefault": true 17 | } 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | src/** 3 | .gitignore 4 | tsconfig.json 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to the "cursorCharCode" extension will be documented in this file. 3 | 4 | ### v0.2.5 (08/05/2024) 5 | - change Unicode symbol description link to point to www.compart.com/en/unicode/U+xxxx 6 | 7 | ### v0.2.4 (30/05/2023) 8 | - the extension now has an icon 9 | 10 | ### v0.2.3 (24/04/2023) 11 | - listen to document change events 12 | 13 | ### v0.2.2 (14/12/2022) 14 | - control is now aligned to the right of the status bar 15 | 16 | ### v0.2.1 (08/12/2022) 17 | - character name tooltip 18 | 19 | ### v0.2 20 | - New commands (copy hex to clipboard, copy dec to clipboard) 21 | 22 | ### v0.1.1 (13/08/2018) 23 | - Added commands to convert to \xFF \uFFFF \UFFFFFFFF forms /@WebFreak001/ 24 | 25 | ### v0.0.7 (11/08/2018) 26 | - Open unicode description at [Unicode table](https://unicode-table.com) on status bar click. 27 | 28 | ### v0.0.5 (30/04/2018) 29 | - Tiny fix for proper surrogate pair handling - analyzing a range of 2 characters after the cursor instead of one. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | vscode-cursorCharCode 2 | 3 | The MIT License (MIT) 4 | 5 | Copyright 2017 Anton Rychkov 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 8 | 9 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 10 | 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # README 2 | This extension shows Unicode value for the current character in the status bar. 3 | 4 | ## Source 5 | https://github.com/zeithaste/cursorCharCode.git -------------------------------------------------------------------------------- /ccc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeithaste/cursorCharCode/98c92eea5d50345274b1dbeeb9e0e162a4a0354b/ccc_icon.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cursorCharCode", 3 | "version": "0.2.5", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "cursorCharCode", 9 | "version": "0.2.5", 10 | "dependencies": { 11 | "unicode": "^14.0.0", 12 | "unicode-properties": "^1.4.1", 13 | "utf8": "^3.0.0" 14 | }, 15 | "devDependencies": { 16 | "@types/node": "^18.11.11", 17 | "@types/vscode": "^1.34.0", 18 | "@typescript-eslint/eslint-plugin": "^5.42.0", 19 | "@typescript-eslint/parser": "^5.42.0", 20 | "eslint": "^8.26.0", 21 | "typescript": "^4.9.4" 22 | }, 23 | "engines": { 24 | "vscode": "^1.34.0" 25 | } 26 | }, 27 | "node_modules/@eslint/eslintrc": { 28 | "version": "1.3.3", 29 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", 30 | "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", 31 | "dev": true, 32 | "dependencies": { 33 | "ajv": "^6.12.4", 34 | "debug": "^4.3.2", 35 | "espree": "^9.4.0", 36 | "globals": "^13.15.0", 37 | "ignore": "^5.2.0", 38 | "import-fresh": "^3.2.1", 39 | "js-yaml": "^4.1.0", 40 | "minimatch": "^3.1.2", 41 | "strip-json-comments": "^3.1.1" 42 | }, 43 | "engines": { 44 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 45 | }, 46 | "funding": { 47 | "url": "https://opencollective.com/eslint" 48 | } 49 | }, 50 | "node_modules/@humanwhocodes/config-array": { 51 | "version": "0.11.7", 52 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz", 53 | "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==", 54 | "dev": true, 55 | "dependencies": { 56 | "@humanwhocodes/object-schema": "^1.2.1", 57 | "debug": "^4.1.1", 58 | "minimatch": "^3.0.5" 59 | }, 60 | "engines": { 61 | "node": ">=10.10.0" 62 | } 63 | }, 64 | "node_modules/@humanwhocodes/module-importer": { 65 | "version": "1.0.1", 66 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 67 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 68 | "dev": true, 69 | "engines": { 70 | "node": ">=12.22" 71 | }, 72 | "funding": { 73 | "type": "github", 74 | "url": "https://github.com/sponsors/nzakas" 75 | } 76 | }, 77 | "node_modules/@humanwhocodes/object-schema": { 78 | "version": "1.2.1", 79 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 80 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", 81 | "dev": true 82 | }, 83 | "node_modules/@nodelib/fs.scandir": { 84 | "version": "2.1.5", 85 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 86 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 87 | "dev": true, 88 | "dependencies": { 89 | "@nodelib/fs.stat": "2.0.5", 90 | "run-parallel": "^1.1.9" 91 | }, 92 | "engines": { 93 | "node": ">= 8" 94 | } 95 | }, 96 | "node_modules/@nodelib/fs.stat": { 97 | "version": "2.0.5", 98 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 99 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 100 | "dev": true, 101 | "engines": { 102 | "node": ">= 8" 103 | } 104 | }, 105 | "node_modules/@nodelib/fs.walk": { 106 | "version": "1.2.8", 107 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 108 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 109 | "dev": true, 110 | "dependencies": { 111 | "@nodelib/fs.scandir": "2.1.5", 112 | "fastq": "^1.6.0" 113 | }, 114 | "engines": { 115 | "node": ">= 8" 116 | } 117 | }, 118 | "node_modules/@types/json-schema": { 119 | "version": "7.0.11", 120 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", 121 | "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", 122 | "dev": true 123 | }, 124 | "node_modules/@types/node": { 125 | "version": "18.11.11", 126 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.11.tgz", 127 | "integrity": "sha512-KJ021B1nlQUBLopzZmPBVuGU9un7WJd/W4ya7Ih02B4Uwky5Nja0yGYav2EfYIk0RR2Q9oVhf60S2XR1BCWJ2g==", 128 | "dev": true 129 | }, 130 | "node_modules/@types/semver": { 131 | "version": "7.3.13", 132 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", 133 | "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", 134 | "dev": true 135 | }, 136 | "node_modules/@types/vscode": { 137 | "version": "1.74.0", 138 | "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.74.0.tgz", 139 | "integrity": "sha512-LyeCIU3jb9d38w0MXFwta9r0Jx23ugujkAxdwLTNCyspdZTKUc43t7ppPbCiPoQ/Ivd/pnDFZrb4hWd45wrsgA==", 140 | "dev": true 141 | }, 142 | "node_modules/@typescript-eslint/eslint-plugin": { 143 | "version": "5.46.0", 144 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.46.0.tgz", 145 | "integrity": "sha512-QrZqaIOzJAjv0sfjY4EjbXUi3ZOFpKfzntx22gPGr9pmFcTjcFw/1sS1LJhEubfAGwuLjNrPV0rH+D1/XZFy7Q==", 146 | "dev": true, 147 | "dependencies": { 148 | "@typescript-eslint/scope-manager": "5.46.0", 149 | "@typescript-eslint/type-utils": "5.46.0", 150 | "@typescript-eslint/utils": "5.46.0", 151 | "debug": "^4.3.4", 152 | "ignore": "^5.2.0", 153 | "natural-compare-lite": "^1.4.0", 154 | "regexpp": "^3.2.0", 155 | "semver": "^7.3.7", 156 | "tsutils": "^3.21.0" 157 | }, 158 | "engines": { 159 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 160 | }, 161 | "funding": { 162 | "type": "opencollective", 163 | "url": "https://opencollective.com/typescript-eslint" 164 | }, 165 | "peerDependencies": { 166 | "@typescript-eslint/parser": "^5.0.0", 167 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 168 | }, 169 | "peerDependenciesMeta": { 170 | "typescript": { 171 | "optional": true 172 | } 173 | } 174 | }, 175 | "node_modules/@typescript-eslint/parser": { 176 | "version": "5.46.0", 177 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.46.0.tgz", 178 | "integrity": "sha512-joNO6zMGUZg+C73vwrKXCd8usnsmOYmgW/w5ZW0pG0RGvqeznjtGDk61EqqTpNrFLUYBW2RSBFrxdAZMqA4OZA==", 179 | "dev": true, 180 | "dependencies": { 181 | "@typescript-eslint/scope-manager": "5.46.0", 182 | "@typescript-eslint/types": "5.46.0", 183 | "@typescript-eslint/typescript-estree": "5.46.0", 184 | "debug": "^4.3.4" 185 | }, 186 | "engines": { 187 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 188 | }, 189 | "funding": { 190 | "type": "opencollective", 191 | "url": "https://opencollective.com/typescript-eslint" 192 | }, 193 | "peerDependencies": { 194 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 195 | }, 196 | "peerDependenciesMeta": { 197 | "typescript": { 198 | "optional": true 199 | } 200 | } 201 | }, 202 | "node_modules/@typescript-eslint/scope-manager": { 203 | "version": "5.46.0", 204 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.46.0.tgz", 205 | "integrity": "sha512-7wWBq9d/GbPiIM6SqPK9tfynNxVbfpihoY5cSFMer19OYUA3l4powA2uv0AV2eAZV6KoAh6lkzxv4PoxOLh1oA==", 206 | "dev": true, 207 | "dependencies": { 208 | "@typescript-eslint/types": "5.46.0", 209 | "@typescript-eslint/visitor-keys": "5.46.0" 210 | }, 211 | "engines": { 212 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 213 | }, 214 | "funding": { 215 | "type": "opencollective", 216 | "url": "https://opencollective.com/typescript-eslint" 217 | } 218 | }, 219 | "node_modules/@typescript-eslint/type-utils": { 220 | "version": "5.46.0", 221 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.46.0.tgz", 222 | "integrity": "sha512-dwv4nimVIAsVS2dTA0MekkWaRnoYNXY26dKz8AN5W3cBFYwYGFQEqm/cG+TOoooKlncJS4RTbFKgcFY/pOiBCg==", 223 | "dev": true, 224 | "dependencies": { 225 | "@typescript-eslint/typescript-estree": "5.46.0", 226 | "@typescript-eslint/utils": "5.46.0", 227 | "debug": "^4.3.4", 228 | "tsutils": "^3.21.0" 229 | }, 230 | "engines": { 231 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 232 | }, 233 | "funding": { 234 | "type": "opencollective", 235 | "url": "https://opencollective.com/typescript-eslint" 236 | }, 237 | "peerDependencies": { 238 | "eslint": "*" 239 | }, 240 | "peerDependenciesMeta": { 241 | "typescript": { 242 | "optional": true 243 | } 244 | } 245 | }, 246 | "node_modules/@typescript-eslint/types": { 247 | "version": "5.46.0", 248 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.46.0.tgz", 249 | "integrity": "sha512-wHWgQHFB+qh6bu0IAPAJCdeCdI0wwzZnnWThlmHNY01XJ9Z97oKqKOzWYpR2I83QmshhQJl6LDM9TqMiMwJBTw==", 250 | "dev": true, 251 | "engines": { 252 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 253 | }, 254 | "funding": { 255 | "type": "opencollective", 256 | "url": "https://opencollective.com/typescript-eslint" 257 | } 258 | }, 259 | "node_modules/@typescript-eslint/typescript-estree": { 260 | "version": "5.46.0", 261 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.46.0.tgz", 262 | "integrity": "sha512-kDLNn/tQP+Yp8Ro2dUpyyVV0Ksn2rmpPpB0/3MO874RNmXtypMwSeazjEN/Q6CTp8D7ExXAAekPEcCEB/vtJkw==", 263 | "dev": true, 264 | "dependencies": { 265 | "@typescript-eslint/types": "5.46.0", 266 | "@typescript-eslint/visitor-keys": "5.46.0", 267 | "debug": "^4.3.4", 268 | "globby": "^11.1.0", 269 | "is-glob": "^4.0.3", 270 | "semver": "^7.3.7", 271 | "tsutils": "^3.21.0" 272 | }, 273 | "engines": { 274 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 275 | }, 276 | "funding": { 277 | "type": "opencollective", 278 | "url": "https://opencollective.com/typescript-eslint" 279 | }, 280 | "peerDependenciesMeta": { 281 | "typescript": { 282 | "optional": true 283 | } 284 | } 285 | }, 286 | "node_modules/@typescript-eslint/utils": { 287 | "version": "5.46.0", 288 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.46.0.tgz", 289 | "integrity": "sha512-4O+Ps1CRDw+D+R40JYh5GlKLQERXRKW5yIQoNDpmXPJ+C7kaPF9R7GWl+PxGgXjB3PQCqsaaZUpZ9dG4U6DO7g==", 290 | "dev": true, 291 | "dependencies": { 292 | "@types/json-schema": "^7.0.9", 293 | "@types/semver": "^7.3.12", 294 | "@typescript-eslint/scope-manager": "5.46.0", 295 | "@typescript-eslint/types": "5.46.0", 296 | "@typescript-eslint/typescript-estree": "5.46.0", 297 | "eslint-scope": "^5.1.1", 298 | "eslint-utils": "^3.0.0", 299 | "semver": "^7.3.7" 300 | }, 301 | "engines": { 302 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 303 | }, 304 | "funding": { 305 | "type": "opencollective", 306 | "url": "https://opencollective.com/typescript-eslint" 307 | }, 308 | "peerDependencies": { 309 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 310 | } 311 | }, 312 | "node_modules/@typescript-eslint/visitor-keys": { 313 | "version": "5.46.0", 314 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.46.0.tgz", 315 | "integrity": "sha512-E13gBoIXmaNhwjipuvQg1ByqSAu/GbEpP/qzFihugJ+MomtoJtFAJG/+2DRPByf57B863m0/q7Zt16V9ohhANw==", 316 | "dev": true, 317 | "dependencies": { 318 | "@typescript-eslint/types": "5.46.0", 319 | "eslint-visitor-keys": "^3.3.0" 320 | }, 321 | "engines": { 322 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 323 | }, 324 | "funding": { 325 | "type": "opencollective", 326 | "url": "https://opencollective.com/typescript-eslint" 327 | } 328 | }, 329 | "node_modules/acorn": { 330 | "version": "8.8.1", 331 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", 332 | "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", 333 | "dev": true, 334 | "bin": { 335 | "acorn": "bin/acorn" 336 | }, 337 | "engines": { 338 | "node": ">=0.4.0" 339 | } 340 | }, 341 | "node_modules/acorn-jsx": { 342 | "version": "5.3.2", 343 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 344 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 345 | "dev": true, 346 | "peerDependencies": { 347 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 348 | } 349 | }, 350 | "node_modules/ajv": { 351 | "version": "6.12.6", 352 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 353 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 354 | "dev": true, 355 | "dependencies": { 356 | "fast-deep-equal": "^3.1.1", 357 | "fast-json-stable-stringify": "^2.0.0", 358 | "json-schema-traverse": "^0.4.1", 359 | "uri-js": "^4.2.2" 360 | }, 361 | "funding": { 362 | "type": "github", 363 | "url": "https://github.com/sponsors/epoberezkin" 364 | } 365 | }, 366 | "node_modules/ansi-regex": { 367 | "version": "5.0.1", 368 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 369 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 370 | "dev": true, 371 | "engines": { 372 | "node": ">=8" 373 | } 374 | }, 375 | "node_modules/ansi-styles": { 376 | "version": "4.3.0", 377 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 378 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 379 | "dev": true, 380 | "dependencies": { 381 | "color-convert": "^2.0.1" 382 | }, 383 | "engines": { 384 | "node": ">=8" 385 | }, 386 | "funding": { 387 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 388 | } 389 | }, 390 | "node_modules/argparse": { 391 | "version": "2.0.1", 392 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 393 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 394 | "dev": true 395 | }, 396 | "node_modules/array-union": { 397 | "version": "2.1.0", 398 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 399 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 400 | "dev": true, 401 | "engines": { 402 | "node": ">=8" 403 | } 404 | }, 405 | "node_modules/balanced-match": { 406 | "version": "1.0.2", 407 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 408 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 409 | "dev": true 410 | }, 411 | "node_modules/base64-js": { 412 | "version": "1.5.1", 413 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 414 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 415 | "funding": [ 416 | { 417 | "type": "github", 418 | "url": "https://github.com/sponsors/feross" 419 | }, 420 | { 421 | "type": "patreon", 422 | "url": "https://www.patreon.com/feross" 423 | }, 424 | { 425 | "type": "consulting", 426 | "url": "https://feross.org/support" 427 | } 428 | ] 429 | }, 430 | "node_modules/brace-expansion": { 431 | "version": "1.1.11", 432 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 433 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 434 | "dev": true, 435 | "dependencies": { 436 | "balanced-match": "^1.0.0", 437 | "concat-map": "0.0.1" 438 | } 439 | }, 440 | "node_modules/braces": { 441 | "version": "3.0.2", 442 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 443 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 444 | "dev": true, 445 | "dependencies": { 446 | "fill-range": "^7.0.1" 447 | }, 448 | "engines": { 449 | "node": ">=8" 450 | } 451 | }, 452 | "node_modules/callsites": { 453 | "version": "3.1.0", 454 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 455 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 456 | "dev": true, 457 | "engines": { 458 | "node": ">=6" 459 | } 460 | }, 461 | "node_modules/chalk": { 462 | "version": "4.1.2", 463 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 464 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 465 | "dev": true, 466 | "dependencies": { 467 | "ansi-styles": "^4.1.0", 468 | "supports-color": "^7.1.0" 469 | }, 470 | "engines": { 471 | "node": ">=10" 472 | }, 473 | "funding": { 474 | "url": "https://github.com/chalk/chalk?sponsor=1" 475 | } 476 | }, 477 | "node_modules/color-convert": { 478 | "version": "2.0.1", 479 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 480 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 481 | "dev": true, 482 | "dependencies": { 483 | "color-name": "~1.1.4" 484 | }, 485 | "engines": { 486 | "node": ">=7.0.0" 487 | } 488 | }, 489 | "node_modules/color-name": { 490 | "version": "1.1.4", 491 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 492 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 493 | "dev": true 494 | }, 495 | "node_modules/concat-map": { 496 | "version": "0.0.1", 497 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 498 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 499 | "dev": true 500 | }, 501 | "node_modules/cross-spawn": { 502 | "version": "7.0.3", 503 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 504 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 505 | "dev": true, 506 | "dependencies": { 507 | "path-key": "^3.1.0", 508 | "shebang-command": "^2.0.0", 509 | "which": "^2.0.1" 510 | }, 511 | "engines": { 512 | "node": ">= 8" 513 | } 514 | }, 515 | "node_modules/debug": { 516 | "version": "4.3.4", 517 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 518 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 519 | "dev": true, 520 | "dependencies": { 521 | "ms": "2.1.2" 522 | }, 523 | "engines": { 524 | "node": ">=6.0" 525 | }, 526 | "peerDependenciesMeta": { 527 | "supports-color": { 528 | "optional": true 529 | } 530 | } 531 | }, 532 | "node_modules/deep-is": { 533 | "version": "0.1.4", 534 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 535 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 536 | "dev": true 537 | }, 538 | "node_modules/dir-glob": { 539 | "version": "3.0.1", 540 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 541 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 542 | "dev": true, 543 | "dependencies": { 544 | "path-type": "^4.0.0" 545 | }, 546 | "engines": { 547 | "node": ">=8" 548 | } 549 | }, 550 | "node_modules/doctrine": { 551 | "version": "3.0.0", 552 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 553 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 554 | "dev": true, 555 | "dependencies": { 556 | "esutils": "^2.0.2" 557 | }, 558 | "engines": { 559 | "node": ">=6.0.0" 560 | } 561 | }, 562 | "node_modules/escape-string-regexp": { 563 | "version": "4.0.0", 564 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 565 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 566 | "dev": true, 567 | "engines": { 568 | "node": ">=10" 569 | }, 570 | "funding": { 571 | "url": "https://github.com/sponsors/sindresorhus" 572 | } 573 | }, 574 | "node_modules/eslint": { 575 | "version": "8.29.0", 576 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz", 577 | "integrity": "sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==", 578 | "dev": true, 579 | "dependencies": { 580 | "@eslint/eslintrc": "^1.3.3", 581 | "@humanwhocodes/config-array": "^0.11.6", 582 | "@humanwhocodes/module-importer": "^1.0.1", 583 | "@nodelib/fs.walk": "^1.2.8", 584 | "ajv": "^6.10.0", 585 | "chalk": "^4.0.0", 586 | "cross-spawn": "^7.0.2", 587 | "debug": "^4.3.2", 588 | "doctrine": "^3.0.0", 589 | "escape-string-regexp": "^4.0.0", 590 | "eslint-scope": "^7.1.1", 591 | "eslint-utils": "^3.0.0", 592 | "eslint-visitor-keys": "^3.3.0", 593 | "espree": "^9.4.0", 594 | "esquery": "^1.4.0", 595 | "esutils": "^2.0.2", 596 | "fast-deep-equal": "^3.1.3", 597 | "file-entry-cache": "^6.0.1", 598 | "find-up": "^5.0.0", 599 | "glob-parent": "^6.0.2", 600 | "globals": "^13.15.0", 601 | "grapheme-splitter": "^1.0.4", 602 | "ignore": "^5.2.0", 603 | "import-fresh": "^3.0.0", 604 | "imurmurhash": "^0.1.4", 605 | "is-glob": "^4.0.0", 606 | "is-path-inside": "^3.0.3", 607 | "js-sdsl": "^4.1.4", 608 | "js-yaml": "^4.1.0", 609 | "json-stable-stringify-without-jsonify": "^1.0.1", 610 | "levn": "^0.4.1", 611 | "lodash.merge": "^4.6.2", 612 | "minimatch": "^3.1.2", 613 | "natural-compare": "^1.4.0", 614 | "optionator": "^0.9.1", 615 | "regexpp": "^3.2.0", 616 | "strip-ansi": "^6.0.1", 617 | "strip-json-comments": "^3.1.0", 618 | "text-table": "^0.2.0" 619 | }, 620 | "bin": { 621 | "eslint": "bin/eslint.js" 622 | }, 623 | "engines": { 624 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 625 | }, 626 | "funding": { 627 | "url": "https://opencollective.com/eslint" 628 | } 629 | }, 630 | "node_modules/eslint-scope": { 631 | "version": "5.1.1", 632 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 633 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 634 | "dev": true, 635 | "dependencies": { 636 | "esrecurse": "^4.3.0", 637 | "estraverse": "^4.1.1" 638 | }, 639 | "engines": { 640 | "node": ">=8.0.0" 641 | } 642 | }, 643 | "node_modules/eslint-utils": { 644 | "version": "3.0.0", 645 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", 646 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 647 | "dev": true, 648 | "dependencies": { 649 | "eslint-visitor-keys": "^2.0.0" 650 | }, 651 | "engines": { 652 | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" 653 | }, 654 | "funding": { 655 | "url": "https://github.com/sponsors/mysticatea" 656 | }, 657 | "peerDependencies": { 658 | "eslint": ">=5" 659 | } 660 | }, 661 | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { 662 | "version": "2.1.0", 663 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 664 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 665 | "dev": true, 666 | "engines": { 667 | "node": ">=10" 668 | } 669 | }, 670 | "node_modules/eslint-visitor-keys": { 671 | "version": "3.3.0", 672 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", 673 | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", 674 | "dev": true, 675 | "engines": { 676 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 677 | } 678 | }, 679 | "node_modules/eslint/node_modules/eslint-scope": { 680 | "version": "7.1.1", 681 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", 682 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", 683 | "dev": true, 684 | "dependencies": { 685 | "esrecurse": "^4.3.0", 686 | "estraverse": "^5.2.0" 687 | }, 688 | "engines": { 689 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 690 | } 691 | }, 692 | "node_modules/eslint/node_modules/estraverse": { 693 | "version": "5.3.0", 694 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 695 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 696 | "dev": true, 697 | "engines": { 698 | "node": ">=4.0" 699 | } 700 | }, 701 | "node_modules/espree": { 702 | "version": "9.4.1", 703 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", 704 | "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", 705 | "dev": true, 706 | "dependencies": { 707 | "acorn": "^8.8.0", 708 | "acorn-jsx": "^5.3.2", 709 | "eslint-visitor-keys": "^3.3.0" 710 | }, 711 | "engines": { 712 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 713 | }, 714 | "funding": { 715 | "url": "https://opencollective.com/eslint" 716 | } 717 | }, 718 | "node_modules/esquery": { 719 | "version": "1.4.0", 720 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", 721 | "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", 722 | "dev": true, 723 | "dependencies": { 724 | "estraverse": "^5.1.0" 725 | }, 726 | "engines": { 727 | "node": ">=0.10" 728 | } 729 | }, 730 | "node_modules/esquery/node_modules/estraverse": { 731 | "version": "5.3.0", 732 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 733 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 734 | "dev": true, 735 | "engines": { 736 | "node": ">=4.0" 737 | } 738 | }, 739 | "node_modules/esrecurse": { 740 | "version": "4.3.0", 741 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 742 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 743 | "dev": true, 744 | "dependencies": { 745 | "estraverse": "^5.2.0" 746 | }, 747 | "engines": { 748 | "node": ">=4.0" 749 | } 750 | }, 751 | "node_modules/esrecurse/node_modules/estraverse": { 752 | "version": "5.3.0", 753 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 754 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 755 | "dev": true, 756 | "engines": { 757 | "node": ">=4.0" 758 | } 759 | }, 760 | "node_modules/estraverse": { 761 | "version": "4.3.0", 762 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 763 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 764 | "dev": true, 765 | "engines": { 766 | "node": ">=4.0" 767 | } 768 | }, 769 | "node_modules/esutils": { 770 | "version": "2.0.3", 771 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 772 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 773 | "dev": true, 774 | "engines": { 775 | "node": ">=0.10.0" 776 | } 777 | }, 778 | "node_modules/fast-deep-equal": { 779 | "version": "3.1.3", 780 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 781 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 782 | "dev": true 783 | }, 784 | "node_modules/fast-glob": { 785 | "version": "3.2.12", 786 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 787 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 788 | "dev": true, 789 | "dependencies": { 790 | "@nodelib/fs.stat": "^2.0.2", 791 | "@nodelib/fs.walk": "^1.2.3", 792 | "glob-parent": "^5.1.2", 793 | "merge2": "^1.3.0", 794 | "micromatch": "^4.0.4" 795 | }, 796 | "engines": { 797 | "node": ">=8.6.0" 798 | } 799 | }, 800 | "node_modules/fast-glob/node_modules/glob-parent": { 801 | "version": "5.1.2", 802 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 803 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 804 | "dev": true, 805 | "dependencies": { 806 | "is-glob": "^4.0.1" 807 | }, 808 | "engines": { 809 | "node": ">= 6" 810 | } 811 | }, 812 | "node_modules/fast-json-stable-stringify": { 813 | "version": "2.1.0", 814 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 815 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 816 | "dev": true 817 | }, 818 | "node_modules/fast-levenshtein": { 819 | "version": "2.0.6", 820 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 821 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 822 | "dev": true 823 | }, 824 | "node_modules/fastq": { 825 | "version": "1.14.0", 826 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.14.0.tgz", 827 | "integrity": "sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==", 828 | "dev": true, 829 | "dependencies": { 830 | "reusify": "^1.0.4" 831 | } 832 | }, 833 | "node_modules/file-entry-cache": { 834 | "version": "6.0.1", 835 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 836 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 837 | "dev": true, 838 | "dependencies": { 839 | "flat-cache": "^3.0.4" 840 | }, 841 | "engines": { 842 | "node": "^10.12.0 || >=12.0.0" 843 | } 844 | }, 845 | "node_modules/fill-range": { 846 | "version": "7.0.1", 847 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 848 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 849 | "dev": true, 850 | "dependencies": { 851 | "to-regex-range": "^5.0.1" 852 | }, 853 | "engines": { 854 | "node": ">=8" 855 | } 856 | }, 857 | "node_modules/find-up": { 858 | "version": "5.0.0", 859 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 860 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 861 | "dev": true, 862 | "dependencies": { 863 | "locate-path": "^6.0.0", 864 | "path-exists": "^4.0.0" 865 | }, 866 | "engines": { 867 | "node": ">=10" 868 | }, 869 | "funding": { 870 | "url": "https://github.com/sponsors/sindresorhus" 871 | } 872 | }, 873 | "node_modules/flat-cache": { 874 | "version": "3.0.4", 875 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 876 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 877 | "dev": true, 878 | "dependencies": { 879 | "flatted": "^3.1.0", 880 | "rimraf": "^3.0.2" 881 | }, 882 | "engines": { 883 | "node": "^10.12.0 || >=12.0.0" 884 | } 885 | }, 886 | "node_modules/flatted": { 887 | "version": "3.2.7", 888 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 889 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", 890 | "dev": true 891 | }, 892 | "node_modules/fs.realpath": { 893 | "version": "1.0.0", 894 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 895 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 896 | "dev": true 897 | }, 898 | "node_modules/glob": { 899 | "version": "7.2.3", 900 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 901 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 902 | "dev": true, 903 | "dependencies": { 904 | "fs.realpath": "^1.0.0", 905 | "inflight": "^1.0.4", 906 | "inherits": "2", 907 | "minimatch": "^3.1.1", 908 | "once": "^1.3.0", 909 | "path-is-absolute": "^1.0.0" 910 | }, 911 | "engines": { 912 | "node": "*" 913 | }, 914 | "funding": { 915 | "url": "https://github.com/sponsors/isaacs" 916 | } 917 | }, 918 | "node_modules/glob-parent": { 919 | "version": "6.0.2", 920 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 921 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 922 | "dev": true, 923 | "dependencies": { 924 | "is-glob": "^4.0.3" 925 | }, 926 | "engines": { 927 | "node": ">=10.13.0" 928 | } 929 | }, 930 | "node_modules/globals": { 931 | "version": "13.18.0", 932 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", 933 | "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", 934 | "dev": true, 935 | "dependencies": { 936 | "type-fest": "^0.20.2" 937 | }, 938 | "engines": { 939 | "node": ">=8" 940 | }, 941 | "funding": { 942 | "url": "https://github.com/sponsors/sindresorhus" 943 | } 944 | }, 945 | "node_modules/globby": { 946 | "version": "11.1.0", 947 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 948 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 949 | "dev": true, 950 | "dependencies": { 951 | "array-union": "^2.1.0", 952 | "dir-glob": "^3.0.1", 953 | "fast-glob": "^3.2.9", 954 | "ignore": "^5.2.0", 955 | "merge2": "^1.4.1", 956 | "slash": "^3.0.0" 957 | }, 958 | "engines": { 959 | "node": ">=10" 960 | }, 961 | "funding": { 962 | "url": "https://github.com/sponsors/sindresorhus" 963 | } 964 | }, 965 | "node_modules/grapheme-splitter": { 966 | "version": "1.0.4", 967 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 968 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", 969 | "dev": true 970 | }, 971 | "node_modules/has-flag": { 972 | "version": "4.0.0", 973 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 974 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 975 | "dev": true, 976 | "engines": { 977 | "node": ">=8" 978 | } 979 | }, 980 | "node_modules/ignore": { 981 | "version": "5.2.1", 982 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz", 983 | "integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==", 984 | "dev": true, 985 | "engines": { 986 | "node": ">= 4" 987 | } 988 | }, 989 | "node_modules/import-fresh": { 990 | "version": "3.3.0", 991 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 992 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 993 | "dev": true, 994 | "dependencies": { 995 | "parent-module": "^1.0.0", 996 | "resolve-from": "^4.0.0" 997 | }, 998 | "engines": { 999 | "node": ">=6" 1000 | }, 1001 | "funding": { 1002 | "url": "https://github.com/sponsors/sindresorhus" 1003 | } 1004 | }, 1005 | "node_modules/imurmurhash": { 1006 | "version": "0.1.4", 1007 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1008 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1009 | "dev": true, 1010 | "engines": { 1011 | "node": ">=0.8.19" 1012 | } 1013 | }, 1014 | "node_modules/inflight": { 1015 | "version": "1.0.6", 1016 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1017 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1018 | "dev": true, 1019 | "dependencies": { 1020 | "once": "^1.3.0", 1021 | "wrappy": "1" 1022 | } 1023 | }, 1024 | "node_modules/inherits": { 1025 | "version": "2.0.4", 1026 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1027 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1028 | "dev": true 1029 | }, 1030 | "node_modules/is-extglob": { 1031 | "version": "2.1.1", 1032 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1033 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1034 | "dev": true, 1035 | "engines": { 1036 | "node": ">=0.10.0" 1037 | } 1038 | }, 1039 | "node_modules/is-glob": { 1040 | "version": "4.0.3", 1041 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1042 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1043 | "dev": true, 1044 | "dependencies": { 1045 | "is-extglob": "^2.1.1" 1046 | }, 1047 | "engines": { 1048 | "node": ">=0.10.0" 1049 | } 1050 | }, 1051 | "node_modules/is-number": { 1052 | "version": "7.0.0", 1053 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1054 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1055 | "dev": true, 1056 | "engines": { 1057 | "node": ">=0.12.0" 1058 | } 1059 | }, 1060 | "node_modules/is-path-inside": { 1061 | "version": "3.0.3", 1062 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1063 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1064 | "dev": true, 1065 | "engines": { 1066 | "node": ">=8" 1067 | } 1068 | }, 1069 | "node_modules/isexe": { 1070 | "version": "2.0.0", 1071 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1072 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1073 | "dev": true 1074 | }, 1075 | "node_modules/js-sdsl": { 1076 | "version": "4.2.0", 1077 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", 1078 | "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==", 1079 | "dev": true, 1080 | "funding": { 1081 | "type": "opencollective", 1082 | "url": "https://opencollective.com/js-sdsl" 1083 | } 1084 | }, 1085 | "node_modules/js-yaml": { 1086 | "version": "4.1.0", 1087 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1088 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1089 | "dev": true, 1090 | "dependencies": { 1091 | "argparse": "^2.0.1" 1092 | }, 1093 | "bin": { 1094 | "js-yaml": "bin/js-yaml.js" 1095 | } 1096 | }, 1097 | "node_modules/json-schema-traverse": { 1098 | "version": "0.4.1", 1099 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1100 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1101 | "dev": true 1102 | }, 1103 | "node_modules/json-stable-stringify-without-jsonify": { 1104 | "version": "1.0.1", 1105 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1106 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1107 | "dev": true 1108 | }, 1109 | "node_modules/levn": { 1110 | "version": "0.4.1", 1111 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1112 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1113 | "dev": true, 1114 | "dependencies": { 1115 | "prelude-ls": "^1.2.1", 1116 | "type-check": "~0.4.0" 1117 | }, 1118 | "engines": { 1119 | "node": ">= 0.8.0" 1120 | } 1121 | }, 1122 | "node_modules/locate-path": { 1123 | "version": "6.0.0", 1124 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1125 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1126 | "dev": true, 1127 | "dependencies": { 1128 | "p-locate": "^5.0.0" 1129 | }, 1130 | "engines": { 1131 | "node": ">=10" 1132 | }, 1133 | "funding": { 1134 | "url": "https://github.com/sponsors/sindresorhus" 1135 | } 1136 | }, 1137 | "node_modules/lodash.merge": { 1138 | "version": "4.6.2", 1139 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1140 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1141 | "dev": true 1142 | }, 1143 | "node_modules/lru-cache": { 1144 | "version": "6.0.0", 1145 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 1146 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 1147 | "dev": true, 1148 | "dependencies": { 1149 | "yallist": "^4.0.0" 1150 | }, 1151 | "engines": { 1152 | "node": ">=10" 1153 | } 1154 | }, 1155 | "node_modules/merge2": { 1156 | "version": "1.4.1", 1157 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1158 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1159 | "dev": true, 1160 | "engines": { 1161 | "node": ">= 8" 1162 | } 1163 | }, 1164 | "node_modules/micromatch": { 1165 | "version": "4.0.5", 1166 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 1167 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 1168 | "dev": true, 1169 | "dependencies": { 1170 | "braces": "^3.0.2", 1171 | "picomatch": "^2.3.1" 1172 | }, 1173 | "engines": { 1174 | "node": ">=8.6" 1175 | } 1176 | }, 1177 | "node_modules/minimatch": { 1178 | "version": "3.1.2", 1179 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1180 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1181 | "dev": true, 1182 | "dependencies": { 1183 | "brace-expansion": "^1.1.7" 1184 | }, 1185 | "engines": { 1186 | "node": "*" 1187 | } 1188 | }, 1189 | "node_modules/ms": { 1190 | "version": "2.1.2", 1191 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1192 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1193 | "dev": true 1194 | }, 1195 | "node_modules/natural-compare": { 1196 | "version": "1.4.0", 1197 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1198 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1199 | "dev": true 1200 | }, 1201 | "node_modules/natural-compare-lite": { 1202 | "version": "1.4.0", 1203 | "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", 1204 | "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", 1205 | "dev": true 1206 | }, 1207 | "node_modules/once": { 1208 | "version": "1.4.0", 1209 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1210 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1211 | "dev": true, 1212 | "dependencies": { 1213 | "wrappy": "1" 1214 | } 1215 | }, 1216 | "node_modules/optionator": { 1217 | "version": "0.9.1", 1218 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 1219 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 1220 | "dev": true, 1221 | "dependencies": { 1222 | "deep-is": "^0.1.3", 1223 | "fast-levenshtein": "^2.0.6", 1224 | "levn": "^0.4.1", 1225 | "prelude-ls": "^1.2.1", 1226 | "type-check": "^0.4.0", 1227 | "word-wrap": "^1.2.3" 1228 | }, 1229 | "engines": { 1230 | "node": ">= 0.8.0" 1231 | } 1232 | }, 1233 | "node_modules/p-limit": { 1234 | "version": "3.1.0", 1235 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1236 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1237 | "dev": true, 1238 | "dependencies": { 1239 | "yocto-queue": "^0.1.0" 1240 | }, 1241 | "engines": { 1242 | "node": ">=10" 1243 | }, 1244 | "funding": { 1245 | "url": "https://github.com/sponsors/sindresorhus" 1246 | } 1247 | }, 1248 | "node_modules/p-locate": { 1249 | "version": "5.0.0", 1250 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1251 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1252 | "dev": true, 1253 | "dependencies": { 1254 | "p-limit": "^3.0.2" 1255 | }, 1256 | "engines": { 1257 | "node": ">=10" 1258 | }, 1259 | "funding": { 1260 | "url": "https://github.com/sponsors/sindresorhus" 1261 | } 1262 | }, 1263 | "node_modules/pako": { 1264 | "version": "0.2.9", 1265 | "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", 1266 | "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==" 1267 | }, 1268 | "node_modules/parent-module": { 1269 | "version": "1.0.1", 1270 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1271 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1272 | "dev": true, 1273 | "dependencies": { 1274 | "callsites": "^3.0.0" 1275 | }, 1276 | "engines": { 1277 | "node": ">=6" 1278 | } 1279 | }, 1280 | "node_modules/path-exists": { 1281 | "version": "4.0.0", 1282 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1283 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1284 | "dev": true, 1285 | "engines": { 1286 | "node": ">=8" 1287 | } 1288 | }, 1289 | "node_modules/path-is-absolute": { 1290 | "version": "1.0.1", 1291 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1292 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1293 | "dev": true, 1294 | "engines": { 1295 | "node": ">=0.10.0" 1296 | } 1297 | }, 1298 | "node_modules/path-key": { 1299 | "version": "3.1.1", 1300 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1301 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1302 | "dev": true, 1303 | "engines": { 1304 | "node": ">=8" 1305 | } 1306 | }, 1307 | "node_modules/path-type": { 1308 | "version": "4.0.0", 1309 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 1310 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 1311 | "dev": true, 1312 | "engines": { 1313 | "node": ">=8" 1314 | } 1315 | }, 1316 | "node_modules/picomatch": { 1317 | "version": "2.3.1", 1318 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1319 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1320 | "dev": true, 1321 | "engines": { 1322 | "node": ">=8.6" 1323 | }, 1324 | "funding": { 1325 | "url": "https://github.com/sponsors/jonschlinkert" 1326 | } 1327 | }, 1328 | "node_modules/prelude-ls": { 1329 | "version": "1.2.1", 1330 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1331 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1332 | "dev": true, 1333 | "engines": { 1334 | "node": ">= 0.8.0" 1335 | } 1336 | }, 1337 | "node_modules/punycode": { 1338 | "version": "2.1.1", 1339 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 1340 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 1341 | "dev": true, 1342 | "engines": { 1343 | "node": ">=6" 1344 | } 1345 | }, 1346 | "node_modules/queue-microtask": { 1347 | "version": "1.2.3", 1348 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1349 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1350 | "dev": true, 1351 | "funding": [ 1352 | { 1353 | "type": "github", 1354 | "url": "https://github.com/sponsors/feross" 1355 | }, 1356 | { 1357 | "type": "patreon", 1358 | "url": "https://www.patreon.com/feross" 1359 | }, 1360 | { 1361 | "type": "consulting", 1362 | "url": "https://feross.org/support" 1363 | } 1364 | ] 1365 | }, 1366 | "node_modules/regexpp": { 1367 | "version": "3.2.0", 1368 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", 1369 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 1370 | "dev": true, 1371 | "engines": { 1372 | "node": ">=8" 1373 | }, 1374 | "funding": { 1375 | "url": "https://github.com/sponsors/mysticatea" 1376 | } 1377 | }, 1378 | "node_modules/resolve-from": { 1379 | "version": "4.0.0", 1380 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1381 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1382 | "dev": true, 1383 | "engines": { 1384 | "node": ">=4" 1385 | } 1386 | }, 1387 | "node_modules/reusify": { 1388 | "version": "1.0.4", 1389 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1390 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1391 | "dev": true, 1392 | "engines": { 1393 | "iojs": ">=1.0.0", 1394 | "node": ">=0.10.0" 1395 | } 1396 | }, 1397 | "node_modules/rimraf": { 1398 | "version": "3.0.2", 1399 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1400 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1401 | "dev": true, 1402 | "dependencies": { 1403 | "glob": "^7.1.3" 1404 | }, 1405 | "bin": { 1406 | "rimraf": "bin.js" 1407 | }, 1408 | "funding": { 1409 | "url": "https://github.com/sponsors/isaacs" 1410 | } 1411 | }, 1412 | "node_modules/run-parallel": { 1413 | "version": "1.2.0", 1414 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1415 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1416 | "dev": true, 1417 | "funding": [ 1418 | { 1419 | "type": "github", 1420 | "url": "https://github.com/sponsors/feross" 1421 | }, 1422 | { 1423 | "type": "patreon", 1424 | "url": "https://www.patreon.com/feross" 1425 | }, 1426 | { 1427 | "type": "consulting", 1428 | "url": "https://feross.org/support" 1429 | } 1430 | ], 1431 | "dependencies": { 1432 | "queue-microtask": "^1.2.2" 1433 | } 1434 | }, 1435 | "node_modules/semver": { 1436 | "version": "7.3.8", 1437 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", 1438 | "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", 1439 | "dev": true, 1440 | "dependencies": { 1441 | "lru-cache": "^6.0.0" 1442 | }, 1443 | "bin": { 1444 | "semver": "bin/semver.js" 1445 | }, 1446 | "engines": { 1447 | "node": ">=10" 1448 | } 1449 | }, 1450 | "node_modules/shebang-command": { 1451 | "version": "2.0.0", 1452 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1453 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1454 | "dev": true, 1455 | "dependencies": { 1456 | "shebang-regex": "^3.0.0" 1457 | }, 1458 | "engines": { 1459 | "node": ">=8" 1460 | } 1461 | }, 1462 | "node_modules/shebang-regex": { 1463 | "version": "3.0.0", 1464 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1465 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1466 | "dev": true, 1467 | "engines": { 1468 | "node": ">=8" 1469 | } 1470 | }, 1471 | "node_modules/slash": { 1472 | "version": "3.0.0", 1473 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 1474 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 1475 | "dev": true, 1476 | "engines": { 1477 | "node": ">=8" 1478 | } 1479 | }, 1480 | "node_modules/strip-ansi": { 1481 | "version": "6.0.1", 1482 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1483 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1484 | "dev": true, 1485 | "dependencies": { 1486 | "ansi-regex": "^5.0.1" 1487 | }, 1488 | "engines": { 1489 | "node": ">=8" 1490 | } 1491 | }, 1492 | "node_modules/strip-json-comments": { 1493 | "version": "3.1.1", 1494 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1495 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1496 | "dev": true, 1497 | "engines": { 1498 | "node": ">=8" 1499 | }, 1500 | "funding": { 1501 | "url": "https://github.com/sponsors/sindresorhus" 1502 | } 1503 | }, 1504 | "node_modules/supports-color": { 1505 | "version": "7.2.0", 1506 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1507 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1508 | "dev": true, 1509 | "dependencies": { 1510 | "has-flag": "^4.0.0" 1511 | }, 1512 | "engines": { 1513 | "node": ">=8" 1514 | } 1515 | }, 1516 | "node_modules/text-table": { 1517 | "version": "0.2.0", 1518 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 1519 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 1520 | "dev": true 1521 | }, 1522 | "node_modules/tiny-inflate": { 1523 | "version": "1.0.3", 1524 | "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", 1525 | "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==" 1526 | }, 1527 | "node_modules/to-regex-range": { 1528 | "version": "5.0.1", 1529 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1530 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1531 | "dev": true, 1532 | "dependencies": { 1533 | "is-number": "^7.0.0" 1534 | }, 1535 | "engines": { 1536 | "node": ">=8.0" 1537 | } 1538 | }, 1539 | "node_modules/tslib": { 1540 | "version": "1.14.1", 1541 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 1542 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 1543 | "dev": true 1544 | }, 1545 | "node_modules/tsutils": { 1546 | "version": "3.21.0", 1547 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 1548 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 1549 | "dev": true, 1550 | "dependencies": { 1551 | "tslib": "^1.8.1" 1552 | }, 1553 | "engines": { 1554 | "node": ">= 6" 1555 | }, 1556 | "peerDependencies": { 1557 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" 1558 | } 1559 | }, 1560 | "node_modules/type-check": { 1561 | "version": "0.4.0", 1562 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 1563 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 1564 | "dev": true, 1565 | "dependencies": { 1566 | "prelude-ls": "^1.2.1" 1567 | }, 1568 | "engines": { 1569 | "node": ">= 0.8.0" 1570 | } 1571 | }, 1572 | "node_modules/type-fest": { 1573 | "version": "0.20.2", 1574 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 1575 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 1576 | "dev": true, 1577 | "engines": { 1578 | "node": ">=10" 1579 | }, 1580 | "funding": { 1581 | "url": "https://github.com/sponsors/sindresorhus" 1582 | } 1583 | }, 1584 | "node_modules/typescript": { 1585 | "version": "4.9.4", 1586 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz", 1587 | "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==", 1588 | "dev": true, 1589 | "bin": { 1590 | "tsc": "bin/tsc", 1591 | "tsserver": "bin/tsserver" 1592 | }, 1593 | "engines": { 1594 | "node": ">=4.2.0" 1595 | } 1596 | }, 1597 | "node_modules/unicode": { 1598 | "version": "14.0.0", 1599 | "resolved": "https://registry.npmjs.org/unicode/-/unicode-14.0.0.tgz", 1600 | "integrity": "sha512-BjinxTXkbm9Jomp/YBTMGusr4fxIG67fNGShHIRAL16Ur2GJTq2xvLi+sxuiJmInCmwqqev2BCFKyvbfp/yAkg==", 1601 | "engines": { 1602 | "node": ">= 0.8.x" 1603 | } 1604 | }, 1605 | "node_modules/unicode-properties": { 1606 | "version": "1.4.1", 1607 | "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz", 1608 | "integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==", 1609 | "dependencies": { 1610 | "base64-js": "^1.3.0", 1611 | "unicode-trie": "^2.0.0" 1612 | } 1613 | }, 1614 | "node_modules/unicode-trie": { 1615 | "version": "2.0.0", 1616 | "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", 1617 | "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", 1618 | "dependencies": { 1619 | "pako": "^0.2.5", 1620 | "tiny-inflate": "^1.0.0" 1621 | } 1622 | }, 1623 | "node_modules/uri-js": { 1624 | "version": "4.4.1", 1625 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1626 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1627 | "dev": true, 1628 | "dependencies": { 1629 | "punycode": "^2.1.0" 1630 | } 1631 | }, 1632 | "node_modules/utf8": { 1633 | "version": "3.0.0", 1634 | "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", 1635 | "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==" 1636 | }, 1637 | "node_modules/which": { 1638 | "version": "2.0.2", 1639 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1640 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1641 | "dev": true, 1642 | "dependencies": { 1643 | "isexe": "^2.0.0" 1644 | }, 1645 | "bin": { 1646 | "node-which": "bin/node-which" 1647 | }, 1648 | "engines": { 1649 | "node": ">= 8" 1650 | } 1651 | }, 1652 | "node_modules/word-wrap": { 1653 | "version": "1.2.4", 1654 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.4.tgz", 1655 | "integrity": "sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==", 1656 | "dev": true, 1657 | "engines": { 1658 | "node": ">=0.10.0" 1659 | } 1660 | }, 1661 | "node_modules/wrappy": { 1662 | "version": "1.0.2", 1663 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1664 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 1665 | "dev": true 1666 | }, 1667 | "node_modules/yallist": { 1668 | "version": "4.0.0", 1669 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 1670 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 1671 | "dev": true 1672 | }, 1673 | "node_modules/yocto-queue": { 1674 | "version": "0.1.0", 1675 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 1676 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 1677 | "dev": true, 1678 | "engines": { 1679 | "node": ">=10" 1680 | }, 1681 | "funding": { 1682 | "url": "https://github.com/sponsors/sindresorhus" 1683 | } 1684 | } 1685 | } 1686 | } 1687 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cursorCharCode", 3 | "displayName": "Unicode code point of current character", 4 | "description": "Shows the Unicode code point of character under cursor in the status bar.", 5 | "version": "0.2.5", 6 | "publisher": "zeithaste", 7 | "engines": { 8 | "vscode": "^1.34.0" 9 | }, 10 | "categories": [ 11 | "Other" 12 | ], 13 | "galleryBanner": { 14 | "color": "#33A4C4", 15 | "theme": "dark" 16 | }, 17 | "icon": "ccc_icon.png", 18 | "keywords": [ 19 | "Unicode", 20 | "character", 21 | "codepoint", 22 | "cursor" 23 | ], 24 | "repository": { 25 | "type": "git", 26 | "url": "https://github.com/zeithaste/cursorCharCode.git" 27 | }, 28 | "pricing": "Free", 29 | "bugs": { 30 | "url": "https://github.com/zeithaste/cursorCharCode/issues", 31 | "email": "zeithaste@gmail.com" 32 | }, 33 | "activationEvents": [ 34 | "onStartupFinished" 35 | ], 36 | "main": "./out/extension", 37 | "scripts": { 38 | "vscode:prepublish": "npm run compile", 39 | "compile": "tsc -p ./", 40 | "lint": "eslint \"src/**/*.ts\"", 41 | "watch": "tsc -watch -p ./" 42 | }, 43 | "devDependencies": { 44 | "@types/node": "^18.11.11", 45 | "@types/vscode": "^1.34.0", 46 | "@typescript-eslint/eslint-plugin": "^5.42.0", 47 | "@typescript-eslint/parser": "^5.42.0", 48 | "eslint": "^8.26.0", 49 | "typescript": "^4.9.4" 50 | }, 51 | "contributes": { 52 | "commands": [ 53 | { 54 | "category": "CursorCharCode", 55 | "command": "cursorCharCode.convertToXX", 56 | "title": "Replace character to \\xFF form" 57 | }, 58 | { 59 | "category": "CursorCharCode", 60 | "command": "cursorCharCode.convertToXXXX", 61 | "title": "Replace character to \\uFFFF form" 62 | }, 63 | { 64 | "category": "CursorCharCode", 65 | "command": "cursorCharCode.convertToXXXXXXXX", 66 | "title": "Replace character to \\UFFFFFFFF form" 67 | }, 68 | { 69 | "category": "CursorCharCode", 70 | "command": "cursorCharCode.hexToClipboard", 71 | "title": "Copy current character code (hexadecimal) to the clipboard" 72 | }, 73 | { 74 | "category": "CursorCharCode", 75 | "command": "cursorCharCode.decToClipboard", 76 | "title": "Copy current character code (decimal) to the clipboard" 77 | } 78 | ] 79 | }, 80 | "dependencies": { 81 | "unicode": "^14.0.0", 82 | "unicode-properties": "^1.4.1", 83 | "utf8": "^3.0.0" 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /resource/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | U+1234 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/.eslintrc.js: -------------------------------------------------------------------------------- 1 | /**@type {import('eslint').Linter.Config} */ 2 | // eslint-disable-next-line no-undef 3 | module.exports = { 4 | root: true, 5 | parser: '@typescript-eslint/parser', 6 | plugins: [ 7 | '@typescript-eslint', 8 | ], 9 | extends: [ 10 | 'eslint:recommended', 11 | 'plugin:@typescript-eslint/recommended', 12 | ], 13 | rules: { 14 | 'semi': [2, "always"], 15 | '@typescript-eslint/no-unused-vars': 0, 16 | '@typescript-eslint/no-explicit-any': 0, 17 | '@typescript-eslint/explicit-module-boundary-types': 0, 18 | '@typescript-eslint/no-non-null-assertion': 0, 19 | } 20 | }; -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- 1 | // The module 'vscode' contains the VS Code extensibility API 2 | import { env, window, Disposable, ExtensionContext, StatusBarAlignment, StatusBarItem, Uri, Range, commands, TextEditor, workspace } from 'vscode'; 3 | 4 | // This method is called when the extension is activated. Activation is 5 | // controlled by the activation events defined in package.json. 6 | export function activate(context: ExtensionContext) { 7 | let charCodeDisplay = new CharCodeDisplay(); 8 | let controller = new CharCodeController(charCodeDisplay); 9 | 10 | // Add to a list of disposables which are disposed when this extension is deactivated. 11 | context.subscriptions.push(controller); 12 | context.subscriptions.push(charCodeDisplay); 13 | 14 | context.subscriptions.push( 15 | commands.registerCommand('cursorCharCode.openUnicodeInfo', async () => { 16 | commands.executeCommand('vscode.open', 17 | Uri.parse('https://www.compart.com/en/unicode/U+' + charCodeDisplay.hexCode)); 18 | })); 19 | 20 | context.subscriptions.push( 21 | commands.registerTextEditorCommand('cursorCharCode.convertToXX', async (editor, edit) => { 22 | charCodeDisplay.updateCharacterCode(editor); 23 | if (charCodeDisplay.character === undefined || !charCodeDisplay.charRange) 24 | return; 25 | 26 | // will replace an invalid string with utf8 for each character 27 | var utf8encoded = require('utf8').encode(charCodeDisplay.character); 28 | var replacement = ""; 29 | for (var i = 0; i < utf8encoded.length; i++) 30 | replacement += "\\x" + pad0(utf8encoded.charCodeAt(i).toString(16), 2); 31 | edit.replace(charCodeDisplay.charRange, replacement); 32 | })); 33 | 34 | context.subscriptions.push( 35 | commands.registerTextEditorCommand('cursorCharCode.convertToXXXX', async (editor, edit) => { 36 | charCodeDisplay.updateCharacterCode(editor); 37 | if (charCodeDisplay.character === undefined || !charCodeDisplay.charRange) 38 | return; 39 | 40 | // js is utf16 41 | var utf16 = charCodeDisplay.character; 42 | var replacement = ""; 43 | for (var i = 0; i < utf16.length; i++) 44 | replacement += "\\u" + pad0(utf16.charCodeAt(i).toString(16), 4); 45 | edit.replace(charCodeDisplay.charRange, replacement); 46 | })); 47 | 48 | context.subscriptions.push( 49 | commands.registerTextEditorCommand('cursorCharCode.convertToXXXXXXXX', async (editor, edit) => { 50 | charCodeDisplay.updateCharacterCode(editor); 51 | if (!charCodeDisplay.hexCode || !charCodeDisplay.charRange) 52 | return; 53 | 54 | // utf32 is just the code point 55 | var replacement = "\\U" + pad0(charCodeDisplay.hexCode, 8); 56 | edit.replace(charCodeDisplay.charRange, replacement); 57 | })); 58 | 59 | context.subscriptions.push( 60 | commands.registerTextEditorCommand('cursorCharCode.hexToClipboard', async (editor, edit) => { 61 | charCodeDisplay.updateCharacterCode(editor); 62 | if (charCodeDisplay.value) 63 | env.clipboard.writeText(charCodeDisplay.value.toString(16)); 64 | })); 65 | 66 | context.subscriptions.push( 67 | commands.registerTextEditorCommand('cursorCharCode.decToClipboard', async (editor, edit) => { 68 | charCodeDisplay.updateCharacterCode(editor); 69 | if (charCodeDisplay.value) 70 | env.clipboard.writeText(charCodeDisplay.value.toString(10)); 71 | })); 72 | } 73 | 74 | function pad0(s: string, length: number) { 75 | return s.length >= length ? s : '0'.repeat(length - s.length) + s; 76 | } 77 | 78 | class UnicodeCharNames { 79 | private lookupTable = new Map(); 80 | private processedCategories = new Set(); 81 | private uniprops = require('unicode-properties'); 82 | 83 | public getCharName(codepoint: number) { 84 | let cached = this.lookupTable.get(codepoint); 85 | if (cached !== undefined) { 86 | return cached; 87 | } 88 | 89 | let category = this.uniprops.getCategory(codepoint); 90 | if (!(category in this.processedCategories)) { 91 | let categoryPath = 'unicode/category/' + category; 92 | let categoryData = require(categoryPath); 93 | if (categoryData !== undefined) { 94 | for (let cp in categoryData) { 95 | this.lookupTable.set(Number(cp), categoryData[cp].name); 96 | } 97 | } 98 | this.processedCategories.add(category); 99 | // unicode data is no longer needed 100 | delete require.cache[require.resolve(categoryPath)] 101 | } 102 | 103 | return this.lookupTable.get(codepoint); 104 | } 105 | } 106 | 107 | class CharCodeDisplay { 108 | private _statusBarItem: StatusBarItem | undefined; 109 | private _charRange: Range | undefined; 110 | private _value: number | undefined; 111 | private _character: string | undefined; 112 | private _hexCode: string | undefined; 113 | private _charNames = new UnicodeCharNames(); 114 | 115 | /** 116 | * Returns the range of the character in the active editor. 117 | */ 118 | public get charRange() { return this._charRange; } 119 | 120 | /** 121 | * Returns the character in question. 122 | */ 123 | public get character() { return this._character; } 124 | 125 | /** 126 | * Returns an at least 4 character hex code. 127 | */ 128 | public get hexCode() { return this._hexCode; } 129 | 130 | /** 131 | * Returns character code as a number 132 | */ 133 | public get value() { return this._value; } 134 | 135 | public updateCharacterCode(editor?: TextEditor) { 136 | if (!this._statusBarItem) { 137 | this._statusBarItem = window.createStatusBarItem(StatusBarAlignment.Right, 101); 138 | } 139 | 140 | // Get the current text editor 141 | if (!editor) { 142 | editor = window.activeTextEditor; 143 | } 144 | 145 | if (!editor || !editor.selection || !editor.document) { 146 | this._statusBarItem.hide(); 147 | return; 148 | } 149 | 150 | let cursorPos = editor.selection.active; 151 | // taking 2 chars instead of one allows to handle surrogate pairs correctly 152 | let cursorTextRange = new Range(cursorPos, cursorPos.translate(0, 2)); 153 | let cursorText = editor.document.getText(cursorTextRange); 154 | if (!cursorText) { 155 | this._statusBarItem.hide(); 156 | return; 157 | } 158 | 159 | // Update the status bar 160 | this._value = cursorText.codePointAt(0); 161 | if (!this._value) { 162 | this._statusBarItem.hide(); 163 | return; 164 | } 165 | 166 | this._character = String.fromCodePoint(this._value); 167 | this._charRange = new Range(cursorPos, cursorPos.translate(0, this._character.length)); 168 | 169 | let hexCode = this._value.toString(16).toUpperCase(); 170 | if (this._value <= 0xffff && hexCode.length < 4) 171 | hexCode = pad0(hexCode, 4); 172 | this._statusBarItem.text = `$(telescope) U+${hexCode}`; 173 | this._hexCode = `${hexCode}`; 174 | //let debug = vscode.window.createOutputChannel("cursorCharCode debug"); 175 | //debug.appendLine(`Text: ${cursorText}, number: ${this._value}, hex=${hexCode}`); debug.show(); 176 | 177 | let characterName = this._charNames.getCharName(this._value); 178 | if (characterName !== undefined) 179 | this._statusBarItem.tooltip = characterName; 180 | 181 | this._statusBarItem.command = 'cursorCharCode.openUnicodeInfo'; 182 | this._statusBarItem.show(); 183 | } 184 | 185 | dispose() { 186 | if (this._statusBarItem) 187 | this._statusBarItem.dispose(); 188 | } 189 | } 190 | 191 | class CharCodeController { 192 | private _display: CharCodeDisplay; 193 | private _disposable: Disposable; 194 | 195 | constructor(display: CharCodeDisplay) { 196 | this._display = display; 197 | 198 | // subscribe to selection change and editor activation events 199 | let subscriptions: Disposable[] = []; 200 | window.onDidChangeTextEditorSelection(this._onEvent, this, subscriptions); 201 | window.onDidChangeActiveTextEditor(this._onEvent, this, subscriptions); 202 | workspace.onDidChangeTextDocument(this._onEvent, this, subscriptions); 203 | 204 | this._display.updateCharacterCode(); 205 | this._disposable = Disposable.from(...subscriptions); 206 | } 207 | 208 | dispose() { 209 | this._disposable.dispose(); 210 | } 211 | 212 | private _onEvent() { 213 | this._display.updateCharacterCode(); 214 | } 215 | } 216 | 217 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es2020", 5 | "lib": ["es2020"], 6 | "outDir": "out", 7 | "sourceMap": true, 8 | "strict": true, 9 | "rootDir": "src" 10 | }, 11 | "exclude": ["node_modules", ".vscode-test"] 12 | } --------------------------------------------------------------------------------