@convep_mobilogy/react-native-qms-plugin 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.
- package/LICENSE +20 -0
- package/QmsPlugin.podspec +32 -0
- package/README.md +3 -0
- package/android/build.gradle +85 -0
- package/android/gradle.properties +5 -0
- package/android/libs/qmsplugin-release.aar +0 -0
- package/android/src/main/AndroidManifest.xml +9 -0
- package/android/src/main/java/com/qmsplugin/QmsPluginModule.kt +38 -0
- package/android/src/main/java/com/qmsplugin/QmsPluginPackage.kt +16 -0
- package/ios/QmsPlugin/QmsDashboardViewManager.mm +50 -0
- package/ios/QmsPlugin/QmsPluginBridge.mm +83 -0
- package/ios/QmsPluginFramework.xcframework/Info.plist +44 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/Assets.car +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/Headers/QmsPlugin.h +13 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/Headers/QmsPluginFramework.h +17 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/Info.plist +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/Modules/module.modulemap +6 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/QmsPluginFramework +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/_CodeSignature/CodeResources +146 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/Assets.car +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/Headers/QmsPlugin.h +13 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/Headers/QmsPluginFramework.h +17 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/Info.plist +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/Modules/module.modulemap +6 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/QmsPluginFramework +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/_CodeSignature/CodeResources +146 -0
- package/lib/module/NativeQmsPlugin.js +6 -0
- package/lib/module/NativeQmsPlugin.js.map +1 -0
- package/lib/module/QmsDashboardView.js +13 -0
- package/lib/module/QmsDashboardView.js.map +1 -0
- package/lib/module/QmsPluginDashboard.js +13 -0
- package/lib/module/QmsPluginDashboard.js.map +1 -0
- package/lib/module/index.js +34 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/NativeQmsPlugin.d.ts +7 -0
- package/lib/typescript/src/NativeQmsPlugin.d.ts.map +1 -0
- package/lib/typescript/src/QmsDashboardView.d.ts +8 -0
- package/lib/typescript/src/QmsDashboardView.d.ts.map +1 -0
- package/lib/typescript/src/QmsPluginDashboard.d.ts +14 -0
- package/lib/typescript/src/QmsPluginDashboard.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +3 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/package.json +875 -0
- package/src/NativeQmsPlugin.tsx +8 -0
- package/src/QmsDashboardView.tsx +16 -0
- package/src/QmsPluginDashboard.tsx +24 -0
- package/src/index.tsx +33 -0
package/package.json
ADDED
|
@@ -0,0 +1,875 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@convep_mobilogy/react-native-qms-plugin",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "To handle defect managment",
|
|
5
|
+
"main": "./lib/module/index.js",
|
|
6
|
+
"types": "./lib/typescript/src/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"source": "./src/index.tsx",
|
|
10
|
+
"types": "./lib/typescript/src/index.d.ts",
|
|
11
|
+
"default": "./lib/module/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./package.json": "./package.json"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"src",
|
|
17
|
+
"lib",
|
|
18
|
+
"android",
|
|
19
|
+
"ios",
|
|
20
|
+
"cpp",
|
|
21
|
+
"*.podspec",
|
|
22
|
+
"react-native.config.js",
|
|
23
|
+
"!ios/build",
|
|
24
|
+
"!android/build",
|
|
25
|
+
"!android/gradle",
|
|
26
|
+
"!android/gradlew",
|
|
27
|
+
"!android/gradlew.bat",
|
|
28
|
+
"!android/local.properties",
|
|
29
|
+
"!**/__tests__",
|
|
30
|
+
"!**/__fixtures__",
|
|
31
|
+
"!**/__mocks__",
|
|
32
|
+
"!**/.*"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"example": "yarn workspace react-native-qms-plugin-example",
|
|
36
|
+
"test": "jest",
|
|
37
|
+
"typecheck": "tsc",
|
|
38
|
+
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
39
|
+
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
|
|
40
|
+
"prepare": "bob build",
|
|
41
|
+
"release": "release-it --only-version"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"react-native",
|
|
45
|
+
"ios",
|
|
46
|
+
"android"
|
|
47
|
+
],
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://github.com/FrancisPang/QMS_RN.git.git"
|
|
51
|
+
},
|
|
52
|
+
"author": "Convep <info@convep.com> (https://github.com/FrancisPang/QMS_RN.git)",
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/FrancisPang/QMS_RN.git/issues"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/FrancisPang/QMS_RN.git#readme",
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"registry": "https://registry.npmjs.org/"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
63
|
+
"@eslint/compat": "^1.3.2",
|
|
64
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
65
|
+
"@eslint/js": "^9.35.0",
|
|
66
|
+
"@evilmartians/lefthook": "^1.12.3",
|
|
67
|
+
"@react-native-community/cli": "20.0.1",
|
|
68
|
+
"@react-native/babel-preset": "0.81.1",
|
|
69
|
+
"@react-native/eslint-config": "^0.81.1",
|
|
70
|
+
"@release-it/conventional-changelog": "^10.0.1",
|
|
71
|
+
"@types/jest": "^29.5.14",
|
|
72
|
+
"@types/react": "^19.1.0",
|
|
73
|
+
"commitlint": "^19.8.1",
|
|
74
|
+
"del-cli": "^6.0.0",
|
|
75
|
+
"eslint": "^9.35.0",
|
|
76
|
+
"eslint-config-prettier": "^10.1.8",
|
|
77
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
78
|
+
"jest": "^29.7.0",
|
|
79
|
+
"prettier": "^3.6.2",
|
|
80
|
+
"react": "19.1.0",
|
|
81
|
+
"react-native": "0.81.1",
|
|
82
|
+
"react-native-builder-bob": "^0.40.13",
|
|
83
|
+
"release-it": "^19.0.4",
|
|
84
|
+
"turbo": "^2.5.6",
|
|
85
|
+
"typescript": "5.5.4"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"react": "*",
|
|
89
|
+
"react-native": "*"
|
|
90
|
+
},
|
|
91
|
+
"workspaces": [
|
|
92
|
+
"example"
|
|
93
|
+
],
|
|
94
|
+
"packageManager": "yarn@3.6.1",
|
|
95
|
+
"jest": {
|
|
96
|
+
"preset": "react-native",
|
|
97
|
+
"modulePathIgnorePatterns": [
|
|
98
|
+
"<rootDir>/example/node_modules",
|
|
99
|
+
"<rootDir>/lib/"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
"commitlint": {
|
|
103
|
+
"extends": [
|
|
104
|
+
"@commitlint/config-conventional"
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"release-it": {
|
|
108
|
+
"git": {
|
|
109
|
+
"commitMessage": "chore: release ${version}",
|
|
110
|
+
"tagName": "v${version}"
|
|
111
|
+
},
|
|
112
|
+
"npm": {
|
|
113
|
+
"publish": true
|
|
114
|
+
},
|
|
115
|
+
"github": {
|
|
116
|
+
"release": true
|
|
117
|
+
},
|
|
118
|
+
"plugins": {
|
|
119
|
+
"@release-it/conventional-changelog": {
|
|
120
|
+
"preset": {
|
|
121
|
+
"name": "angular"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"prettier": {
|
|
127
|
+
"quoteProps": "consistent",
|
|
128
|
+
"singleQuote": true,
|
|
129
|
+
"tabWidth": 2,
|
|
130
|
+
"trailingComma": "es5",
|
|
131
|
+
"useTabs": false
|
|
132
|
+
},
|
|
133
|
+
"react-native-builder-bob": {
|
|
134
|
+
"source": "src",
|
|
135
|
+
"output": "lib",
|
|
136
|
+
"targets": [
|
|
137
|
+
[
|
|
138
|
+
"module",
|
|
139
|
+
{
|
|
140
|
+
"esm": true
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
[
|
|
144
|
+
"typescript",
|
|
145
|
+
{
|
|
146
|
+
"project": "tsconfig.build.json"
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
"codegenConfig": {
|
|
152
|
+
"name": "QmsPluginSpec",
|
|
153
|
+
"type": "modules",
|
|
154
|
+
"jsSrcsDir": "src",
|
|
155
|
+
"android": {
|
|
156
|
+
"javaPackageName": "com.qmsplugin"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"create-react-native-library": {
|
|
160
|
+
"languages": "kotlin-objc",
|
|
161
|
+
"type": "turbo-module",
|
|
162
|
+
"version": "0.54.3"
|
|
163
|
+
},
|
|
164
|
+
"directories": {
|
|
165
|
+
"example": "example"
|
|
166
|
+
},
|
|
167
|
+
"dependencies": {
|
|
168
|
+
"JSONStream": "^1.3.5",
|
|
169
|
+
"abbrev": "^3.0.1",
|
|
170
|
+
"abort-controller": "^3.0.0",
|
|
171
|
+
"accepts": "^1.3.8",
|
|
172
|
+
"acorn": "^8.15.0",
|
|
173
|
+
"acorn-jsx": "^5.3.2",
|
|
174
|
+
"add-stream": "^1.0.0",
|
|
175
|
+
"agent-base": "^7.1.4",
|
|
176
|
+
"aggregate-error": "^3.1.0",
|
|
177
|
+
"ajv": "^6.12.6",
|
|
178
|
+
"anser": "^1.4.10",
|
|
179
|
+
"ansi-escapes": "^4.3.2",
|
|
180
|
+
"ansi-fragments": "^0.2.1",
|
|
181
|
+
"ansi-regex": "^5.0.1",
|
|
182
|
+
"ansi-styles": "^4.3.0",
|
|
183
|
+
"anymatch": "^3.1.3",
|
|
184
|
+
"appdirsjs": "^1.2.7",
|
|
185
|
+
"argparse": "^2.0.1",
|
|
186
|
+
"arktype": "^2.1.22",
|
|
187
|
+
"array-buffer-byte-length": "^1.0.2",
|
|
188
|
+
"array-ify": "^1.0.0",
|
|
189
|
+
"array-includes": "^3.1.9",
|
|
190
|
+
"array-union": "^2.1.0",
|
|
191
|
+
"array.prototype.findlast": "^1.2.5",
|
|
192
|
+
"array.prototype.flat": "^1.3.3",
|
|
193
|
+
"array.prototype.flatmap": "^1.3.3",
|
|
194
|
+
"array.prototype.tosorted": "^1.1.4",
|
|
195
|
+
"arraybuffer.prototype.slice": "^1.0.4",
|
|
196
|
+
"asap": "^2.0.6",
|
|
197
|
+
"ast-types": "^0.13.4",
|
|
198
|
+
"astral-regex": "^1.0.0",
|
|
199
|
+
"async-function": "^1.0.0",
|
|
200
|
+
"async-generator-function": "^1.0.0",
|
|
201
|
+
"async-limiter": "^1.0.1",
|
|
202
|
+
"async-retry": "^1.3.3",
|
|
203
|
+
"available-typed-arrays": "^1.0.7",
|
|
204
|
+
"babel-jest": "^29.7.0",
|
|
205
|
+
"babel-plugin-istanbul": "^6.1.1",
|
|
206
|
+
"babel-plugin-jest-hoist": "^29.6.3",
|
|
207
|
+
"babel-plugin-polyfill-corejs2": "^0.4.14",
|
|
208
|
+
"babel-plugin-polyfill-corejs3": "^0.13.0",
|
|
209
|
+
"babel-plugin-polyfill-regenerator": "^0.6.5",
|
|
210
|
+
"babel-plugin-syntax-hermes-parser": "^0.29.1",
|
|
211
|
+
"babel-plugin-transform-flow-enums": "^0.0.2",
|
|
212
|
+
"babel-preset-current-node-syntax": "^1.2.0",
|
|
213
|
+
"babel-preset-jest": "^29.6.3",
|
|
214
|
+
"balanced-match": "^1.0.2",
|
|
215
|
+
"base64-js": "^1.5.1",
|
|
216
|
+
"baseline-browser-mapping": "^2.8.12",
|
|
217
|
+
"basic-ftp": "^5.0.5",
|
|
218
|
+
"before-after-hook": "^4.0.0",
|
|
219
|
+
"bl": "^4.1.0",
|
|
220
|
+
"body-parser": "^1.20.3",
|
|
221
|
+
"brace-expansion": "^2.0.2",
|
|
222
|
+
"braces": "^3.0.3",
|
|
223
|
+
"browserslist": "^4.26.3",
|
|
224
|
+
"bser": "^2.1.1",
|
|
225
|
+
"buffer": "^5.7.1",
|
|
226
|
+
"buffer-from": "^1.1.2",
|
|
227
|
+
"bundle-name": "^4.1.0",
|
|
228
|
+
"bytes": "^3.1.2",
|
|
229
|
+
"c12": "^3.3.0",
|
|
230
|
+
"cacache": "^19.0.1",
|
|
231
|
+
"call-bind": "^1.0.8",
|
|
232
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
233
|
+
"call-bound": "^1.0.4",
|
|
234
|
+
"callsites": "^3.1.0",
|
|
235
|
+
"camelcase": "^5.3.1",
|
|
236
|
+
"caniuse-lite": "^1.0.30001747",
|
|
237
|
+
"chalk": "^4.1.2",
|
|
238
|
+
"char-regex": "^1.0.2",
|
|
239
|
+
"chardet": "^2.1.0",
|
|
240
|
+
"chokidar": "^4.0.3",
|
|
241
|
+
"chownr": "^3.0.0",
|
|
242
|
+
"chrome-launcher": "^0.15.2",
|
|
243
|
+
"chromium-edge-launcher": "^0.2.0",
|
|
244
|
+
"ci-info": "^3.9.0",
|
|
245
|
+
"citty": "^0.1.6",
|
|
246
|
+
"cjs-module-lexer": "^1.4.3",
|
|
247
|
+
"clean-stack": "^2.2.0",
|
|
248
|
+
"cli-cursor": "^3.1.0",
|
|
249
|
+
"cli-spinners": "^2.9.2",
|
|
250
|
+
"cli-width": "^4.1.0",
|
|
251
|
+
"cliui": "^6.0.0",
|
|
252
|
+
"clone": "^1.0.4",
|
|
253
|
+
"co": "^4.6.0",
|
|
254
|
+
"collect-v8-coverage": "^1.0.2",
|
|
255
|
+
"color-convert": "^2.0.1",
|
|
256
|
+
"color-name": "^1.1.4",
|
|
257
|
+
"colorette": "^1.4.0",
|
|
258
|
+
"command-exists": "^1.2.9",
|
|
259
|
+
"commander": "^9.5.0",
|
|
260
|
+
"compare-func": "^2.0.0",
|
|
261
|
+
"compressible": "^2.0.18",
|
|
262
|
+
"compression": "^1.8.1",
|
|
263
|
+
"concat-map": "^0.0.1",
|
|
264
|
+
"concat-stream": "^2.0.0",
|
|
265
|
+
"confbox": "^0.2.2",
|
|
266
|
+
"connect": "^3.7.0",
|
|
267
|
+
"consola": "^3.4.2",
|
|
268
|
+
"content-type": "^1.0.5",
|
|
269
|
+
"conventional-changelog": "^6.0.0",
|
|
270
|
+
"conventional-changelog-angular": "^7.0.0",
|
|
271
|
+
"conventional-changelog-atom": "^5.0.0",
|
|
272
|
+
"conventional-changelog-codemirror": "^5.0.0",
|
|
273
|
+
"conventional-changelog-conventionalcommits": "^7.0.2",
|
|
274
|
+
"conventional-changelog-core": "^8.0.0",
|
|
275
|
+
"conventional-changelog-ember": "^5.0.0",
|
|
276
|
+
"conventional-changelog-eslint": "^6.0.0",
|
|
277
|
+
"conventional-changelog-express": "^5.0.0",
|
|
278
|
+
"conventional-changelog-jquery": "^6.0.0",
|
|
279
|
+
"conventional-changelog-jshint": "^5.0.0",
|
|
280
|
+
"conventional-changelog-preset-loader": "^5.0.0",
|
|
281
|
+
"conventional-changelog-writer": "^8.2.0",
|
|
282
|
+
"conventional-commits-filter": "^5.0.0",
|
|
283
|
+
"conventional-commits-parser": "^6.2.0",
|
|
284
|
+
"conventional-recommended-bump": "^10.0.0",
|
|
285
|
+
"convert-source-map": "^2.0.0",
|
|
286
|
+
"core-js-compat": "^3.45.1",
|
|
287
|
+
"cosmiconfig": "^9.0.0",
|
|
288
|
+
"cosmiconfig-typescript-loader": "^6.1.0",
|
|
289
|
+
"create-jest": "^29.7.0",
|
|
290
|
+
"cross-spawn": "^7.0.6",
|
|
291
|
+
"csstype": "^3.1.3",
|
|
292
|
+
"dargs": "^8.1.0",
|
|
293
|
+
"data-uri-to-buffer": "^6.0.2",
|
|
294
|
+
"data-view-buffer": "^1.0.2",
|
|
295
|
+
"data-view-byte-length": "^1.0.2",
|
|
296
|
+
"data-view-byte-offset": "^1.0.1",
|
|
297
|
+
"dayjs": "^1.11.18",
|
|
298
|
+
"debug": "^4.4.3",
|
|
299
|
+
"decamelize": "^1.2.0",
|
|
300
|
+
"dedent": "^0.7.0",
|
|
301
|
+
"deep-is": "^0.1.4",
|
|
302
|
+
"deepmerge": "^4.3.1",
|
|
303
|
+
"default-browser": "^5.2.1",
|
|
304
|
+
"default-browser-id": "^5.0.0",
|
|
305
|
+
"defaults": "^1.0.4",
|
|
306
|
+
"define-data-property": "^1.1.4",
|
|
307
|
+
"define-lazy-prop": "^3.0.0",
|
|
308
|
+
"define-properties": "^1.2.1",
|
|
309
|
+
"defu": "^6.1.4",
|
|
310
|
+
"degenerator": "^5.0.1",
|
|
311
|
+
"del": "^8.0.1",
|
|
312
|
+
"depd": "^2.0.0",
|
|
313
|
+
"destr": "^2.0.5",
|
|
314
|
+
"destroy": "^1.2.0",
|
|
315
|
+
"detect-newline": "^3.1.0",
|
|
316
|
+
"diff-sequences": "^29.6.3",
|
|
317
|
+
"dir-glob": "^3.0.1",
|
|
318
|
+
"doctrine": "^2.1.0",
|
|
319
|
+
"dot-prop": "^5.3.0",
|
|
320
|
+
"dotenv": "^17.2.3",
|
|
321
|
+
"dunder-proto": "^1.0.1",
|
|
322
|
+
"eastasianwidth": "^0.2.0",
|
|
323
|
+
"ee-first": "^1.1.1",
|
|
324
|
+
"electron-to-chromium": "^1.5.230",
|
|
325
|
+
"emittery": "^0.13.1",
|
|
326
|
+
"emoji-regex": "^8.0.0",
|
|
327
|
+
"encodeurl": "^1.0.2",
|
|
328
|
+
"encoding": "^0.1.13",
|
|
329
|
+
"end-of-stream": "^1.4.5",
|
|
330
|
+
"env-paths": "^2.2.1",
|
|
331
|
+
"envinfo": "^7.16.0",
|
|
332
|
+
"err-code": "^2.0.3",
|
|
333
|
+
"error-ex": "^1.3.4",
|
|
334
|
+
"error-stack-parser": "^2.1.4",
|
|
335
|
+
"errorhandler": "^1.5.1",
|
|
336
|
+
"es-abstract": "^1.24.0",
|
|
337
|
+
"es-define-property": "^1.0.1",
|
|
338
|
+
"es-errors": "^1.3.0",
|
|
339
|
+
"es-iterator-helpers": "^1.2.1",
|
|
340
|
+
"es-object-atoms": "^1.1.1",
|
|
341
|
+
"es-set-tostringtag": "^2.1.0",
|
|
342
|
+
"es-shim-unscopables": "^1.1.0",
|
|
343
|
+
"es-to-primitive": "^1.3.0",
|
|
344
|
+
"escalade": "^3.2.0",
|
|
345
|
+
"escape-html": "^1.0.3",
|
|
346
|
+
"escape-string-regexp": "^4.0.0",
|
|
347
|
+
"escodegen": "^2.1.0",
|
|
348
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
349
|
+
"eslint-plugin-ft-flow": "^2.0.3",
|
|
350
|
+
"eslint-plugin-jest": "^27.9.0",
|
|
351
|
+
"eslint-plugin-react": "^7.37.5",
|
|
352
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
353
|
+
"eslint-plugin-react-native": "^4.1.0",
|
|
354
|
+
"eslint-plugin-react-native-globals": "^0.1.2",
|
|
355
|
+
"eslint-scope": "^5.1.1",
|
|
356
|
+
"eslint-visitor-keys": "^3.4.3",
|
|
357
|
+
"espree": "^10.4.0",
|
|
358
|
+
"esprima": "^4.0.1",
|
|
359
|
+
"esquery": "^1.6.0",
|
|
360
|
+
"esrecurse": "^4.3.0",
|
|
361
|
+
"estraverse": "^5.3.0",
|
|
362
|
+
"esutils": "^2.0.3",
|
|
363
|
+
"eta": "^4.0.1",
|
|
364
|
+
"etag": "^1.8.1",
|
|
365
|
+
"event-target-shim": "^5.0.1",
|
|
366
|
+
"execa": "^5.1.1",
|
|
367
|
+
"exit": "^0.1.2",
|
|
368
|
+
"expect": "^29.7.0",
|
|
369
|
+
"exponential-backoff": "^3.1.2",
|
|
370
|
+
"exsolve": "^1.0.7",
|
|
371
|
+
"fast-content-type-parse": "^3.0.0",
|
|
372
|
+
"fast-deep-equal": "^3.1.3",
|
|
373
|
+
"fast-diff": "^1.3.0",
|
|
374
|
+
"fast-glob": "^3.3.3",
|
|
375
|
+
"fast-json-stable-stringify": "^2.1.0",
|
|
376
|
+
"fast-levenshtein": "^2.0.6",
|
|
377
|
+
"fast-uri": "^3.1.0",
|
|
378
|
+
"fast-xml-parser": "^4.5.3",
|
|
379
|
+
"fastq": "^1.19.1",
|
|
380
|
+
"fb-watchman": "^2.0.2",
|
|
381
|
+
"fdir": "^6.5.0",
|
|
382
|
+
"file-entry-cache": "^8.0.0",
|
|
383
|
+
"fill-range": "^7.1.1",
|
|
384
|
+
"finalhandler": "^1.1.2",
|
|
385
|
+
"find-up": "^5.0.0",
|
|
386
|
+
"find-up-simple": "^1.0.1",
|
|
387
|
+
"flat-cache": "^4.0.1",
|
|
388
|
+
"flatted": "^3.3.3",
|
|
389
|
+
"flow-enums-runtime": "^0.0.6",
|
|
390
|
+
"for-each": "^0.3.5",
|
|
391
|
+
"foreground-child": "^3.3.1",
|
|
392
|
+
"fresh": "^0.5.2",
|
|
393
|
+
"fs-extra": "^8.1.0",
|
|
394
|
+
"fs-minipass": "^3.0.3",
|
|
395
|
+
"fs.realpath": "^1.0.0",
|
|
396
|
+
"fsevents": "^2.3.3",
|
|
397
|
+
"function-bind": "^1.1.2",
|
|
398
|
+
"function.prototype.name": "^1.1.8",
|
|
399
|
+
"functions-have-names": "^1.2.3",
|
|
400
|
+
"generator-function": "^2.0.1",
|
|
401
|
+
"gensync": "^1.0.0-beta.2",
|
|
402
|
+
"get-caller-file": "^2.0.5",
|
|
403
|
+
"get-east-asian-width": "^1.4.0",
|
|
404
|
+
"get-intrinsic": "^1.3.1",
|
|
405
|
+
"get-package-type": "^0.1.0",
|
|
406
|
+
"get-proto": "^1.0.1",
|
|
407
|
+
"get-stream": "^6.0.1",
|
|
408
|
+
"get-symbol-description": "^1.1.0",
|
|
409
|
+
"get-uri": "^6.0.5",
|
|
410
|
+
"giget": "^2.0.0",
|
|
411
|
+
"git-raw-commits": "^4.0.0",
|
|
412
|
+
"git-semver-tags": "^8.0.0",
|
|
413
|
+
"git-up": "^8.1.1",
|
|
414
|
+
"git-url-parse": "^16.1.0",
|
|
415
|
+
"glob": "^7.2.3",
|
|
416
|
+
"glob-parent": "^5.1.2",
|
|
417
|
+
"global-directory": "^4.0.1",
|
|
418
|
+
"globals": "^14.0.0",
|
|
419
|
+
"globalthis": "^1.0.4",
|
|
420
|
+
"globby": "^11.1.0",
|
|
421
|
+
"gopd": "^1.2.0",
|
|
422
|
+
"graceful-fs": "^4.2.11",
|
|
423
|
+
"graphemer": "^1.4.0",
|
|
424
|
+
"handlebars": "^4.7.8",
|
|
425
|
+
"has-bigints": "^1.1.0",
|
|
426
|
+
"has-flag": "^4.0.0",
|
|
427
|
+
"has-property-descriptors": "^1.0.2",
|
|
428
|
+
"has-proto": "^1.2.0",
|
|
429
|
+
"has-symbols": "^1.1.0",
|
|
430
|
+
"has-tostringtag": "^1.0.2",
|
|
431
|
+
"hasown": "^2.0.2",
|
|
432
|
+
"hermes-estree": "^0.28.1",
|
|
433
|
+
"hermes-parser": "^0.29.1",
|
|
434
|
+
"hosted-git-info": "^7.0.2",
|
|
435
|
+
"html-escaper": "^2.0.2",
|
|
436
|
+
"http-cache-semantics": "^4.2.0",
|
|
437
|
+
"http-errors": "^2.0.0",
|
|
438
|
+
"http-proxy-agent": "^7.0.2",
|
|
439
|
+
"https-proxy-agent": "^7.0.6",
|
|
440
|
+
"human-signals": "^2.1.0",
|
|
441
|
+
"iconv-lite": "^0.4.24",
|
|
442
|
+
"ieee754": "^1.2.1",
|
|
443
|
+
"ignore": "^5.3.2",
|
|
444
|
+
"image-size": "^1.2.1",
|
|
445
|
+
"import-fresh": "^3.3.1",
|
|
446
|
+
"import-local": "^3.2.0",
|
|
447
|
+
"import-meta-resolve": "^4.2.0",
|
|
448
|
+
"imurmurhash": "^0.1.4",
|
|
449
|
+
"indent-string": "^4.0.0",
|
|
450
|
+
"index-to-position": "^1.2.0",
|
|
451
|
+
"inflight": "^1.0.6",
|
|
452
|
+
"inherits": "^2.0.4",
|
|
453
|
+
"ini": "^4.1.1",
|
|
454
|
+
"inquirer": "^12.9.6",
|
|
455
|
+
"internal-slot": "^1.1.0",
|
|
456
|
+
"invariant": "^2.2.4",
|
|
457
|
+
"ip-address": "^10.0.1",
|
|
458
|
+
"is-absolute": "^1.0.0",
|
|
459
|
+
"is-array-buffer": "^3.0.5",
|
|
460
|
+
"is-arrayish": "^0.2.1",
|
|
461
|
+
"is-async-function": "^2.1.1",
|
|
462
|
+
"is-bigint": "^1.1.0",
|
|
463
|
+
"is-boolean-object": "^1.2.2",
|
|
464
|
+
"is-callable": "^1.2.7",
|
|
465
|
+
"is-core-module": "^2.16.1",
|
|
466
|
+
"is-data-view": "^1.0.2",
|
|
467
|
+
"is-date-object": "^1.1.0",
|
|
468
|
+
"is-docker": "^2.2.1",
|
|
469
|
+
"is-extglob": "^2.1.1",
|
|
470
|
+
"is-finalizationregistry": "^1.1.1",
|
|
471
|
+
"is-fullwidth-code-point": "^2.0.0",
|
|
472
|
+
"is-generator-fn": "^2.1.0",
|
|
473
|
+
"is-generator-function": "^1.1.2",
|
|
474
|
+
"is-git-dirty": "^2.0.2",
|
|
475
|
+
"is-git-repository": "^2.0.0",
|
|
476
|
+
"is-glob": "^4.0.3",
|
|
477
|
+
"is-inside-container": "^1.0.0",
|
|
478
|
+
"is-interactive": "^1.0.0",
|
|
479
|
+
"is-map": "^2.0.3",
|
|
480
|
+
"is-negative-zero": "^2.0.3",
|
|
481
|
+
"is-number": "^7.0.0",
|
|
482
|
+
"is-number-object": "^1.1.1",
|
|
483
|
+
"is-obj": "^2.0.0",
|
|
484
|
+
"is-path-cwd": "^3.0.0",
|
|
485
|
+
"is-path-inside": "^4.0.0",
|
|
486
|
+
"is-regex": "^1.2.1",
|
|
487
|
+
"is-relative": "^1.0.0",
|
|
488
|
+
"is-set": "^2.0.3",
|
|
489
|
+
"is-shared-array-buffer": "^1.0.4",
|
|
490
|
+
"is-ssh": "^1.4.1",
|
|
491
|
+
"is-stream": "^2.0.1",
|
|
492
|
+
"is-string": "^1.1.1",
|
|
493
|
+
"is-symbol": "^1.1.1",
|
|
494
|
+
"is-text-path": "^2.0.0",
|
|
495
|
+
"is-typed-array": "^1.1.15",
|
|
496
|
+
"is-unc-path": "^1.0.0",
|
|
497
|
+
"is-unicode-supported": "^0.1.0",
|
|
498
|
+
"is-weakmap": "^2.0.2",
|
|
499
|
+
"is-weakref": "^1.1.1",
|
|
500
|
+
"is-weakset": "^2.0.4",
|
|
501
|
+
"is-windows": "^1.0.2",
|
|
502
|
+
"is-wsl": "^2.2.0",
|
|
503
|
+
"isarray": "^2.0.5",
|
|
504
|
+
"isexe": "^2.0.0",
|
|
505
|
+
"issue-parser": "^7.0.1",
|
|
506
|
+
"istanbul-lib-coverage": "^3.2.2",
|
|
507
|
+
"istanbul-lib-instrument": "^5.2.1",
|
|
508
|
+
"istanbul-lib-report": "^3.0.1",
|
|
509
|
+
"istanbul-lib-source-maps": "^4.0.1",
|
|
510
|
+
"istanbul-reports": "^3.2.0",
|
|
511
|
+
"iterator.prototype": "^1.1.5",
|
|
512
|
+
"jackspeak": "^3.4.3",
|
|
513
|
+
"jest-changed-files": "^29.7.0",
|
|
514
|
+
"jest-circus": "^29.7.0",
|
|
515
|
+
"jest-cli": "^29.7.0",
|
|
516
|
+
"jest-config": "^29.7.0",
|
|
517
|
+
"jest-diff": "^29.7.0",
|
|
518
|
+
"jest-docblock": "^29.7.0",
|
|
519
|
+
"jest-each": "^29.7.0",
|
|
520
|
+
"jest-environment-node": "^29.7.0",
|
|
521
|
+
"jest-get-type": "^29.6.3",
|
|
522
|
+
"jest-haste-map": "^29.7.0",
|
|
523
|
+
"jest-leak-detector": "^29.7.0",
|
|
524
|
+
"jest-matcher-utils": "^29.7.0",
|
|
525
|
+
"jest-message-util": "^29.7.0",
|
|
526
|
+
"jest-mock": "^29.7.0",
|
|
527
|
+
"jest-pnp-resolver": "^1.2.3",
|
|
528
|
+
"jest-regex-util": "^29.6.3",
|
|
529
|
+
"jest-resolve": "^29.7.0",
|
|
530
|
+
"jest-resolve-dependencies": "^29.7.0",
|
|
531
|
+
"jest-runner": "^29.7.0",
|
|
532
|
+
"jest-runtime": "^29.7.0",
|
|
533
|
+
"jest-snapshot": "^29.7.0",
|
|
534
|
+
"jest-util": "^29.7.0",
|
|
535
|
+
"jest-validate": "^29.7.0",
|
|
536
|
+
"jest-watcher": "^29.7.0",
|
|
537
|
+
"jest-worker": "^29.7.0",
|
|
538
|
+
"jiti": "^2.6.1",
|
|
539
|
+
"joi": "^17.13.3",
|
|
540
|
+
"js-tokens": "^4.0.0",
|
|
541
|
+
"js-yaml": "^4.1.0",
|
|
542
|
+
"jsc-safe-url": "^0.2.4",
|
|
543
|
+
"jsesc": "^3.1.0",
|
|
544
|
+
"json-buffer": "^3.0.1",
|
|
545
|
+
"json-parse-even-better-errors": "^2.3.1",
|
|
546
|
+
"json-schema-traverse": "^0.4.1",
|
|
547
|
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
548
|
+
"json5": "^2.2.3",
|
|
549
|
+
"jsonfile": "^4.0.0",
|
|
550
|
+
"jsonparse": "^1.3.1",
|
|
551
|
+
"jsx-ast-utils": "^3.3.5",
|
|
552
|
+
"keyv": "^4.5.4",
|
|
553
|
+
"kleur": "^3.0.3",
|
|
554
|
+
"launch-editor": "^2.11.1",
|
|
555
|
+
"leven": "^3.1.0",
|
|
556
|
+
"levn": "^0.4.1",
|
|
557
|
+
"lighthouse-logger": "^1.4.2",
|
|
558
|
+
"lines-and-columns": "^1.2.4",
|
|
559
|
+
"locate-path": "^6.0.0",
|
|
560
|
+
"lodash": "^4.17.21",
|
|
561
|
+
"lodash.camelcase": "^4.3.0",
|
|
562
|
+
"lodash.capitalize": "^4.2.1",
|
|
563
|
+
"lodash.debounce": "^4.0.8",
|
|
564
|
+
"lodash.escaperegexp": "^4.1.2",
|
|
565
|
+
"lodash.isplainobject": "^4.0.6",
|
|
566
|
+
"lodash.isstring": "^4.0.1",
|
|
567
|
+
"lodash.kebabcase": "^4.1.1",
|
|
568
|
+
"lodash.merge": "^4.6.2",
|
|
569
|
+
"lodash.mergewith": "^4.6.2",
|
|
570
|
+
"lodash.snakecase": "^4.1.1",
|
|
571
|
+
"lodash.startcase": "^4.4.0",
|
|
572
|
+
"lodash.throttle": "^4.1.1",
|
|
573
|
+
"lodash.uniq": "^4.5.0",
|
|
574
|
+
"lodash.uniqby": "^4.7.0",
|
|
575
|
+
"lodash.upperfirst": "^4.3.1",
|
|
576
|
+
"log-symbols": "^4.1.0",
|
|
577
|
+
"logkitty": "^0.7.1",
|
|
578
|
+
"loose-envify": "^1.4.0",
|
|
579
|
+
"lru-cache": "^10.4.3",
|
|
580
|
+
"macos-release": "^3.4.0",
|
|
581
|
+
"make-dir": "^4.0.0",
|
|
582
|
+
"make-fetch-happen": "^14.0.3",
|
|
583
|
+
"makeerror": "^1.0.12",
|
|
584
|
+
"marky": "^1.3.0",
|
|
585
|
+
"math-intrinsics": "^1.1.0",
|
|
586
|
+
"media-typer": "^0.3.0",
|
|
587
|
+
"memoize-one": "^5.2.1",
|
|
588
|
+
"meow": "^13.2.0",
|
|
589
|
+
"merge-stream": "^2.0.0",
|
|
590
|
+
"merge2": "^1.4.1",
|
|
591
|
+
"metro": "^0.83.3",
|
|
592
|
+
"metro-babel-transformer": "^0.83.3",
|
|
593
|
+
"metro-cache": "^0.83.3",
|
|
594
|
+
"metro-cache-key": "^0.83.3",
|
|
595
|
+
"metro-config": "^0.83.3",
|
|
596
|
+
"metro-core": "^0.83.3",
|
|
597
|
+
"metro-file-map": "^0.83.3",
|
|
598
|
+
"metro-minify-terser": "^0.83.3",
|
|
599
|
+
"metro-resolver": "^0.83.3",
|
|
600
|
+
"metro-runtime": "^0.83.3",
|
|
601
|
+
"metro-source-map": "^0.83.3",
|
|
602
|
+
"metro-symbolicate": "^0.83.3",
|
|
603
|
+
"metro-transform-plugins": "^0.83.3",
|
|
604
|
+
"metro-transform-worker": "^0.83.3",
|
|
605
|
+
"micromatch": "^4.0.8",
|
|
606
|
+
"mime": "^2.6.0",
|
|
607
|
+
"mime-db": "^1.54.0",
|
|
608
|
+
"mime-types": "^2.1.35",
|
|
609
|
+
"mimic-fn": "^2.1.0",
|
|
610
|
+
"mimic-function": "^5.0.1",
|
|
611
|
+
"minimatch": "^3.1.2",
|
|
612
|
+
"minimist": "^1.2.8",
|
|
613
|
+
"minipass": "^7.1.2",
|
|
614
|
+
"minipass-collect": "^2.0.1",
|
|
615
|
+
"minipass-fetch": "^4.0.1",
|
|
616
|
+
"minipass-flush": "^1.0.5",
|
|
617
|
+
"minipass-pipeline": "^1.2.4",
|
|
618
|
+
"minipass-sized": "^1.0.3",
|
|
619
|
+
"minizlib": "^3.1.0",
|
|
620
|
+
"mkdirp": "^1.0.4",
|
|
621
|
+
"ms": "^2.1.3",
|
|
622
|
+
"mute-stream": "^2.0.0",
|
|
623
|
+
"natural-compare": "^1.4.0",
|
|
624
|
+
"negotiator": "^0.6.4",
|
|
625
|
+
"neo-async": "^2.6.2",
|
|
626
|
+
"netmask": "^2.0.2",
|
|
627
|
+
"new-github-release-url": "^2.0.0",
|
|
628
|
+
"nocache": "^3.0.4",
|
|
629
|
+
"node-fetch-native": "^1.6.7",
|
|
630
|
+
"node-gyp": "^11.4.2",
|
|
631
|
+
"node-int64": "^0.4.0",
|
|
632
|
+
"node-releases": "^2.0.23",
|
|
633
|
+
"node-stream-zip": "^1.15.0",
|
|
634
|
+
"nopt": "^8.1.0",
|
|
635
|
+
"normalize-package-data": "^6.0.2",
|
|
636
|
+
"normalize-path": "^3.0.0",
|
|
637
|
+
"npm-run-path": "^4.0.1",
|
|
638
|
+
"nullthrows": "^1.1.1",
|
|
639
|
+
"nypm": "^0.6.2",
|
|
640
|
+
"ob1": "^0.83.3",
|
|
641
|
+
"object-assign": "^4.1.1",
|
|
642
|
+
"object-inspect": "^1.13.4",
|
|
643
|
+
"object-keys": "^1.1.1",
|
|
644
|
+
"object.assign": "^4.1.7",
|
|
645
|
+
"object.entries": "^1.1.9",
|
|
646
|
+
"object.fromentries": "^2.0.8",
|
|
647
|
+
"object.values": "^1.2.1",
|
|
648
|
+
"ohash": "^2.0.11",
|
|
649
|
+
"on-finished": "^2.4.1",
|
|
650
|
+
"on-headers": "^1.1.0",
|
|
651
|
+
"once": "^1.4.0",
|
|
652
|
+
"onetime": "^5.1.2",
|
|
653
|
+
"open": "^6.4.0",
|
|
654
|
+
"optionator": "^0.9.4",
|
|
655
|
+
"ora": "^5.4.1",
|
|
656
|
+
"os-name": "^6.1.0",
|
|
657
|
+
"own-keys": "^1.0.1",
|
|
658
|
+
"p-limit": "^3.1.0",
|
|
659
|
+
"p-locate": "^5.0.0",
|
|
660
|
+
"p-map": "^7.0.3",
|
|
661
|
+
"p-try": "^2.2.0",
|
|
662
|
+
"pac-proxy-agent": "^7.2.0",
|
|
663
|
+
"pac-resolver": "^7.0.1",
|
|
664
|
+
"package-json-from-dist": "^1.0.1",
|
|
665
|
+
"parent-module": "^1.0.1",
|
|
666
|
+
"parse-json": "^5.2.0",
|
|
667
|
+
"parse-path": "^7.1.0",
|
|
668
|
+
"parse-url": "^9.2.0",
|
|
669
|
+
"parseurl": "^1.3.3",
|
|
670
|
+
"path-exists": "^4.0.0",
|
|
671
|
+
"path-is-absolute": "^1.0.1",
|
|
672
|
+
"path-key": "^3.1.1",
|
|
673
|
+
"path-parse": "^1.0.7",
|
|
674
|
+
"path-scurry": "^1.11.1",
|
|
675
|
+
"path-type": "^6.0.0",
|
|
676
|
+
"pathe": "^2.0.3",
|
|
677
|
+
"perfect-debounce": "^2.0.0",
|
|
678
|
+
"picocolors": "^1.1.1",
|
|
679
|
+
"picomatch": "^4.0.3",
|
|
680
|
+
"pirates": "^4.0.7",
|
|
681
|
+
"pkg-dir": "^4.2.0",
|
|
682
|
+
"pkg-types": "^2.3.0",
|
|
683
|
+
"possible-typed-array-names": "^1.1.0",
|
|
684
|
+
"prelude-ls": "^1.2.1",
|
|
685
|
+
"presentable-error": "^0.0.1",
|
|
686
|
+
"prettier-linter-helpers": "^1.0.0",
|
|
687
|
+
"pretty-format": "^29.7.0",
|
|
688
|
+
"proc-log": "^5.0.0",
|
|
689
|
+
"promise": "^8.3.0",
|
|
690
|
+
"promise-retry": "^2.0.1",
|
|
691
|
+
"prompts": "^2.4.2",
|
|
692
|
+
"prop-types": "^15.8.1",
|
|
693
|
+
"protocols": "^2.0.2",
|
|
694
|
+
"proxy-agent": "^6.5.0",
|
|
695
|
+
"proxy-from-env": "^1.1.0",
|
|
696
|
+
"pump": "^3.0.3",
|
|
697
|
+
"punycode": "^2.3.1",
|
|
698
|
+
"pure-rand": "^6.1.0",
|
|
699
|
+
"qs": "^6.13.0",
|
|
700
|
+
"queue": "^6.0.2",
|
|
701
|
+
"queue-microtask": "^1.2.3",
|
|
702
|
+
"range-parser": "^1.2.1",
|
|
703
|
+
"raw-body": "^2.5.2",
|
|
704
|
+
"rc9": "^2.1.2",
|
|
705
|
+
"react-devtools-core": "^6.1.5",
|
|
706
|
+
"react-is": "^18.3.1",
|
|
707
|
+
"react-native-monorepo-config": "^0.1.10",
|
|
708
|
+
"react-refresh": "^0.14.2",
|
|
709
|
+
"read-package-up": "^11.0.0",
|
|
710
|
+
"read-pkg": "^9.0.1",
|
|
711
|
+
"readable-stream": "^3.6.2",
|
|
712
|
+
"readdirp": "^4.1.2",
|
|
713
|
+
"reflect.getprototypeof": "^1.0.10",
|
|
714
|
+
"regenerate": "^1.4.2",
|
|
715
|
+
"regenerate-unicode-properties": "^10.2.2",
|
|
716
|
+
"regenerator-runtime": "^0.13.11",
|
|
717
|
+
"regexp.prototype.flags": "^1.5.4",
|
|
718
|
+
"regexpu-core": "^6.4.0",
|
|
719
|
+
"regjsgen": "^0.8.0",
|
|
720
|
+
"regjsparser": "^0.13.0",
|
|
721
|
+
"require-directory": "^2.1.1",
|
|
722
|
+
"require-from-string": "^2.0.2",
|
|
723
|
+
"require-main-filename": "^2.0.0",
|
|
724
|
+
"resolve": "^1.22.10",
|
|
725
|
+
"resolve-cwd": "^3.0.0",
|
|
726
|
+
"resolve-from": "^5.0.0",
|
|
727
|
+
"resolve.exports": "^2.0.3",
|
|
728
|
+
"restore-cursor": "^3.1.0",
|
|
729
|
+
"retry": "^0.13.1",
|
|
730
|
+
"reusify": "^1.1.0",
|
|
731
|
+
"rimraf": "^3.0.2",
|
|
732
|
+
"run-applescript": "^7.1.0",
|
|
733
|
+
"run-async": "^4.0.6",
|
|
734
|
+
"run-parallel": "^1.2.0",
|
|
735
|
+
"rxjs": "^7.8.2",
|
|
736
|
+
"safe-array-concat": "^1.1.3",
|
|
737
|
+
"safe-buffer": "^5.2.1",
|
|
738
|
+
"safe-push-apply": "^1.0.0",
|
|
739
|
+
"safe-regex-test": "^1.1.0",
|
|
740
|
+
"safer-buffer": "^2.1.2",
|
|
741
|
+
"scheduler": "^0.26.0",
|
|
742
|
+
"semver": "^7.7.2",
|
|
743
|
+
"send": "^0.19.0",
|
|
744
|
+
"serialize-error": "^2.1.0",
|
|
745
|
+
"serve-static": "^1.16.2",
|
|
746
|
+
"set-blocking": "^2.0.0",
|
|
747
|
+
"set-function-length": "^1.2.2",
|
|
748
|
+
"set-function-name": "^2.0.2",
|
|
749
|
+
"set-proto": "^1.0.0",
|
|
750
|
+
"setprototypeof": "^1.2.0",
|
|
751
|
+
"shebang-command": "^2.0.0",
|
|
752
|
+
"shebang-regex": "^3.0.0",
|
|
753
|
+
"shell-quote": "^1.8.3",
|
|
754
|
+
"side-channel": "^1.1.0",
|
|
755
|
+
"side-channel-list": "^1.0.0",
|
|
756
|
+
"side-channel-map": "^1.0.1",
|
|
757
|
+
"side-channel-weakmap": "^1.0.2",
|
|
758
|
+
"signal-exit": "^3.0.7",
|
|
759
|
+
"sisteransi": "^1.0.5",
|
|
760
|
+
"slash": "^3.0.0",
|
|
761
|
+
"slice-ansi": "^2.1.0",
|
|
762
|
+
"smart-buffer": "^4.2.0",
|
|
763
|
+
"socks": "^2.8.7",
|
|
764
|
+
"socks-proxy-agent": "^8.0.5",
|
|
765
|
+
"source-map": "^0.6.1",
|
|
766
|
+
"source-map-support": "^0.5.13",
|
|
767
|
+
"spdx-correct": "^3.2.0",
|
|
768
|
+
"spdx-exceptions": "^2.5.0",
|
|
769
|
+
"spdx-expression-parse": "^3.0.1",
|
|
770
|
+
"spdx-license-ids": "^3.0.22",
|
|
771
|
+
"split2": "^4.2.0",
|
|
772
|
+
"sprintf-js": "^1.0.3",
|
|
773
|
+
"ssri": "^12.0.0",
|
|
774
|
+
"stack-utils": "^2.0.6",
|
|
775
|
+
"stackframe": "^1.3.4",
|
|
776
|
+
"stacktrace-parser": "^0.1.11",
|
|
777
|
+
"statuses": "^2.0.1",
|
|
778
|
+
"stdin-discarder": "^0.2.2",
|
|
779
|
+
"stop-iteration-iterator": "^1.1.0",
|
|
780
|
+
"string-length": "^4.0.2",
|
|
781
|
+
"string-natural-compare": "^3.0.1",
|
|
782
|
+
"string-width": "^4.2.3",
|
|
783
|
+
"string-width-cjs": "^4.2.3",
|
|
784
|
+
"string.prototype.matchall": "^4.0.12",
|
|
785
|
+
"string.prototype.repeat": "^1.0.0",
|
|
786
|
+
"string.prototype.trim": "^1.2.10",
|
|
787
|
+
"string.prototype.trimend": "^1.0.9",
|
|
788
|
+
"string.prototype.trimstart": "^1.0.8",
|
|
789
|
+
"string_decoder": "^1.3.0",
|
|
790
|
+
"strip-ansi": "^6.0.1",
|
|
791
|
+
"strip-ansi-cjs": "^6.0.1",
|
|
792
|
+
"strip-bom": "^4.0.0",
|
|
793
|
+
"strip-final-newline": "^2.0.0",
|
|
794
|
+
"strip-json-comments": "^3.1.1",
|
|
795
|
+
"strnum": "^1.1.2",
|
|
796
|
+
"supports-color": "^7.2.0",
|
|
797
|
+
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
798
|
+
"synckit": "^0.11.11",
|
|
799
|
+
"tar": "^7.5.1",
|
|
800
|
+
"terser": "^5.44.0",
|
|
801
|
+
"test-exclude": "^6.0.0",
|
|
802
|
+
"text-extensions": "^2.4.0",
|
|
803
|
+
"throat": "^5.0.0",
|
|
804
|
+
"through": "^2.3.8",
|
|
805
|
+
"tinyexec": "^1.0.1",
|
|
806
|
+
"tinyglobby": "^0.2.15",
|
|
807
|
+
"tmpl": "^1.0.5",
|
|
808
|
+
"to-regex-range": "^5.0.1",
|
|
809
|
+
"toidentifier": "^1.0.1",
|
|
810
|
+
"ts-api-utils": "^1.4.3",
|
|
811
|
+
"tslib": "^2.8.1",
|
|
812
|
+
"tsutils": "^3.21.0",
|
|
813
|
+
"turbo-darwin-arm64": "^2.5.8",
|
|
814
|
+
"type-check": "^0.4.0",
|
|
815
|
+
"type-detect": "^4.0.8",
|
|
816
|
+
"type-fest": "^4.41.0",
|
|
817
|
+
"type-is": "^1.6.18",
|
|
818
|
+
"typed-array-buffer": "^1.0.3",
|
|
819
|
+
"typed-array-byte-length": "^1.0.3",
|
|
820
|
+
"typed-array-byte-offset": "^1.0.4",
|
|
821
|
+
"typed-array-length": "^1.0.7",
|
|
822
|
+
"typedarray": "^0.0.6",
|
|
823
|
+
"uglify-js": "^3.19.3",
|
|
824
|
+
"unbox-primitive": "^1.1.0",
|
|
825
|
+
"unc-path-regex": "^0.1.2",
|
|
826
|
+
"undici": "^6.21.3",
|
|
827
|
+
"undici-types": "^7.13.0",
|
|
828
|
+
"unicode-canonical-property-names-ecmascript": "^2.0.1",
|
|
829
|
+
"unicode-match-property-ecmascript": "^2.0.0",
|
|
830
|
+
"unicode-match-property-value-ecmascript": "^2.2.1",
|
|
831
|
+
"unicode-property-aliases-ecmascript": "^2.2.0",
|
|
832
|
+
"unicorn-magic": "^0.1.0",
|
|
833
|
+
"unique-filename": "^4.0.0",
|
|
834
|
+
"unique-slug": "^5.0.0",
|
|
835
|
+
"universal-user-agent": "^7.0.3",
|
|
836
|
+
"universalify": "^2.0.1",
|
|
837
|
+
"unpipe": "^1.0.0",
|
|
838
|
+
"update-browserslist-db": "^1.1.3",
|
|
839
|
+
"uri-js": "^4.4.1",
|
|
840
|
+
"url-join": "^5.0.0",
|
|
841
|
+
"util-deprecate": "^1.0.2",
|
|
842
|
+
"utils-merge": "^1.0.1",
|
|
843
|
+
"v8-to-istanbul": "^9.3.0",
|
|
844
|
+
"validate-npm-package-license": "^3.0.4",
|
|
845
|
+
"vary": "^1.1.2",
|
|
846
|
+
"vlq": "^1.0.1",
|
|
847
|
+
"walker": "^1.0.8",
|
|
848
|
+
"wcwidth": "^1.0.1",
|
|
849
|
+
"whatwg-fetch": "^3.6.20",
|
|
850
|
+
"which": "^2.0.2",
|
|
851
|
+
"which-boxed-primitive": "^1.1.1",
|
|
852
|
+
"which-builtin-type": "^1.2.1",
|
|
853
|
+
"which-collection": "^1.0.2",
|
|
854
|
+
"which-module": "^2.0.1",
|
|
855
|
+
"which-typed-array": "^1.1.19",
|
|
856
|
+
"wildcard-match": "^5.1.4",
|
|
857
|
+
"windows-release": "^6.1.0",
|
|
858
|
+
"word-wrap": "^1.2.5",
|
|
859
|
+
"wordwrap": "^1.0.0",
|
|
860
|
+
"wrap-ansi": "^6.2.0",
|
|
861
|
+
"wrap-ansi-cjs": "^7.0.0",
|
|
862
|
+
"wrappy": "^1.0.2",
|
|
863
|
+
"write-file-atomic": "^4.0.2",
|
|
864
|
+
"ws": "^6.2.3",
|
|
865
|
+
"wsl-utils": "^0.1.0",
|
|
866
|
+
"y18n": "^4.0.3",
|
|
867
|
+
"yallist": "^3.1.1",
|
|
868
|
+
"yaml": "^2.8.1",
|
|
869
|
+
"yargs": "^17.7.2",
|
|
870
|
+
"yargs-parser": "^21.1.1",
|
|
871
|
+
"yocto-queue": "^0.1.0",
|
|
872
|
+
"yoctocolors": "^2.1.2",
|
|
873
|
+
"yoctocolors-cjs": "^2.1.3"
|
|
874
|
+
}
|
|
875
|
+
}
|