react-native-nepali-picker 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +31 -0
  3. package/lib/commonjs/CalendarPicker.js +368 -0
  4. package/lib/commonjs/CalendarPicker.js.map +1 -0
  5. package/lib/commonjs/assets/DateSync.js +105 -0
  6. package/lib/commonjs/assets/DateSync.js.map +1 -0
  7. package/lib/commonjs/assets/Icons.js +182 -0
  8. package/lib/commonjs/assets/Icons.js.map +1 -0
  9. package/lib/commonjs/assets/Triangle.js +37 -0
  10. package/lib/commonjs/assets/Triangle.js.map +1 -0
  11. package/lib/commonjs/assets/cIcon.js +76 -0
  12. package/lib/commonjs/assets/cIcon.js.map +1 -0
  13. package/lib/commonjs/calendar/config.js +125 -0
  14. package/lib/commonjs/calendar/config.js.map +1 -0
  15. package/lib/commonjs/calendar/functions.js +114 -0
  16. package/lib/commonjs/calendar/functions.js.map +1 -0
  17. package/lib/commonjs/calendar/settings.js +40 -0
  18. package/lib/commonjs/calendar/settings.js.map +1 -0
  19. package/lib/commonjs/index.js +33 -0
  20. package/lib/commonjs/index.js.map +1 -0
  21. package/lib/module/CalendarPicker.js +363 -0
  22. package/lib/module/CalendarPicker.js.map +1 -0
  23. package/lib/module/assets/DateSync.js +101 -0
  24. package/lib/module/assets/DateSync.js.map +1 -0
  25. package/lib/module/assets/Icons.js +175 -0
  26. package/lib/module/assets/Icons.js.map +1 -0
  27. package/lib/module/assets/Triangle.js +33 -0
  28. package/lib/module/assets/Triangle.js.map +1 -0
  29. package/lib/module/assets/cIcon.js +72 -0
  30. package/lib/module/assets/cIcon.js.map +1 -0
  31. package/lib/module/calendar/config.js +121 -0
  32. package/lib/module/calendar/config.js.map +1 -0
  33. package/lib/module/calendar/functions.js +106 -0
  34. package/lib/module/calendar/functions.js.map +1 -0
  35. package/lib/module/calendar/settings.js +35 -0
  36. package/lib/module/calendar/settings.js.map +1 -0
  37. package/lib/module/index.js +6 -0
  38. package/lib/module/index.js.map +1 -0
  39. package/lib/typescript/commonjs/package.json +1 -0
  40. package/lib/typescript/commonjs/src/CalendarPicker.d.ts +13 -0
  41. package/lib/typescript/commonjs/src/CalendarPicker.d.ts.map +1 -0
  42. package/lib/typescript/commonjs/src/assets/DateSync.d.ts +7 -0
  43. package/lib/typescript/commonjs/src/assets/DateSync.d.ts.map +1 -0
  44. package/lib/typescript/commonjs/src/assets/Icons.d.ts +20 -0
  45. package/lib/typescript/commonjs/src/assets/Icons.d.ts.map +1 -0
  46. package/lib/typescript/commonjs/src/assets/Triangle.d.ts +7 -0
  47. package/lib/typescript/commonjs/src/assets/Triangle.d.ts.map +1 -0
  48. package/lib/typescript/commonjs/src/assets/cIcon.d.ts +6 -0
  49. package/lib/typescript/commonjs/src/assets/cIcon.d.ts.map +1 -0
  50. package/lib/typescript/commonjs/src/calendar/config.d.ts +9 -0
  51. package/lib/typescript/commonjs/src/calendar/config.d.ts.map +1 -0
  52. package/lib/typescript/commonjs/src/calendar/functions.d.ts +7 -0
  53. package/lib/typescript/commonjs/src/calendar/functions.d.ts.map +1 -0
  54. package/lib/typescript/commonjs/src/calendar/settings.d.ts +4 -0
  55. package/lib/typescript/commonjs/src/calendar/settings.d.ts.map +1 -0
  56. package/lib/typescript/commonjs/src/index.d.ts +4 -0
  57. package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
  58. package/lib/typescript/module/package.json +1 -0
  59. package/lib/typescript/module/src/CalendarPicker.d.ts +13 -0
  60. package/lib/typescript/module/src/CalendarPicker.d.ts.map +1 -0
  61. package/lib/typescript/module/src/assets/DateSync.d.ts +7 -0
  62. package/lib/typescript/module/src/assets/DateSync.d.ts.map +1 -0
  63. package/lib/typescript/module/src/assets/Icons.d.ts +20 -0
  64. package/lib/typescript/module/src/assets/Icons.d.ts.map +1 -0
  65. package/lib/typescript/module/src/assets/Triangle.d.ts +7 -0
  66. package/lib/typescript/module/src/assets/Triangle.d.ts.map +1 -0
  67. package/lib/typescript/module/src/assets/cIcon.d.ts +6 -0
  68. package/lib/typescript/module/src/assets/cIcon.d.ts.map +1 -0
  69. package/lib/typescript/module/src/calendar/config.d.ts +9 -0
  70. package/lib/typescript/module/src/calendar/config.d.ts.map +1 -0
  71. package/lib/typescript/module/src/calendar/functions.d.ts +7 -0
  72. package/lib/typescript/module/src/calendar/functions.d.ts.map +1 -0
  73. package/lib/typescript/module/src/calendar/settings.d.ts +4 -0
  74. package/lib/typescript/module/src/calendar/settings.d.ts.map +1 -0
  75. package/lib/typescript/module/src/index.d.ts +4 -0
  76. package/lib/typescript/module/src/index.d.ts.map +1 -0
  77. package/package.json +949 -0
  78. package/src/CalendarPicker.tsx +460 -0
  79. package/src/assets/DateSync.tsx +84 -0
  80. package/src/assets/Icons.tsx +143 -0
  81. package/src/assets/Triangle.tsx +31 -0
  82. package/src/assets/cIcon.tsx +74 -0
  83. package/src/calendar/config.ts +263 -0
  84. package/src/calendar/functions.ts +126 -0
  85. package/src/calendar/settings.ts +45 -0
  86. package/src/index.tsx +4 -0
