typescript-github-action-template 0.2.35 → 0.2.38

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.
@@ -799,6 +799,20 @@ export type AddedToProjectEvent = Node & {
799
799
  */
800
800
  projectColumnName: Scalars['String']['output'];
801
801
  };
802
+ /** Represents a 'added_to_project_v2' event on a given issue or pull request. */
803
+ export type AddedToProjectV2Event = Node & ProjectV2Event & {
804
+ __typename: 'AddedToProjectV2Event';
805
+ /** Identifies the actor who performed the event. */
806
+ actor?: Maybe<Actor>;
807
+ /** Identifies the date and time when the object was created. */
808
+ createdAt: Scalars['DateTime']['output'];
809
+ /** The Node ID of the AddedToProjectV2Event object */
810
+ id: Scalars['ID']['output'];
811
+ /** Project referenced by event. */
812
+ project?: Maybe<ProjectV2>;
813
+ /** Did this event result from workflow automation? */
814
+ wasAutomated: Scalars['Boolean']['output'];
815
+ };
802
816
  /** An announcement banner for an enterprise or organization. */
803
817
  export type AnnouncementBanner = {
804
818
  __typename: 'AnnouncementBanner';
@@ -3507,6 +3521,20 @@ export type ConvertToDraftEvent = Node & UniformResourceLocatable & {
3507
3521
  /** The HTTP URL for this convert to draft event. */
3508
3522
  url: Scalars['URI']['output'];
3509
3523
  };
3524
+ /** Represents a 'converted_from_draft' event on a given issue or pull request. */
3525
+ export type ConvertedFromDraftEvent = Node & ProjectV2Event & {
3526
+ __typename: 'ConvertedFromDraftEvent';
3527
+ /** Identifies the actor who performed the event. */
3528
+ actor?: Maybe<Actor>;
3529
+ /** Identifies the date and time when the object was created. */
3530
+ createdAt: Scalars['DateTime']['output'];
3531
+ /** The Node ID of the ConvertedFromDraftEvent object */
3532
+ id: Scalars['ID']['output'];
3533
+ /** Project referenced by event. */
3534
+ project?: Maybe<ProjectV2>;
3535
+ /** Did this event result from workflow automation? */
3536
+ wasAutomated: Scalars['Boolean']['output'];
3537
+ };
3510
3538
  /** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
3511
3539
  export type ConvertedNoteToIssueEvent = Node & {
3512
3540
  __typename: 'ConvertedNoteToIssueEvent';
@@ -3543,6 +3571,21 @@ export type ConvertedToDiscussionEvent = Node & {
3543
3571
  /** The Node ID of the ConvertedToDiscussionEvent object */
3544
3572
  id: Scalars['ID']['output'];
3545
3573
  };
3574
+ /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
3575
+ export type CopilotCodeReviewParameters = {
3576
+ __typename: 'CopilotCodeReviewParameters';
3577
+ /** Copilot automatically reviews draft pull requests before they are marked as ready for review. */
3578
+ reviewDraftPullRequests: Scalars['Boolean']['output'];
3579
+ /** Copilot automatically reviews each new push to the pull request. */
3580
+ reviewOnPush: Scalars['Boolean']['output'];
3581
+ };
3582
+ /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
3583
+ export type CopilotCodeReviewParametersInput = {
3584
+ /** Copilot automatically reviews draft pull requests before they are marked as ready for review. */
3585
+ reviewDraftPullRequests?: InputMaybe<Scalars['Boolean']['input']>;
3586
+ /** Copilot automatically reviews each new push to the pull request. */
3587
+ reviewOnPush?: InputMaybe<Scalars['Boolean']['input']>;
3588
+ };
3546
3589
  /** Copilot endpoint information */
