@@ -219,6 +219,21 @@ const BindingData::PackageConfig* BindingData::GetPackageJSON(
219
219
if (field_value == " commonjs" || field_value == " module" ) {
220
220
package_config.type = field_value;
221
221
}
222
+ } else if (key == " scripts" ) {
223
+ if (value.type ().get (field_type)) {
224
+ return throw_invalid_package_config ();
225
+ }
226
+ switch (field_type) {
227
+ case simdjson::ondemand::json_type::object: {
228
+ if (value.raw_json ().get (field_value)) {
229
+ return throw_invalid_package_config ();
230
+ }
231
+ package_config.scripts = field_value;
232
+ break ;
233
+ }
234
+ default :
235
+ break ;
236
+ }
222
237
}
223
238
}
224
239
// package_config could be quite large, so we should move it instead of
@@ -344,6 +359,28 @@ void BindingData::GetNearestParentPackageJSONType(
344
359
args.GetReturnValue ().Set (Array::New (realm->isolate (), values, 3 ));
345
360
}
346
361
362
+ void BindingData::GetPackageJSONScripts (
363
+ const FunctionCallbackInfo<Value>& args) {
364
+ Realm* realm = Realm::GetCurrent (args);
365
+ std::string path = " package.json" ;
366
+
367
+ THROW_IF_INSUFFICIENT_PERMISSIONS (
368
+ realm->env (), permission::PermissionScope::kFileSystemRead , path);
369
+
370
+ auto package_json = GetPackageJSON (realm, path);
371
+ if (package_json == nullptr ) {
372
+ printf (" Can't read package.json\n " );
373
+ return ;
374
+ } else if (!package_json->scripts .has_value ()) {
375
+ printf (" Package.json scripts doesn't exist or parseable\n " );
376
+ return ;
377
+ }
378
+
379
+ args.GetReturnValue ().Set (
380
+ ToV8Value (realm->context (), package_json->scripts .value ())
381
+ .ToLocalChecked ());
382
+ }
383
+
347
384
void BindingData::GetPackageScopeConfig (
348
385
const FunctionCallbackInfo<Value>& args) {
349
386
CHECK_GE (args.Length (), 1 );
@@ -424,6 +461,7 @@ void BindingData::CreatePerIsolateProperties(IsolateData* isolate_data,
424
461
" getNearestParentPackageJSON" ,
425
462
GetNearestParentPackageJSON);
426
463
SetMethod (isolate, target, " getPackageScopeConfig" , GetPackageScopeConfig);
464
+ SetMethod (isolate, target, " getPackageJSONScripts" , GetPackageJSONScripts);
427
465
}
428
466
429
467
void BindingData::CreatePerContextProperties (Local<Object> target,
@@ -440,6 +478,7 @@ void BindingData::RegisterExternalReferences(
440
478
registry->Register (GetNearestParentPackageJSONType);
441
479
registry->Register (GetNearestParentPackageJSON);
442
480
registry->Register (GetPackageScopeConfig);
481
+ registry->Register (GetPackageJSONScripts);
443
482
}
444
483
445
484
} // namespace modules
0 commit comments