#!/usr/bin/env perl

use strict;
use warnings;

use FindBin qw($Bin);
use lib "$Bin/../lib";

use Developer::Dashboard::CLI::Query qw(run_query_command);

# main(@ARGV)
# Runs the JSON query command for Developer Dashboard.
# Input: command-line arguments from @ARGV and optional STDIN.
# Output: prints the selected JSON value, then exits.
run_query_command( command => 'jq', args => \@ARGV );

__END__

=pod

=head1 NAME

jq - JSON query command for Developer Dashboard

=head1 SYNOPSIS

  dashboard jq [path] [file]

=head1 DESCRIPTION

This command provides JSON path extraction for Developer Dashboard.

=cut