3547
3590
  export type CopilotEndpoints = {
3548
3591
  __typename: 'CopilotEndpoints';
@@ -9346,6 +9389,10 @@ export type IssueDependenciesSummary = {
9346
9389
  blockedBy: Scalars['Int']['output'];
9347
9390
  /** Count of issues this issue is blocking */
9348
9391
  blocking: Scalars['Int']['output'];
9392
+ /** Total count of issues this issue is blocked by (open and closed) */
9393
+ totalBlockedBy: Scalars['Int']['output'];
9394
+ /** Total count of issues this issue is blocking (open and closed) */
9395
+ totalBlocking: Scalars['Int']['output'];
9349
9396
  };
9350
9397
  /** Ordering options issue dependencies */
9351
9398
  export type IssueDependencyOrder = {
@@ -9493,7 +9540,7 @@ export type IssueTimelineItemEdge = {
9493
9540
  node?: Maybe<IssueTimelineItem>;
9494
9541
  };
9495
9542
  /** An item in an issue timeline */
9496
- export type IssueTimelineItems = AddedToProjectEvent | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ReferencedEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
9543
+ export type IssueTimelineItems = AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | ReferencedEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
9497
9544
  /** The connection type for IssueTimelineItems. */
9498
9545
  export type IssueTimelineItemsConnection = {
9499
9546
  __typename: 'IssueTimelineItemsConnection';
@@ -9524,6 +9571,8 @@ export type IssueTimelineItemsEdge = {
9524
9571
  export type IssueTimelineItemsItemType =
9525
9572
  /** Represents a 'added_to_project' event on a given issue or pull request. */
9526
9573
  'ADDED_TO_PROJECT_EVENT'
9574
+ /** Represents a 'added_to_project_v2' event on a given issue or pull request. */
9575
+ | 'ADDED_TO_PROJECT_V2_EVENT'
9527
9576
  /** Represents an 'assigned' event on any assignable object. */
9528
9577
  | 'ASSIGNED_EVENT'
9529
9578
  /** Represents a 'blocked_by_added' event on a given issue. */
@@ -9540,6 +9589,8 @@ export type IssueTimelineItemsItemType =
9540
9589
  | 'COMMENT_DELETED_EVENT'
9541
9590
  /** Represents a 'connected' event on a given issue or pull request. */
9542
9591
  | 'CONNECTED_EVENT'
9592
+ /** Represents a 'converted_from_draft' event on a given issue or pull request. */
9593
+ | 'CONVERTED_FROM_DRAFT_EVENT'
9543
9594
  /** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
9544
9595
  | 'CONVERTED_NOTE_TO_ISSUE_EVENT'
9545
9596
  /** Represents a 'converted_to_discussion' event on a given issue. */
@@ -9576,10 +9627,14 @@ export type IssueTimelineItemsItemType =
9576
9627
  | 'PARENT_ISSUE_REMOVED_EVENT'
9577
9628
  /** Represents a 'pinned' event on a given issue or pull request. */
9578
9629
  | 'PINNED_EVENT'
9630
+ /** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
9631
+ | 'PROJECT_V2_ITEM_STATUS_CHANGED_EVENT'
9579
9632
  /** Represents a 'referenced' event on a given `ReferencedSubject`. */
9580
9633
  | 'REFERENCED_EVENT'
9581
9634
  /** Represents a 'removed_from_project' event on a given issue or pull request. */
9582
9635
  | 'REMOVED_FROM_PROJECT_EVENT'
9636
+ /** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
9637
+ | 'REMOVED_FROM_PROJECT_V2_EVENT'
9583
9638
  /** Represents a 'renamed' event on a given issue or pull request */
9584
9639
  | 'RENAMED_TITLE_EVENT'
9585
9640
  /** Represents a 'reopened' event on any `Closable`. */
@@ -18530,6 +18585,13 @@ export type ProjectV2Edge = {
18530
18585
  /** The item at the end of the edge. */
18531
18586
  node?: Maybe<ProjectV2>;
18532
18587
  };
18588
+ /** Represents an event related to a project on the timeline of an issue or pull request. */
18589
+ export type ProjectV2Event = {
18590
+ /** Project referenced by event. */
18591
+ project?: Maybe<ProjectV2>;
18592
+ /** Did this event result from workflow automation? */
18593
+ wasAutomated: Scalars['Boolean']['output'];
18594
+ };
18533
18595
  /** A field inside a project. */
18534
18596
  export type ProjectV2Field = Node & ProjectV2FieldCommon & {
18535
18597
  __typename: 'ProjectV2Field';
@@ -18997,6 +19059,24 @@ export type ProjectV2ItemOrder = {
18997
19059
  export type ProjectV2ItemOrderField =
18998
19060
  /** Order project v2 items by the their position in the project */
18999
19061
  'POSITION';
19062
+ /** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
19063
+ export type ProjectV2ItemStatusChangedEvent = Node & ProjectV2Event & {
19064
+ __typename: 'ProjectV2ItemStatusChangedEvent';
19065
+ /** Identifies the actor who performed the event. */
19066
+ actor?: Maybe<Actor>;
19067
+ /** Identifies the date and time when the object was created. */
19068
+ createdAt: Scalars['DateTime']['output'];
19069
+ /** The Node ID of the ProjectV2ItemStatusChangedEvent object */
19070
+ id: Scalars['ID']['output'];
19071
+ /** The previous status of the project item. */
19072
+ previousStatus: Scalars['String']['output'];
19073
+ /** Project referenced by event. */
19074
+ project?: Maybe<ProjectV2>;
19075
+ /** The new status of the project item. */
19076
+ status: Scalars['String']['output'];
19077
+ /** Did this event result from workflow automation? */
19078
+ wasAutomated: Scalars['Boolean']['output'];
19079
+ };
19000
19080
  /** The type of a project item. */
19001
19081
  export type ProjectV2ItemType =
19002
19082
  /** Draft Issue */
@@ -20778,7 +20858,7 @@ export type PullRequestTimelineItemEdge = {
20778
20858
  node?: Maybe<PullRequestTimelineItem>;
20779
20859
  };
20780
20860
  /** An item in a pull request timeline */
20781
- export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
20861
+ export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
20782
20862
  /** The connection type for PullRequestTimelineItems. */
20783
20863
  export type PullRequestTimelineItemsConnection = {
20784
20864
  __typename: 'PullRequestTimelineItemsConnection';
@@ -20811,6 +20891,8 @@ export type PullRequestTimelineItemsItemType =
20811
20891
  'ADDED_TO_MERGE_QUEUE_EVENT'
20812
20892
  /** Represents a 'added_to_project' event on a given issue or pull request. */
20813
20893
  | 'ADDED_TO_PROJECT_EVENT'
20894
+ /** Represents a 'added_to_project_v2' event on a given issue or pull request. */
20895
+ | 'ADDED_TO_PROJECT_V2_EVENT'
20814
20896
  /** Represents an 'assigned' event on any assignable object. */
20815
20897
  | 'ASSIGNED_EVENT'
20816
20898
  /** Represents a 'automatic_base_change_failed' event on a given pull request. */
@@ -20845,6 +20927,8 @@ export type PullRequestTimelineItemsItemType =
20845
20927
  | 'COMMENT_DELETED_EVENT'
20846
20928
  /** Represents a 'connected' event on a given issue or pull request. */
20847
20929
  | 'CONNECTED_EVENT'
20930
+ /** Represents a 'converted_from_draft' event on a given issue or pull request. */
20931
+ | 'CONVERTED_FROM_DRAFT_EVENT'
20848
20932
  /** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
20849
20933
  | 'CONVERTED_NOTE_TO_ISSUE_EVENT'
20850
20934
  /** Represents a 'converted_to_discussion' event on a given issue. */
@@ -20895,6 +20979,8 @@ export type PullRequestTimelineItemsItemType =
20895
20979
  | 'PARENT_ISSUE_REMOVED_EVENT'
20896
20980
  /** Represents a 'pinned' event on a given issue or pull request. */
20897
20981
  | 'PINNED_EVENT'
20982
+ /** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
20983
+ | 'PROJECT_V2_ITEM_STATUS_CHANGED_EVENT'
20898
20984
  /** Represents a Git commit part of a pull request. */
20899
20985
  | 'PULL_REQUEST_COMMIT'
20900
20986
  /** Represents a commit comment thread part of a pull request. */
@@ -20913,6 +20999,8 @@ export type PullRequestTimelineItemsItemType =
20913
20999
  | 'REMOVED_FROM_MERGE_QUEUE_EVENT'
20914
21000
  /** Represents a 'removed_from_project' event on a given issue or pull request. */
20915
21001
  | 'REMOVED_FROM_PROJECT_EVENT'
21002
+ /** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
21003
+ | 'REMOVED_FROM_PROJECT_V2_EVENT'
20916
21004
  /** Represents a 'renamed' event on a given issue or pull request */
20917
21005
  | 'RENAMED_TITLE_EVENT'
20918
21006
  /** Represents a 'reopened' event on any `Closable`. */
@@ -22078,6 +22166,20 @@ export type RemovedFromProjectEvent = Node & {
22078
22166
  */
22079
22167
  projectColumnName: Scalars['String']['output'];
22080
22168
  };
22169
+ /** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
22170
+ export type RemovedFromProjectV2Event = Node & ProjectV2Event & {
22171
+ __typename: 'RemovedFromProjectV2Event';
22172
+ /** Identifies the actor who performed the event. */
22173
+ actor?: Maybe<Actor>;
22174
+ /** Identifies the date and time when the object was created. */
22175
+ createdAt: Scalars['DateTime']['output'];
22176
+ /** The Node ID of the RemovedFromProjectV2Event object */
22177
+ id: Scalars['ID']['output'];
22178
+ /** Project referenced by event. */
22179
+ project?: Maybe<ProjectV2>;
22180
+ /** Did this event result from workflow automation? */
22181
+ wasAutomated: Scalars['Boolean']['output'];
22182
+ };
22081
22183
  /** Represents a 'renamed' event on a given issue or pull request */
22082
22184
  export type RenamedTitleEvent = Node & {
22083
22185
  __typename: 'RenamedTitleEvent';
@@ -25508,6 +25610,8 @@ export type RepositoryRuleType =
25508
25610
  | 'COMMIT_AUTHOR_EMAIL_PATTERN'
25509
25611
  /** Commit message pattern */
25510
25612
  | 'COMMIT_MESSAGE_PATTERN'
25613
+ /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
25614
+ | 'COPILOT_CODE_REVIEW'
25511
25615
  /** Only allow users with bypass permission to create matching refs. */
25512
25616
  | 'CREATION'
25513
25617
  /** Only allow users with bypass permissions to delete matching refs. */
@@ -26475,7 +26579,7 @@ export type RuleEnforcement =
26475
26579
  */
26476
26580
  | 'EVALUATE';
26477
26581
  /** Types which can be parameters for `RepositoryRule` objects. */
26478
- export type RuleParameters = BranchNamePatternParameters | CodeScanningParameters | CommitAuthorEmailPatternParameters | CommitMessagePatternParameters | CommitterEmailPatternParameters | FileExtensionRestrictionParameters | FilePathRestrictionParameters | MaxFilePathLengthParameters | MaxFileSizeParameters | MergeQueueParameters | PullRequestParameters | RequiredDeploymentsParameters | RequiredStatusChecksParameters | TagNamePatternParameters | UpdateParameters | WorkflowsParameters;
26582
+ export type RuleParameters = BranchNamePatternParameters | CodeScanningParameters | CommitAuthorEmailPatternParameters | CommitMessagePatternParameters | CommitterEmailPatternParameters | CopilotCodeReviewParameters | FileExtensionRestrictionParameters | FilePathRestrictionParameters | MaxFilePathLengthParameters | MaxFileSizeParameters | MergeQueueParameters | PullRequestParameters | RequiredDeploymentsParameters | RequiredStatusChecksParameters | TagNamePatternParameters | UpdateParameters | WorkflowsParameters;
26479
26583
  /** Specifies the parameters for a `RepositoryRule` object. Only one of the fields should be specified. */
26480
26584
  export type RuleParametersInput = {
26481
26585
  /** Parameters used for the `branch_name_pattern` rule type */
@@ -26488,6 +26592,8 @@ export type RuleParametersInput = {
26488
26592
  commitMessagePattern?: InputMaybe<CommitMessagePatternParametersInput>;
26489
26593
  /** Parameters used for the `committer_email_pattern` rule type */
26490
26594
  committerEmailPattern?: InputMaybe<CommitterEmailPatternParametersInput>;
26595
+ /** Parameters used for the `copilot_code_review` rule type */
26596
+ copilotCodeReview?: InputMaybe<CopilotCodeReviewParametersInput>;
26491
26597
  /** Parameters used for the `file_extension_restriction` rule type */
26492
26598
  fileExtensionRestriction?: InputMaybe<FileExtensionRestrictionParametersInput>;
26493
26599
  /** Parameters used for the `file_path_restriction` rule type */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.35",
3
+ "version": "0.2.38",
4
4
  "description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.js",
@@ -32,8 +32,8 @@
32
32
  "@eslint/js": "^9.2.0",
33
33
  "@graphql-codegen/cli": "6.0.0",
34
34
  "@graphql-codegen/near-operation-file-preset": "^3.0.0",
35
- "@graphql-codegen/typescript": "5.0.0",
36
- "@graphql-codegen/typescript-document-nodes": "5.0.0",
35
+ "@graphql-codegen/typescript": "5.0.2",
36
+ "@graphql-codegen/typescript-document-nodes": "5.0.2",
37
37
  "@serverless-guru/prettier-plugin-import-order": "^0.4.2",
38
38
  "@types/node": "^24.0.0",
39
39
  "@typescript-eslint/eslint-plugin": "^8.0.0",