package/package.json ADDED
@@ -0,0 +1,949 @@
1
+ {
2
+ "name": "react-native-nepali-picker",
3
+ "version": "0.1.0",
4
+ "description": "Nepali date (BS) picker of react native which also do date conversion form ADtoBS and vice versa. It is the most customizable Nepali date picker for react native where you can configure every part of calendar and make it suit your theme. Written in Typescript . ",
5
+ "source": "./src/index.tsx",
6
+ "main": "./lib/commonjs/index.js",
7
+ "module": "./lib/module/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": {
11
+ "types": "./lib/typescript/module/src/index.d.ts",
12
+ "default": "./lib/module/index.js"
13
+ },
14
+ "require": {
15
+ "types": "./lib/typescript/commonjs/src/index.d.ts",
16
+ "default": "./lib/commonjs/index.js"
17
+ }
18
+ }
19
+ },
20
+ "files": [
21
+ "src",
22
+ "lib",
23
+ "android",
24
+ "ios",
25
+ "cpp",
26
+ "*.podspec",
27
+ "!ios/build",
28
+ "!android/build",
29
+ "!android/gradle",
30
+ "!android/gradlew",
31
+ "!android/gradlew.bat",
32
+ "!android/local.properties",
33
+ "!**/__tests__",
34
+ "!**/__fixtures__",
35
+ "!**/__mocks__",
36
+ "!**/.*"
37
+ ],
38
+ "scripts": {
39
+ "example": "yarn workspace react-native-nepali-picker-example",
40
+ "test": "jest",
41
+ "typecheck": "tsc",
42
+ "lint": "eslint \"**/*.{js,ts,tsx}\"",
43
+ "clean": "del-cli lib",
44
+ "prepare": "bob build",
45
+ "release": "release-it"
46
+ },
47
+ "keywords": [
48
+ "react-native",
49
+ "ios",
50
+ "android"
51
+ ],
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/nepali-picker.git"
55
+ },
56
+ "author": "Kushal Chapagain <chapagainkushal74@gmail.com> (https://kushalchapagain.com.np)",
57
+ "license": "MIT",
58
+ "bugs": {
59
+ "url": "https://github.com/nepali-picker/issues"
60
+ },
61
+ "homepage": "https://github.com/nepali-picker#readme",
62
+ "publishConfig": {
63
+ "registry": "https://registry.npmjs.org/"
64
+ },
65
+ "devDependencies": {
66
+ "@commitlint/config-conventional": "^17.0.2",
67
+ "@evilmartians/lefthook": "^1.5.0",
68
+ "@react-native/eslint-config": "^0.73.1",
69
+ "@release-it/conventional-changelog": "^5.0.0",
70
+ "@types/jest": "^29.5.5",
71
+ "@types/react": "^18.2.44",
72
+ "commitlint": "^17.0.2",
73
+ "del-cli": "^5.1.0",
74
+ "eslint": "^8.51.0",
75
+ "eslint-config-prettier": "^9.0.0",
76
+ "eslint-plugin-prettier": "^5.0.1",
77
+ "jest": "^29.7.0",
78
+ "prettier": "^3.0.3",
79
+ "react": "18.2.0",
80
+ "react-native": "0.74.5",
81
+ "react-native-builder-bob": "^0.30.2",
82
+ "release-it": "^15.0.0",
83
+ "typescript": "^5.2.2"
84
+ },
85
+ "resolutions": {
86
+ "@types/react": "^18.2.44"
87
+ },
88
+ "peerDependencies": {
89
+ "react": "*",
90
+ "react-native": "*"
91
+ },
92
+ "workspaces": [
93
+ "example"
94
+ ],
95
+ "packageManager": "yarn@3.6.1",
96
+ "jest": {
97
+ "preset": "react-native",
98
+ "modulePathIgnorePatterns": [
99
+ "<rootDir>/example/node_modules",
100
+ "<rootDir>/lib/"
101
+ ]
102
+ },
103
+ "commitlint": {
104
+ "extends": [
105
+ "@commitlint/config-conventional"
106
+ ]
107
+ },
108
+ "release-it": {
109
+ "git": {
110
+ "commitMessage": "chore: release ${version}",
111
+ "tagName": "v${version}"
112
+ },
113
+ "npm": {
114
+ "publish": true
115
+ },
116
+ "github": {
117
+ "release": true
118
+ },
119
+ "plugins": {
120
+ "@release-it/conventional-changelog": {
121
+ "preset": "angular"
122
+ }
123
+ }
124
+ },
125
+ "eslintConfig": {
126
+ "root": true,
127
+ "extends": [
128
+ "@react-native",
129
+ "prettier"
130
+ ],
131
+ "rules": {
132
+ "react/react-in-jsx-scope": "off",
133
+ "prettier/prettier": [
134
+ "error",
135
+ {
136
+ "quoteProps": "consistent",
137
+ "singleQuote": true,
138
+ "tabWidth": 2,
139
+ "trailingComma": "es5",
140
+ "useTabs": false
141
+ }
142
+ ]
143
+ }
144
+ },
145
+ "eslintIgnore": [
146
+ "node_modules/",
147
+ "lib/"
148
+ ],
149
+ "prettier": {
150
+ "quoteProps": "consistent",
151
+ "singleQuote": true,
152
+ "tabWidth": 2,
153
+ "trailingComma": "es5",
154
+ "useTabs": false
155
+ },
156
+ "react-native-builder-bob": {
157
+ "source": "src",
158
+ "output": "lib",
159
+ "targets": [
160
+ [
161
+ "commonjs",
162
+ {
163
+ "esm": true
164
+ }
165
+ ],
166
+ [
167
+ "module",
168
+ {
169
+ "esm": true
170
+ }
171
+ ],
172
+ [
173
+ "typescript",
174
+ {
175
+ "project": "tsconfig.build.json",
176
+ "esm": true
177
+ }
178
+ ]
179
+ ]
180
+ },
181
+ "create-react-native-library": {
182
+ "type": "library",
183
+ "version": "0.41.2"
184
+ },
185
+ "directories": {
186
+ "example": "example",
187
+ "lib": "lib"
188
+ },
189
+ "dependencies": {
190
+ "acorn": "^8.12.1",
191
+ "acorn-jsx": "^5.3.2",
192
+ "JSONStream": "^1.3.5",
193
+ "acorn-walk": "^8.3.4",
194
+ "accepts": "^1.3.8",
195
+ "abort-controller": "^3.0.0",
196
+ "ajv": "^6.12.6",
197
+ "agent-base": "^7.1.1",
198
+ "add-stream": "^1.0.0",
199
+ "aggregate-error": "^4.0.1",
200
+ "anser": "^1.4.10",
201
+ "ansi-regex": "^5.0.1",
202
+ "ansi-escapes": "^4.3.2",
203
+ "ansi-styles": "^4.3.0",
204
+ "ansi-align": "^3.0.1",
205
+ "anymatch": "^3.1.3",
206
+ "appdirsjs": "^1.2.7",
207
+ "array-ify": "^1.0.0",
208
+ "array-includes": "^3.1.8",
209
+ "array-union": "^2.1.0",
210
+ "array.prototype.findlast": "^1.2.5",
211
+ "array.prototype.flatmap": "^1.3.2",
212
+ "array.prototype.flat": "^1.3.2",
213
+ "arg": "^4.1.3",
214
+ "array.prototype.tosorted": "^1.1.4",
215
+ "ansi-fragments": "^0.2.1",
216
+ "argparse": "^2.0.1",
217
+ "array.prototype.map": "^1.0.7",
218
+ "array-buffer-byte-length": "^1.0.1",
219
+ "arraybuffer.prototype.slice": "^1.0.3",
220
+ "arrify": "^1.0.1",
221
+ "asap": "^2.0.6",
222
+ "ast-types": "^0.13.4",
223
+ "available-typed-arrays": "^1.0.7",
224
+ "astral-regex": "^1.0.0",
225
+ "async-limiter": "^1.0.1",
226
+ "async-retry": "^1.3.3",
227
+ "babel-core": "^7.0.0-bridge.0",
228
+ "babel-jest": "^29.7.0",
229
+ "babel-plugin-jest-hoist": "^29.6.3",
230
+ "babel-plugin-istanbul": "^6.1.1",
231
+ "babel-plugin-module-resolver": "^5.0.2",
232
+ "babel-plugin-polyfill-corejs2": "^0.4.11",
233
+ "babel-plugin-polyfill-corejs3": "^0.10.6",
234
+ "babel-preset-current-node-syntax": "^1.1.0",
235
+ "balanced-match": "^1.0.2",
236
+ "babel-plugin-polyfill-regenerator": "^0.6.2",
237
+ "babel-plugin-transform-flow-enums": "^0.0.2",
238
+ "babel-preset-jest": "^29.6.3",
239
+ "base64-js": "^1.5.1",
240
+ "before-after-hook": "^2.2.3",
241
+ "big-integer": "^1.6.52",
242
+ "basic-ftp": "^5.0.5",
243
+ "bl": "^4.1.0",
244
+ "bplist-parser": "^0.2.0",
245
+ "braces": "^3.0.3",
246
+ "boxen": "^7.1.1",
247
+ "browserslist": "^4.23.3",
248
+ "brace-expansion": "^2.0.1",
249
+ "bser": "^2.1.1",
250
+ "buffer": "^5.7.1",
251
+ "buffer-from": "^1.1.2",
252
+ "call-bind": "^1.0.7",
253
+ "bytes": "^3.0.0",
254
+ "bundle-name": "^3.0.0",
255
+ "cacheable-lookup": "^7.0.0",
256
+ "callsites": "^3.1.0",
257
+ "caller-callsite": "^2.0.0",
258
+ "cacheable-request": "^10.2.14",
259
+ "caller-path": "^2.0.0",
260
+ "chalk": "^4.1.2",
261
+ "camelcase": "^5.3.1",
262
+ "camelcase-keys": "^6.2.2",
263
+ "caniuse-lite": "^1.0.30001662",
264
+ "char-regex": "^1.0.2",
265
+ "chardet": "^0.7.0",
266
+ "ci-info": "^3.9.0",
267
+ "chrome-launcher": "^0.15.2",
268
+ "cjs-module-lexer": "^1.4.1",
269
+ "clean-stack": "^4.2.0",
270
+ "cli-boxes": "^3.0.0",
271
+ "cli-cursor": "^3.1.0",
272
+ "cliui": "^8.0.1",
273
+ "cli-width": "^4.1.0",
274
+ "cli-spinners": "^2.9.2",
275
+ "clone": "^1.0.4",
276
+ "clone-deep": "^4.0.1",
277
+ "co": "^4.6.0",
278
+ "collect-v8-coverage": "^1.0.2",
279
+ "color-convert": "^2.0.1",
280
+ "color-name": "^1.1.4",
281
+ "colorette": "^1.4.0",
282
+ "compare-func": "^2.0.0",
283
+ "command-exists": "^1.2.9",
284
+ "commander": "^2.20.3",
285
+ "commondir": "^1.0.1",
286
+ "concat-map": "^0.0.1",
287
+ "compressible": "^2.0.18",
288
+ "compression": "^1.7.4",
289
+ "config-chain": "^1.1.13",
290
+ "conventional-changelog-angular": "^6.0.0",
291
+ "concat-stream": "^2.0.0",
292
+ "connect": "^3.7.0",
293
+ "configstore": "^6.0.0",
294
+ "conventional-changelog-conventionalcommits": "^6.1.0",
295
+ "conventional-changelog": "^3.1.25",
296
+ "conventional-changelog-atom": "^2.0.8",
297
+ "conventional-changelog-codemirror": "^2.0.8",
298
+ "conventional-changelog-core": "^4.2.4",
299
+ "conventional-changelog-ember": "^2.0.9",
300
+ "conventional-changelog-eslint": "^3.0.9",
301
+ "conventional-changelog-express": "^2.0.6",
302
+ "conventional-changelog-jquery": "^3.0.11",
303
+ "conventional-changelog-jshint": "^2.0.9",
304
+ "conventional-changelog-preset-loader": "^2.3.4",
305
+ "conventional-changelog-writer": "^5.0.1",
306
+ "conventional-commits-parser": "^3.2.4",
307
+ "conventional-recommended-bump": "^6.1.0",
308
+ "conventional-commits-filter": "^2.0.7",
309
+ "cosmiconfig": "^8.3.6",
310
+ "cosmiconfig-typescript-loader": "^4.4.0",
311
+ "convert-source-map": "^2.0.0",
312
+ "core-js-compat": "^3.38.1",
313
+ "core-util-is": "^1.0.3",
314
+ "cross-spawn": "^7.0.3",
315
+ "csstype": "^3.1.3",
316
+ "dargs": "^7.0.0",
317
+ "crypto-random-string": "^4.0.0",
318
+ "create-jest": "^29.7.0",
319
+ "data-uri-to-buffer": "^4.0.1",
320
+ "data-view-buffer": "^1.0.1",
321
+ "create-require": "^1.1.1",
322
+ "data-view-byte-offset": "^1.0.0",
323
+ "data-view-byte-length": "^1.0.1",
324
+ "debug": "^4.3.7",
325
+ "dayjs": "^1.11.13",
326
+ "decamelize-keys": "^1.1.1",
327
+ "dateformat": "^3.0.3",
328
+ "decompress-response": "^6.0.0",
329
+ "deep-is": "^0.1.4",
330
+ "dedent": "^0.7.0",
331
+ "decamelize": "^1.2.0",
332
+ "deep-extend": "^0.6.0",
333
+ "deepmerge": "^4.3.1",
334
+ "define-data-property": "^1.1.4",
335
+ "default-browser-id": "^3.0.0",
336
+ "default-browser": "^4.0.0",
337
+ "define-properties": "^1.2.1",
338
+ "defaults": "^1.0.4",
339
+ "defer-to-connect": "^2.0.1",
340
+ "define-lazy-prop": "^3.0.0",
341
+ "degenerator": "^4.0.4",
342
+ "del": "^6.1.1",
343
+ "denodeify": "^1.2.1",
344
+ "depd": "^2.0.0",
345
+ "deprecation": "^2.3.1",
346
+ "destroy": "^1.2.0",
347
+ "dir-glob": "^3.0.1",
348
+ "doctrine": "^3.0.0",
349
+ "dot-prop": "^5.3.0",
350
+ "diff-sequences": "^29.6.3",
351
+ "detect-newline": "^3.1.0",
352
+ "diff": "^4.0.2",
353
+ "eastasianwidth": "^0.2.0",
354
+ "emoji-regex": "^8.0.0",
355
+ "electron-to-chromium": "^1.5.27",
356
+ "ee-first": "^1.1.1",
357
+ "end-of-stream": "^1.4.4",
358
+ "encodeurl": "^1.0.2",
359
+ "emittery": "^0.13.1",
360
+ "error-ex": "^1.3.2",
361
+ "envinfo": "^7.14.0",
362
+ "es-abstract": "^1.23.3",
363
+ "es-errors": "^1.3.0",
364
+ "error-stack-parser": "^2.1.4",
365
+ "env-paths": "^2.2.1",
366
+ "es-define-property": "^1.0.0",
367
+ "es-iterator-helpers": "^1.0.19",
368
+ "es-object-atoms": "^1.0.0",
369
+ "es-set-tostringtag": "^2.0.3",
370
+ "errorhandler": "^1.5.1",
371
+ "es-shim-unscopables": "^1.0.2",
372
+ "es-to-primitive": "^1.2.1",
373
+ "escalade": "^3.2.0",
374
+ "es-get-iterator": "^1.1.3",
375
+ "escape-string-regexp": "^4.0.0",
376
+ "es-array-method-boxes-properly": "^1.0.0",
377
+ "escape-html": "^1.0.3",
378
+ "eslint-plugin-ft-flow": "^2.0.3",
379
+ "eslint-plugin-eslint-comments": "^3.2.0",
380
+ "eslint-plugin-jest": "^26.9.0",
381
+ "eslint-plugin-react-hooks": "^4.6.2",
382
+ "eslint-plugin-react": "^7.36.1",
383
+ "eslint-plugin-react-native": "^4.1.0",
384
+ "eslint-plugin-react-native-globals": "^0.1.2",
385
+ "eslint-scope": "^5.1.1",
386
+ "espree": "^9.6.1",
387
+ "eslint-visitor-keys": "^3.4.3",
388
+ "esquery": "^1.6.0",
389
+ "esrecurse": "^4.3.0",
390
+ "estraverse": "^5.3.0",
391
+ "esutils": "^2.0.3",
392
+ "escape-goat": "^4.0.0",
393
+ "escodegen": "^1.14.3",
394
+ "execa": "^5.1.1",
395
+ "expect": "^29.7.0",
396
+ "etag": "^1.8.1",
397
+ "event-target-shim": "^5.0.1",
398
+ "exit": "^0.1.2",
399
+ "fast-deep-equal": "^3.1.3",
400
+ "esprima": "^4.0.1",
401
+ "fast-diff": "^1.3.0",
402
+ "fast-glob": "^3.3.2",
403
+ "fast-json-stable-stringify": "^2.1.0",
404
+ "fast-levenshtein": "^2.0.6",
405
+ "fast-uri": "^3.0.1",
406
+ "fastq": "^1.17.1",
407
+ "exponential-backoff": "^3.1.1",
408
+ "external-editor": "^3.1.0",
409
+ "figures": "^5.0.0",
410
+ "fast-xml-parser": "^4.5.0",
411
+ "file-entry-cache": "^6.0.1",
412
+ "fill-range": "^7.1.1",
413
+ "fetch-blob": "^3.2.0",
414
+ "fb-watchman": "^2.0.2",
415
+ "finalhandler": "^1.1.2",
416
+ "find-up": "^5.0.0",
417
+ "find-cache-dir": "^2.1.0",
418
+ "flat-cache": "^3.2.0",
419
+ "flow-enums-runtime": "^0.0.6",
420
+ "for-each": "^0.3.3",
421
+ "find-babel-config": "^2.1.2",
422
+ "fs-extra": "^11.2.0",
423
+ "flatted": "^3.3.1",
424
+ "function-bind": "^1.1.2",
425
+ "function.prototype.name": "^1.1.6",
426
+ "gensync": "^1.0.0-beta.2",
427
+ "functions-have-names": "^1.2.3",
428
+ "get-intrinsic": "^1.2.4",
429
+ "get-caller-file": "^2.0.5",
430
+ "flow-parser": "^0.246.0",
431
+ "form-data-encoder": "^2.1.4",
432
+ "get-stream": "^6.0.1",
433
+ "get-package-type": "^0.1.0",
434
+ "fs.realpath": "^1.0.0",
435
+ "get-pkg-repo": "^4.2.1",
436
+ "git-raw-commits": "^2.0.11",
437
+ "get-uri": "^6.0.3",
438
+ "git-semver-tags": "^4.1.1",
439
+ "get-symbol-description": "^1.0.2",
440
+ "git-remote-origin-url": "^2.0.0",
441
+ "git-up": "^7.0.0",
442
+ "glob-parent": "^5.1.2",
443
+ "globals": "^13.24.0",
444
+ "global-dirs": "^0.1.1",
445
+ "globalthis": "^1.0.4",
446
+ "gopd": "^1.0.1",
447
+ "globby": "^11.1.0",
448
+ "git-url-parse": "^13.1.0",
449
+ "graceful-fs": "^4.2.11",
450
+ "graphemer": "^1.4.0",
451
+ "glob": "^7.2.3",
452
+ "gitconfiglocal": "^1.0.0",
453
+ "has-flag": "^4.0.0",
454
+ "has-bigints": "^1.0.2",
455
+ "has-property-descriptors": "^1.0.2",
456
+ "got": "^12.6.1",
457
+ "has-proto": "^1.0.3",
458
+ "has-symbols": "^1.0.3",
459
+ "has-tostringtag": "^1.0.2",
460
+ "hasown": "^2.0.2",
461
+ "handlebars": "^4.7.8",
462
+ "hard-rejection": "^2.1.0",
463
+ "has-yarn": "^3.0.0",
464
+ "hermes-estree": "^0.23.1",
465
+ "hermes-parser": "^0.23.1",
466
+ "hermes-profile-transformer": "^0.0.6",
467
+ "html-escaper": "^2.0.2",
468
+ "hosted-git-info": "^4.1.0",
469
+ "http-cache-semantics": "^4.1.1",
470
+ "http-errors": "^2.0.0",
471
+ "http-proxy-agent": "^7.0.2",
472
+ "http2-wrapper": "^2.2.1",
473
+ "human-signals": "^4.3.1",
474
+ "ignore": "^5.3.2",
475
+ "https-proxy-agent": "^7.0.5",
476
+ "import-fresh": "^3.3.0",
477
+ "iconv-lite": "^0.4.24",
478
+ "ieee754": "^1.2.1",
479
+ "imurmurhash": "^0.1.4",
480
+ "image-size": "^1.1.1",
481
+ "import-lazy": "^4.0.0",
482
+ "inherits": "^2.0.4",
483
+ "ini": "^1.3.8",
484
+ "inflight": "^1.0.6",
485
+ "internal-slot": "^1.0.7",
486
+ "import-local": "^3.2.0",
487
+ "inquirer": "^9.2.6",
488
+ "indent-string": "^4.0.0",
489
+ "invariant": "^2.2.4",
490
+ "interpret": "^1.4.0",
491
+ "ip": "^1.1.9",
492
+ "ip-address": "^9.0.5",
493
+ "is-arrayish": "^0.2.1",
494
+ "is-async-function": "^2.0.0",
495
+ "is-bigint": "^1.0.4",
496
+ "is-boolean-object": "^1.1.2",
497
+ "is-callable": "^1.2.7",
498
+ "is-absolute": "^1.0.0",
499
+ "is-core-module": "^2.15.1",
500
+ "is-arguments": "^1.1.1",
501
+ "is-date-object": "^1.0.5",
502
+ "is-array-buffer": "^3.0.4",
503
+ "is-ci": "^3.0.1",
504
+ "is-extglob": "^2.1.1",
505
+ "is-fullwidth-code-point": "^3.0.0",
506
+ "is-directory": "^0.3.1",
507
+ "is-finalizationregistry": "^1.0.2",
508
+ "is-generator-function": "^1.0.10",
509
+ "is-docker": "^2.2.1",
510
+ "is-data-view": "^1.0.1",
511
+ "is-glob": "^4.0.3",
512
+ "is-git-dirty": "^2.0.2",
513
+ "is-inside-container": "^1.0.0",
514
+ "is-generator-fn": "^2.1.0",
515
+ "is-git-repository": "^2.0.0",
516
+ "is-map": "^2.0.3",
517
+ "is-interactive": "^1.0.0",
518
+ "is-number": "^7.0.0",
519
+ "is-installed-globally": "^0.4.0",
520
+ "is-number-object": "^1.0.7",
521
+ "is-obj": "^2.0.0",
522
+ "is-path-inside": "^3.0.3",
523
+ "is-negative-zero": "^2.0.3",
524
+ "is-plain-obj": "^1.1.0",
525
+ "is-regex": "^1.1.4",
526
+ "is-npm": "^6.0.0",
527
+ "is-set": "^2.0.3",
528
+ "is-path-cwd": "^3.0.0",
529
+ "is-plain-object": "^5.0.0",
530
+ "is-stream": "^2.0.1",
531
+ "is-string": "^1.0.7",
532
+ "is-symbol": "^1.0.4",
533
+ "is-shared-array-buffer": "^1.0.3",
534
+ "is-relative": "^1.0.0",
535
+ "is-ssh": "^1.4.0",
536
+ "is-text-path": "^1.0.1",
537
+ "is-typed-array": "^1.1.13",
538
+ "is-weakmap": "^2.0.2",
539
+ "is-weakref": "^1.0.2",
540
+ "is-weakset": "^2.0.3",
541
+ "is-unc-path": "^1.0.0",
542
+ "is-typedarray": "^1.0.0",
543
+ "isarray": "^2.0.5",
544
+ "is-unicode-supported": "^1.3.0",
545
+ "isexe": "^2.0.0",
546
+ "is-wsl": "^2.2.0",
547
+ "is-windows": "^1.0.2",
548
+ "is-yarn-global": "^0.4.1",
549
+ "isobject": "^3.0.1",
550
+ "issue-parser": "^6.0.0",
551
+ "istanbul-lib-instrument": "^5.2.1",
552
+ "istanbul-lib-coverage": "^3.2.2",
553
+ "istanbul-lib-source-maps": "^4.0.1",
554
+ "istanbul-lib-report": "^3.0.1",
555
+ "iterator.prototype": "^1.1.2",
556
+ "iterate-value": "^1.0.2",
557
+ "istanbul-reports": "^3.1.7",
558
+ "iterate-iterator": "^1.0.2",
559
+ "jest-diff": "^29.7.0",
560
+ "jest-changed-files": "^29.7.0",
561
+ "jest-cli": "^29.7.0",
562
+ "jest-config": "^29.7.0",
563
+ "jest-circus": "^29.7.0",
564
+ "jest-docblock": "^29.7.0",
565
+ "jest-each": "^29.7.0",
566
+ "jest-environment-node": "^29.7.0",
567
+ "jest-matcher-utils": "^29.7.0",
568
+ "jest-get-type": "^29.6.3",
569
+ "jest-haste-map": "^29.7.0",
570
+ "jest-mock": "^29.7.0",
571
+ "jest-leak-detector": "^29.7.0",
572
+ "jest-message-util": "^29.7.0",
573
+ "jest-pnp-resolver": "^1.2.3",
574
+ "jest-resolve": "^29.7.0",
575
+ "jest-regex-util": "^29.6.3",
576
+ "jest-runner": "^29.7.0",
577
+ "jest-resolve-dependencies": "^29.7.0",
578
+ "jest-snapshot": "^29.7.0",
579
+ "jest-runtime": "^29.7.0",
580
+ "jest-util": "^29.7.0",
581
+ "js-tokens": "^4.0.0",
582
+ "jest-validate": "^29.7.0",
583
+ "jest-worker": "^29.7.0",
584
+ "jest-watcher": "^29.7.0",
585
+ "js-yaml": "^4.1.0",
586
+ "joi": "^17.13.3",
587
+ "jsbn": "^1.1.0",
588
+ "jscodeshift": "^0.14.0",
589
+ "jsc-android": "^250231.0.0",
590
+ "jsesc": "^2.5.2",
591
+ "json-schema-traverse": "^1.0.0",
592
+ "json-parse-even-better-errors": "^2.3.1",
593
+ "json-stable-stringify-without-jsonify": "^1.0.1",
594
+ "jsc-safe-url": "^0.2.4",
595
+ "json-buffer": "^3.0.1",
596
+ "jsonfile": "^6.1.0",
597
+ "jsx-ast-utils": "^3.3.5",
598
+ "json-parse-better-errors": "^1.0.2",
599
+ "json-stringify-safe": "^5.0.1",
600
+ "keyv": "^4.5.4",
601
+ "json5": "^2.2.3",
602
+ "jsonparse": "^1.3.1",
603
+ "kind-of": "^6.0.3",
604
+ "latest-version": "^7.0.0",
605
+ "leven": "^3.1.0",
606
+ "levn": "^0.4.1",
607
+ "lighthouse-logger": "^1.4.2",
608
+ "lines-and-columns": "^1.2.4",
609
+ "lodash": "^4.17.21",
610
+ "kleur": "^4.1.5",
611
+ "lodash.camelcase": "^4.3.0",
612
+ "load-json-file": "^4.0.0",
613
+ "locate-path": "^5.0.0",
614
+ "lodash.isfunction": "^3.0.9",
615
+ "lodash.capitalize": "^4.2.1",
616
+ "lodash.isplainobject": "^4.0.6",
617
+ "lodash.kebabcase": "^4.1.1",
618
+ "lodash.debounce": "^4.0.8",
619
+ "lodash.merge": "^4.6.2",
620
+ "lodash.mergewith": "^4.6.2",
621
+ "lodash.snakecase": "^4.1.1",
622
+ "lodash.uniq": "^4.5.0",
623
+ "lodash.startcase": "^4.4.0",
624
+ "lodash.escaperegexp": "^4.1.2",
625
+ "lodash.ismatch": "^4.4.0",
626
+ "lodash.upperfirst": "^4.3.1",
627
+ "lodash.isstring": "^4.0.1",
628
+ "lodash.uniqby": "^4.7.0",
629
+ "lodash.throttle": "^4.1.1",
630
+ "log-symbols": "^4.1.0",
631
+ "lru-cache": "^6.0.0",
632
+ "logkitty": "^0.7.1",
633
+ "make-error": "^1.3.6",
634
+ "loose-envify": "^1.4.0",
635
+ "macos-release": "^3.3.0",
636
+ "lowercase-keys": "^3.0.0",
637
+ "marky": "^1.2.5",
638
+ "make-dir": "^2.1.0",
639
+ "map-obj": "^4.3.0",
640
+ "merge-stream": "^2.0.0",
641
+ "merge2": "^1.4.1",
642
+ "memoize-one": "^5.2.1",
643
+ "makeerror": "^1.0.12",
644
+ "meow": "^8.1.2",
645
+ "metro": "^0.80.12",
646
+ "metro-babel-transformer": "^0.80.12",
647
+ "metro-config": "^0.80.12",
648
+ "metro-cache": "^0.80.12",
649
+ "metro-cache-key": "^0.80.12",
650
+ "metro-core": "^0.80.12",
651
+ "metro-file-map": "^0.80.12",
652
+ "metro-minify-terser": "^0.80.12",
653
+ "metro-resolver": "^0.80.12",
654
+ "metro-runtime": "^0.80.12",
655
+ "metro-source-map": "^0.80.12",
656
+ "micromatch": "^4.0.8",
657
+ "metro-symbolicate": "^0.80.12",
658
+ "metro-transform-plugins": "^0.80.12",
659
+ "metro-transform-worker": "^0.80.12",
660
+ "mimic-fn": "^2.1.0",
661
+ "mime": "^1.6.0",
662
+ "mime-types": "^2.1.35",
663
+ "minimatch": "^3.1.2",
664
+ "minimist": "^1.2.8",
665
+ "mimic-response": "^4.0.0",
666
+ "mime-db": "^1.52.0",
667
+ "min-indent": "^1.0.1",
668
+ "minimist-options": "^4.1.0",
669
+ "ms": "^2.1.3",
670
+ "minipass": "^7.1.2",
671
+ "mute-stream": "^1.0.0",
672
+ "modify-values": "^1.0.1",
673
+ "natural-compare-lite": "^1.4.0",
674
+ "mkdirp": "^0.5.6",
675
+ "natural-compare": "^1.4.0",
676
+ "negotiator": "^0.6.3",
677
+ "neo-async": "^2.6.2",
678
+ "new-github-release-url": "^2.0.0",
679
+ "netmask": "^2.0.2",
680
+ "nocache": "^3.0.4",
681
+ "fresh": "^0.5.2",
682
+ "node-dir": "^0.1.17",
683
+ "node-fetch": "^2.7.0",
684
+ "node-forge": "^1.3.1",
685
+ "node-domexception": "^1.0.0",
686
+ "node-releases": "^2.0.18",
687
+ "node-int64": "^0.4.0",
688
+ "node-stream-zip": "^1.15.0",
689
+ "normalize-path": "^3.0.0",
690
+ "normalize-package-data": "^3.0.3",
691
+ "npm-run-path": "^4.0.1",
692
+ "object-assign": "^4.1.1",
693
+ "object-inspect": "^1.13.2",
694
+ "object.entries": "^1.1.8",
695
+ "object-keys": "^1.1.1",
696
+ "normalize-url": "^8.0.1",
697
+ "object.values": "^1.2.0",
698
+ "object.assign": "^4.1.5",
699
+ "object.fromentries": "^2.0.8",
700
+ "ob1": "^0.80.12",
701
+ "onetime": "^5.1.2",
702
+ "nullthrows": "^1.1.1",
703
+ "on-finished": "^2.4.1",
704
+ "optionator": "^0.9.4",
705
+ "on-headers": "^1.0.2",
706
+ "open": "^7.4.2",
707
+ "once": "^1.4.0",
708
+ "ora": "^5.4.1",
709
+ "p-limit": "^3.1.0",
710
+ "os-name": "^5.1.0",
711
+ "p-locate": "^4.1.0",
712
+ "p-cancelable": "^3.0.0",
713
+ "os-tmpdir": "^1.0.2",
714
+ "p-map": "^4.0.0",
715
+ "pac-proxy-agent": "^6.0.4",
716
+ "parent-module": "^1.0.1",
717
+ "parse-json": "^5.2.0",
718
+ "pac-resolver": "^6.0.2",
719
+ "p-try": "^2.2.0",
720
+ "path-exists": "^4.0.0",
721
+ "package-json": "^8.1.1",
722
+ "parse-path": "^7.0.0",
723
+ "path-key": "^3.1.1",
724
+ "parse-url": "^8.1.0",
725
+ "path-is-absolute": "^1.0.1",
726
+ "path-type": "^4.0.0",
727
+ "picocolors": "^1.1.0",
728
+ "parseurl": "^1.3.3",
729
+ "picomatch": "^2.3.1",
730
+ "path-parse": "^1.0.7",
731
+ "pify": "^3.0.0",
732
+ "path-scurry": "^1.11.1",
733
+ "prelude-ls": "^1.2.1",
734
+ "possible-typed-array-names": "^1.0.0",
735
+ "prettier-linter-helpers": "^1.0.0",
736
+ "pretty-format": "^29.7.0",
737
+ "pirates": "^4.0.6",
738
+ "process-nextick-args": "^2.0.1",
739
+ "pkg-dir": "^4.2.0",
740
+ "pkg-up": "^3.1.0",
741
+ "prop-types": "^15.8.1",
742
+ "promise": "^8.3.0",
743
+ "promise.allsettled": "^1.0.6",
744
+ "prompts": "^2.4.2",
745
+ "proto-list": "^1.2.4",
746
+ "protocols": "^2.0.1",
747
+ "proxy-from-env": "^1.1.0",
748
+ "punycode": "^2.3.1",
749
+ "pump": "^3.0.2",
750
+ "proxy-agent": "^6.2.1",
751
+ "pupa": "^3.1.0",
752
+ "pure-rand": "^6.1.0",
753
+ "queue-microtask": "^1.2.3",
754
+ "querystring": "^0.2.1",
755
+ "queue": "^6.0.2",
756
+ "q": "^1.5.1",
757
+ "range-parser": "^1.2.1",
758
+ "rc": "^1.2.8",
759
+ "quick-lru": "^5.1.1",
760
+ "react-devtools-core": "^5.3.1",
761
+ "react-is": "^18.3.1",
762
+ "react-refresh": "^0.14.2",
763
+ "readable-stream": "^3.6.2",
764
+ "readline": "^1.3.0",
765
+ "react-shallow-renderer": "^16.15.0",
766
+ "read-pkg": "^3.0.0",
767
+ "rechoir": "^0.6.2",
768
+ "reflect.getprototypeof": "^1.0.6",
769
+ "recast": "^0.21.5",
770
+ "read-pkg-up": "^7.0.1",
771
+ "redent": "^3.0.0",
772
+ "regenerate": "^1.4.2",
773
+ "regenerate-unicode-properties": "^10.2.0",
774
+ "regexp.prototype.flags": "^1.5.2",
775
+ "regenerator-runtime": "^0.14.1",
776
+ "regenerator-transform": "^0.15.2",
777
+ "regexpu-core": "^5.3.2",
778
+ "require-directory": "^2.1.1",
779
+ "registry-auth-token": "^5.0.2",
780
+ "registry-url": "^6.0.1",
781
+ "regjsparser": "^0.9.1",
782
+ "reselect": "^4.1.8",
783
+ "require-main-filename": "^2.0.0",
784
+ "require-from-string": "^2.0.2",
785
+ "resolve-from": "^5.0.0",
786
+ "resolve-global": "^1.0.0",
787
+ "resolve": "^1.22.8",
788
+ "resolve-alpn": "^1.2.1",
789
+ "resolve.exports": "^2.0.2",
790
+ "resolve-cwd": "^3.0.0",
791
+ "reusify": "^1.0.4",
792
+ "responselike": "^3.0.0",
793
+ "retry": "^0.13.1",
794
+ "restore-cursor": "^3.1.0",
795
+ "run-applescript": "^5.0.0",
796
+ "run-parallel": "^1.2.0",
797
+ "safe-array-concat": "^1.1.2",
798
+ "run-async": "^3.0.0",
799
+ "safe-regex-test": "^1.0.3",
800
+ "rimraf": "^3.0.2",
801
+ "safe-buffer": "^5.1.2",
802
+ "rxjs": "^7.8.1",
803
+ "semver": "^7.6.3",
804
+ "scheduler": "^0.24.0-canary-efb381bbf-20230505",
805
+ "safer-buffer": "^2.1.2",
806
+ "selfsigned": "^2.4.1",
807
+ "semver-diff": "^4.0.0",
808
+ "send": "^0.19.0",
809
+ "set-function-length": "^1.2.2",
810
+ "set-function-name": "^2.0.2",
811
+ "serialize-error": "^2.1.0",
812
+ "serve-static": "^1.16.2",
813
+ "shebang-command": "^2.0.0",
814
+ "shebang-regex": "^3.0.0",
815
+ "set-blocking": "^2.0.0",
816
+ "shallow-clone": "^3.0.1",
817
+ "side-channel": "^1.0.6",
818
+ "signal-exit": "^3.0.7",
819
+ "shell-quote": "^1.8.1",
820
+ "setprototypeof": "^1.2.0",
821
+ "slash": "^3.0.0",
822
+ "shelljs": "^0.8.5",
823
+ "slice-ansi": "^2.1.0",
824
+ "sisteransi": "^1.0.5",
825
+ "socks": "^2.8.3",
826
+ "smart-buffer": "^4.2.0",
827
+ "socks-proxy-agent": "^8.0.4",
828
+ "source-map-support": "^0.5.21",
829
+ "spdx-correct": "^3.2.0",
830
+ "source-map": "^0.6.1",
831
+ "spdx-exceptions": "^2.5.0",
832
+ "split2": "^3.2.2",
833
+ "spdx-expression-parse": "^3.0.1",
834
+ "split": "^1.0.1",
835
+ "spdx-license-ids": "^3.0.20",
836
+ "stack-utils": "^2.0.6",
837
+ "sprintf-js": "^1.0.3",
838
+ "stackframe": "^1.3.4",
839
+ "stacktrace-parser": "^0.1.10",
840
+ "stdin-discarder": "^0.1.0",
841
+ "string-natural-compare": "^3.0.1",
842
+ "string-width": "^4.2.3",
843
+ "string.prototype.matchall": "^4.0.11",
844
+ "string.prototype.repeat": "^1.0.0",
845
+ "string.prototype.trim": "^1.2.9",
846
+ "statuses": "^2.0.1",
847
+ "string-length": "^4.0.2",
848
+ "string_decoder": "^1.3.0",
849
+ "strip-ansi": "^6.0.1",
850
+ "stop-iteration-iterator": "^1.0.0",
851
+ "strip-final-newline": "^2.0.0",
852
+ "string.prototype.trimend": "^1.0.8",
853
+ "strip-bom": "^3.0.0",
854
+ "strip-indent": "^3.0.0",
855
+ "strip-json-comments": "^3.1.1",
856
+ "supports-color": "^7.2.0",
857
+ "synckit": "^0.9.1",
858
+ "string.prototype.trimstart": "^1.0.8",
859
+ "strnum": "^1.0.5",
860
+ "sudo-prompt": "^9.2.1",
861
+ "temp": "^0.8.4",
862
+ "temp-dir": "^2.0.0",
863
+ "text-table": "^0.2.0",
864
+ "terser": "^5.33.0",
865
+ "test-exclude": "^6.0.0",
866
+ "supports-preserve-symlinks-flag": "^1.0.0",
867
+ "through2": "^4.0.2",
868
+ "text-extensions": "^1.9.0",
869
+ "through": "^2.3.8",
870
+ "throat": "^5.0.0",
871
+ "to-regex-range": "^5.0.1",
872
+ "to-fast-properties": "^2.0.0",
873
+ "tmp": "^0.0.33",
874
+ "titleize": "^3.0.0",
875
+ "tmpl": "^1.0.5",
876
+ "ts-node": "^10.9.2",
877
+ "tr46": "^0.0.3",
878
+ "tsutils": "^3.21.0",
879
+ "toidentifier": "^1.0.1",
880
+ "type-check": "^0.4.0",
881
+ "trim-newlines": "^3.0.1",
882
+ "type-fest": "^1.4.0",
883
+ "tslib": "^2.7.0",
884
+ "type-detect": "^4.0.8",
885
+ "typed-array-length": "^1.0.6",
886
+ "typed-array-buffer": "^1.0.2",
887
+ "typed-array-byte-length": "^1.0.1",
888
+ "typed-array-byte-offset": "^1.0.2",
889
+ "typedarray-to-buffer": "^3.1.5",
890
+ "typedarray": "^0.0.6",
891
+ "uglify-js": "^3.19.3",
892
+ "unicode-canonical-property-names-ecmascript": "^2.0.1",
893
+ "unbox-primitive": "^1.0.2",
894
+ "undici-types": "^6.19.8",
895
+ "unicode-match-property-ecmascript": "^2.0.0",
896
+ "unicode-match-property-value-ecmascript": "^2.2.0",
897
+ "universalify": "^2.0.1",
898
+ "unicode-property-aliases-ecmascript": "^2.1.0",
899
+ "unique-string": "^3.0.0",
900
+ "universal-user-agent": "^6.0.1",
901
+ "unpipe": "^1.0.0",
902
+ "uri-js": "^4.4.1",
903
+ "unc-path-regex": "^0.1.2",
904
+ "untildify": "^4.0.0",
905
+ "util-deprecate": "^1.0.2",
906
+ "update-notifier": "^6.0.2",
907
+ "utils-merge": "^1.0.1",
908
+ "update-browserslist-db": "^1.1.0",
909
+ "url-join": "^5.0.0",
910
+ "v8-compile-cache-lib": "^3.0.1",
911
+ "v8-to-istanbul": "^9.3.0",
912
+ "vary": "^1.1.2",
913
+ "validate-npm-package-license": "^3.0.4",
914
+ "vm2": "^3.9.19",
915
+ "walker": "^1.0.8",
916
+ "vlq": "^1.0.1",
917
+ "web-streams-polyfill": "^3.3.3",
918
+ "webidl-conversions": "^3.0.1",
919
+ "which-boxed-primitive": "^1.0.2",
920
+ "which": "^2.0.2",
921
+ "which-builtin-type": "^1.1.4",
922
+ "wcwidth": "^1.0.1",
923
+ "which-typed-array": "^1.1.15",
924
+ "which-collection": "^1.0.2",
925
+ "whatwg-fetch": "^3.6.20",
926
+ "whatwg-url": "^5.0.0",
927
+ "which-module": "^2.0.1",
928
+ "word-wrap": "^1.2.5",
929
+ "widest-line": "^4.0.1",
930
+ "wrap-ansi": "^7.0.0",
931
+ "wildcard-match": "^5.1.2",
932
+ "windows-release": "^5.1.1",
933
+ "write-file-atomic": "^2.4.3",
934
+ "wordwrap": "^1.0.0",
935
+ "wrappy": "^1.0.2",
936
+ "y18n": "^5.0.8",
937
+ "yallist": "^4.0.0",
938
+ "ws": "^6.2.3",
939
+ "yargs": "^17.7.2",
940
+ "yn": "^3.1.1",
941
+ "xdg-basedir": "^5.1.0",
942
+ "yocto-queue": "^0.1.0",
943
+ "yargs-parser": "^20.2.9",
944
+ "yaml": "^2.5.1",
945
+ "xtend": "^4.0.2",
946
+ "formdata-polyfill": "^4.0.10",
947
+ "node-abort-controller": "^3.1.1"
948
+ }
949
+ }