Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a1db7729b3 | ||
|
|
ce52669395 | ||
|
|
5903de3096 | ||
|
|
6ad9236846 | ||
|
|
22c47cfe58 | ||
|
|
ccd245ac4a | ||
|
|
a95f7769a9 | ||
|
|
f6e2c64014 | ||
|
|
d2a2dc3947 | ||
|
|
bf543cc70a | ||
|
|
aeb6b8e80f | ||
|
|
994661fbb1 | ||
|
|
980248f116 | ||
|
|
467bfeecee | ||
|
|
6e7707e6df | ||
|
|
f8531e82c6 |
7
.checkov.yml
Normal file
7
.checkov.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# See: https://www.checkov.io/1.Welcome/Quick%20Start.html
|
||||||
|
|
||||||
|
compact: true
|
||||||
|
quiet: true
|
||||||
|
skip-path:
|
||||||
|
- coverage
|
||||||
|
- node_modules
|
||||||
4
.github/workflows/check-dist.yml
vendored
4
.github/workflows/check-dist.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
id: setup-node
|
id: setup-node
|
||||||
uses: actions/setup-node@v5
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version-file: .node-version
|
node-version-file: .node-version
|
||||||
cache: npm
|
cache: npm
|
||||||
@@ -66,7 +66,7 @@ jobs:
|
|||||||
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
|
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
|
||||||
name: Upload Artifact
|
name: Upload Artifact
|
||||||
id: upload
|
id: upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
path: dist/
|
path: dist/
|
||||||
|
|||||||
6
.github/workflows/codeql-analysis.yml
vendored
6
.github/workflows/codeql-analysis.yml
vendored
@@ -34,15 +34,15 @@ jobs:
|
|||||||
|
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
id: initialize
|
id: initialize
|
||||||
uses: github/codeql-action/init@v3
|
uses: github/codeql-action/init@v4
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
source-root: src
|
source-root: src
|
||||||
|
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
id: autobuild
|
id: autobuild
|
||||||
uses: github/codeql-action/autobuild@v3
|
uses: github/codeql-action/autobuild@v4
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
id: analyze
|
id: analyze
|
||||||
uses: github/codeql-action/analyze@v3
|
uses: github/codeql-action/analyze@v4
|
||||||
|
|||||||
2
.github/workflows/continuous-integration.yml
vendored
2
.github/workflows/continuous-integration.yml
vendored
@@ -22,7 +22,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
id: setup-node
|
id: setup-node
|
||||||
uses: actions/setup-node@v5
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version-file: .node-version
|
node-version-file: .node-version
|
||||||
cache: npm
|
cache: npm
|
||||||
|
|||||||
2
.github/workflows/licensed.yml
vendored
2
.github/workflows/licensed.yml
vendored
@@ -28,7 +28,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
id: setup-node
|
id: setup-node
|
||||||
uses: actions/setup-node@v5
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version-file: .node-version
|
node-version-file: .node-version
|
||||||
cache: npm
|
cache: npm
|
||||||
|
|||||||
8
.github/workflows/linter.yml
vendored
8
.github/workflows/linter.yml
vendored
@@ -1,3 +1,8 @@
|
|||||||
|
# This workflow will lint the entire codebase using the
|
||||||
|
# `super-linter/super-linter` action.
|
||||||
|
#
|
||||||
|
# For more information, see the super-linter repository:
|
||||||
|
# https://github.com/super-linter/super-linter
|
||||||
name: Lint Codebase
|
name: Lint Codebase
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@@ -27,7 +32,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
id: setup-node
|
id: setup-node
|
||||||
uses: actions/setup-node@v5
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version-file: .node-version
|
node-version-file: .node-version
|
||||||
cache: npm
|
cache: npm
|
||||||
@@ -40,6 +45,7 @@ jobs:
|
|||||||
id: super-linter
|
id: super-linter
|
||||||
uses: super-linter/super-linter/slim@v8
|
uses: super-linter/super-linter/slim@v8
|
||||||
env:
|
env:
|
||||||
|
CHECKOV_FILE_NAME: .checkov.yml
|
||||||
DEFAULT_BRANCH: main
|
DEFAULT_BRANCH: main
|
||||||
FILTER_REGEX_EXCLUDE: dist/**/*
|
FILTER_REGEX_EXCLUDE: dist/**/*
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@@ -48,11 +48,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/first-interaction@v3
|
- uses: actions/first-interaction@v3
|
||||||
with:
|
with:
|
||||||
issue-message: |
|
issue_message: |
|
||||||
# Issue Message with Markdown
|
# Issue Message with Markdown
|
||||||
|
|
||||||
This is the message that will be displayed!
|
This is the message that will be displayed!
|
||||||
pr-message: |
|
pr_message: |
|
||||||
# PR Message with Markdown
|
# PR Message with Markdown
|
||||||
|
|
||||||
This is the message that will be displayed!
|
This is the message that will be displayed!
|
||||||
|
|||||||
69
dist/index.js
generated
vendored
69
dist/index.js
generated
vendored
@@ -1,7 +1,7 @@
|
|||||||
import require$$0 from 'os';
|
import require$$0 from 'os';
|
||||||
import require$$0$1 from 'crypto';
|
import require$$0$1 from 'crypto';
|
||||||
import require$$1 from 'fs';
|
import require$$1 from 'fs';
|
||||||
import require$$1$5 from 'path';
|
import require$$1$4 from 'path';
|
||||||
import require$$2$1 from 'http';
|
import require$$2$1 from 'http';
|
||||||
import require$$3$1 from 'https';
|
import require$$3$1 from 'https';
|
||||||
import require$$0$4 from 'net';
|
import require$$0$4 from 'net';
|
||||||
@@ -13,18 +13,16 @@ import require$$0$5 from 'stream';
|
|||||||
import require$$7 from 'buffer';
|
import require$$7 from 'buffer';
|
||||||
import require$$8 from 'querystring';
|
import require$$8 from 'querystring';
|
||||||
import require$$14 from 'stream/web';
|
import require$$14 from 'stream/web';
|
||||||
import require$$0$7 from 'node:stream';
|
import { createRequire } from 'node:module';
|
||||||
import require$$1$2 from 'node:util';
|
import require$$0$6 from 'worker_threads';
|
||||||
import require$$0$6 from 'node:events';
|
|
||||||
import require$$0$8 from 'worker_threads';
|
|
||||||
import require$$2$2 from 'perf_hooks';
|
import require$$2$2 from 'perf_hooks';
|
||||||
import require$$5 from 'util/types';
|
import require$$5 from 'util/types';
|
||||||
import require$$4$2 from 'async_hooks';
|
import require$$4$2 from 'async_hooks';
|
||||||
import require$$1$3 from 'console';
|
import require$$1$2 from 'console';
|
||||||
import require$$1$4 from 'url';
|
import require$$1$3 from 'url';
|
||||||
import require$$3$2 from 'zlib';
|
import require$$3$2 from 'zlib';
|
||||||
import require$$6 from 'string_decoder';
|
import require$$6 from 'string_decoder';
|
||||||
import require$$0$9 from 'diagnostics_channel';
|
import require$$0$7 from 'diagnostics_channel';
|
||||||
import require$$2$3 from 'child_process';
|
import require$$2$3 from 'child_process';
|
||||||
import require$$6$1 from 'timers';
|
import require$$6$1 from 'timers';
|
||||||
|
|
||||||
@@ -1753,6 +1751,15 @@ function requireTimers () {
|
|||||||
|
|
||||||
var main = {exports: {}};
|
var main = {exports: {}};
|
||||||
|
|
||||||
|
const require$3 = createRequire(import.meta.url);
|
||||||
|
function __require$2() { return require$3("node:stream"); }
|
||||||
|
|
||||||
|
const require$2 = createRequire(import.meta.url);
|
||||||
|
function __require$1() { return require$2("node:util"); }
|
||||||
|
|
||||||
|
const require$1 = createRequire(import.meta.url);
|
||||||
|
function __require() { return require$1("node:events"); }
|
||||||
|
|
||||||
var sbmh;
|
var sbmh;
|
||||||
var hasRequiredSbmh;
|
var hasRequiredSbmh;
|
||||||
|
|
||||||
@@ -1786,8 +1793,8 @@ function requireSbmh () {
|
|||||||
* Based heavily on the Streaming Boyer-Moore-Horspool C++ implementation
|
* Based heavily on the Streaming Boyer-Moore-Horspool C++ implementation
|
||||||
* by Hongli Lai at: https://github.com/FooBarWidget/boyer-moore-horspool
|
* by Hongli Lai at: https://github.com/FooBarWidget/boyer-moore-horspool
|
||||||
*/
|
*/
|
||||||
const EventEmitter = require$$0$6.EventEmitter;
|
const EventEmitter = __require().EventEmitter;
|
||||||
const inherits = require$$1$2.inherits;
|
const inherits = __require$1().inherits;
|
||||||
|
|
||||||
function SBMH (needle) {
|
function SBMH (needle) {
|
||||||
if (typeof needle === 'string') {
|
if (typeof needle === 'string') {
|
||||||
@@ -1996,8 +2003,8 @@ function requirePartStream () {
|
|||||||
if (hasRequiredPartStream) return PartStream_1;
|
if (hasRequiredPartStream) return PartStream_1;
|
||||||
hasRequiredPartStream = 1;
|
hasRequiredPartStream = 1;
|
||||||
|
|
||||||
const inherits = require$$1$2.inherits;
|
const inherits = __require$1().inherits;
|
||||||
const ReadableStream = require$$0$7.Readable;
|
const ReadableStream = __require$2().Readable;
|
||||||
|
|
||||||
function PartStream (opts) {
|
function PartStream (opts) {
|
||||||
ReadableStream.call(this, opts);
|
ReadableStream.call(this, opts);
|
||||||
@@ -2041,8 +2048,8 @@ function requireHeaderParser () {
|
|||||||
if (hasRequiredHeaderParser) return HeaderParser_1;
|
if (hasRequiredHeaderParser) return HeaderParser_1;
|
||||||
hasRequiredHeaderParser = 1;
|
hasRequiredHeaderParser = 1;
|
||||||
|
|
||||||
const EventEmitter = require$$0$6.EventEmitter;
|
const EventEmitter = __require().EventEmitter;
|
||||||
const inherits = require$$1$2.inherits;
|
const inherits = __require$1().inherits;
|
||||||
const getLimit = requireGetLimit();
|
const getLimit = requireGetLimit();
|
||||||
|
|
||||||
const StreamSearch = requireSbmh();
|
const StreamSearch = requireSbmh();
|
||||||
@@ -2149,8 +2156,8 @@ function requireDicer () {
|
|||||||
if (hasRequiredDicer) return Dicer_1;
|
if (hasRequiredDicer) return Dicer_1;
|
||||||
hasRequiredDicer = 1;
|
hasRequiredDicer = 1;
|
||||||
|
|
||||||
const WritableStream = require$$0$7.Writable;
|
const WritableStream = __require$2().Writable;
|
||||||
const inherits = require$$1$2.inherits;
|
const inherits = __require$1().inherits;
|
||||||
|
|
||||||
const StreamSearch = requireSbmh();
|
const StreamSearch = requireSbmh();
|
||||||
|
|
||||||
@@ -2726,8 +2733,8 @@ function requireMultipart () {
|
|||||||
// * support limits.fieldNameSize
|
// * support limits.fieldNameSize
|
||||||
// -- this will require modifications to utils.parseParams
|
// -- this will require modifications to utils.parseParams
|
||||||
|
|
||||||
const { Readable } = require$$0$7;
|
const { Readable } = __require$2();
|
||||||
const { inherits } = require$$1$2;
|
const { inherits } = __require$1();
|
||||||
|
|
||||||
const Dicer = requireDicer();
|
const Dicer = requireDicer();
|
||||||
|
|
||||||
@@ -3292,8 +3299,8 @@ function requireMain () {
|
|||||||
if (hasRequiredMain) return main.exports;
|
if (hasRequiredMain) return main.exports;
|
||||||
hasRequiredMain = 1;
|
hasRequiredMain = 1;
|
||||||
|
|
||||||
const WritableStream = require$$0$7.Writable;
|
const WritableStream = __require$2().Writable;
|
||||||
const { inherits } = require$$1$2;
|
const { inherits } = __require$1();
|
||||||
const Dicer = requireDicer();
|
const Dicer = requireDicer();
|
||||||
|
|
||||||
const MultipartParser = requireMultipart();
|
const MultipartParser = requireMultipart();
|
||||||
@@ -3385,7 +3392,7 @@ function requireConstants$3 () {
|
|||||||
if (hasRequiredConstants$3) return constants$3;
|
if (hasRequiredConstants$3) return constants$3;
|
||||||
hasRequiredConstants$3 = 1;
|
hasRequiredConstants$3 = 1;
|
||||||
|
|
||||||
const { MessageChannel, receiveMessageOnPort } = require$$0$8;
|
const { MessageChannel, receiveMessageOnPort } = require$$0$6;
|
||||||
|
|
||||||
const corsSafeListedMethods = ['GET', 'HEAD', 'POST'];
|
const corsSafeListedMethods = ['GET', 'HEAD', 'POST'];
|
||||||
const corsSafeListedMethodsSet = new Set(corsSafeListedMethods);
|
const corsSafeListedMethodsSet = new Set(corsSafeListedMethods);
|
||||||
@@ -14141,7 +14148,7 @@ function requirePendingInterceptorsFormatter () {
|
|||||||
hasRequiredPendingInterceptorsFormatter = 1;
|
hasRequiredPendingInterceptorsFormatter = 1;
|
||||||
|
|
||||||
const { Transform } = require$$0$5;
|
const { Transform } = require$$0$5;
|
||||||
const { Console } = require$$1$3;
|
const { Console } = require$$1$2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the output of `console.table(…)` as a string.
|
* Gets the output of `console.table(…)` as a string.
|
||||||
@@ -14368,7 +14375,7 @@ function requireProxyAgent () {
|
|||||||
hasRequiredProxyAgent = 1;
|
hasRequiredProxyAgent = 1;
|
||||||
|
|
||||||
const { kProxy, kClose, kDestroy, kInterceptors } = requireSymbols$4();
|
const { kProxy, kClose, kDestroy, kInterceptors } = requireSymbols$4();
|
||||||
const { URL } = require$$1$4;
|
const { URL } = require$$1$3;
|
||||||
const Agent = requireAgent();
|
const Agent = requireAgent();
|
||||||
const Pool = requirePool();
|
const Pool = requirePool();
|
||||||
const DispatcherBase = requireDispatcherBase();
|
const DispatcherBase = requireDispatcherBase();
|
||||||
@@ -22318,7 +22325,7 @@ function requireEvents () {
|
|||||||
|
|
||||||
const { webidl } = requireWebidl();
|
const { webidl } = requireWebidl();
|
||||||
const { kEnumerableProperty } = requireUtil$6();
|
const { kEnumerableProperty } = requireUtil$6();
|
||||||
const { MessagePort } = require$$0$8;
|
const { MessagePort } = require$$0$6;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see https://html.spec.whatwg.org/multipage/comms.html#messageevent
|
* @see https://html.spec.whatwg.org/multipage/comms.html#messageevent
|
||||||
@@ -22835,7 +22842,7 @@ function requireConnection () {
|
|||||||
if (hasRequiredConnection) return connection;
|
if (hasRequiredConnection) return connection;
|
||||||
hasRequiredConnection = 1;
|
hasRequiredConnection = 1;
|
||||||
|
|
||||||
const diagnosticsChannel = require$$0$9;
|
const diagnosticsChannel = require$$0$7;
|
||||||
const { uid, states } = requireConstants();
|
const { uid, states } = requireConstants();
|
||||||
const {
|
const {
|
||||||
kReadyState,
|
kReadyState,
|
||||||
@@ -23216,7 +23223,7 @@ function requireReceiver () {
|
|||||||
hasRequiredReceiver = 1;
|
hasRequiredReceiver = 1;
|
||||||
|
|
||||||
const { Writable } = require$$0$5;
|
const { Writable } = require$$0$5;
|
||||||
const diagnosticsChannel = require$$0$9;
|
const diagnosticsChannel = require$$0$7;
|
||||||
const { parserStates, opcodes, states, emptyBuffer } = requireConstants();
|
const { parserStates, opcodes, states, emptyBuffer } = requireConstants();
|
||||||
const { kReadyState, kSentClose, kResponse, kReceivedClose } = requireSymbols();
|
const { kReadyState, kSentClose, kResponse, kReceivedClose } = requireSymbols();
|
||||||
const { isValidStatusCode, failWebsocketConnection, websocketMessageReceived } = requireUtil();
|
const { isValidStatusCode, failWebsocketConnection, websocketMessageReceived } = requireUtil();
|
||||||
@@ -25539,7 +25546,7 @@ function requirePathUtils () {
|
|||||||
};
|
};
|
||||||
Object.defineProperty(pathUtils, "__esModule", { value: true });
|
Object.defineProperty(pathUtils, "__esModule", { value: true });
|
||||||
pathUtils.toPlatformPath = pathUtils.toWin32Path = pathUtils.toPosixPath = void 0;
|
pathUtils.toPlatformPath = pathUtils.toWin32Path = pathUtils.toPosixPath = void 0;
|
||||||
const path = __importStar(require$$1$5);
|
const path = __importStar(require$$1$4);
|
||||||
/**
|
/**
|
||||||
* toPosixPath converts the given path to the posix form. On Windows, \\ will be
|
* toPosixPath converts the given path to the posix form. On Windows, \\ will be
|
||||||
* replaced with /.
|
* replaced with /.
|
||||||
@@ -25626,7 +25633,7 @@ function requireIoUtil () {
|
|||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.getCmdPath = exports.tryGetExecutablePath = exports.isRooted = exports.isDirectory = exports.exists = exports.READONLY = exports.UV_FS_O_EXLOCK = exports.IS_WINDOWS = exports.unlink = exports.symlink = exports.stat = exports.rmdir = exports.rm = exports.rename = exports.readlink = exports.readdir = exports.open = exports.mkdir = exports.lstat = exports.copyFile = exports.chmod = void 0;
|
exports.getCmdPath = exports.tryGetExecutablePath = exports.isRooted = exports.isDirectory = exports.exists = exports.READONLY = exports.UV_FS_O_EXLOCK = exports.IS_WINDOWS = exports.unlink = exports.symlink = exports.stat = exports.rmdir = exports.rm = exports.rename = exports.readlink = exports.readdir = exports.open = exports.mkdir = exports.lstat = exports.copyFile = exports.chmod = void 0;
|
||||||
const fs = __importStar(require$$1);
|
const fs = __importStar(require$$1);
|
||||||
const path = __importStar(require$$1$5);
|
const path = __importStar(require$$1$4);
|
||||||
_a = fs.promises
|
_a = fs.promises
|
||||||
// export const {open} = 'fs'
|
// export const {open} = 'fs'
|
||||||
, exports.chmod = _a.chmod, exports.copyFile = _a.copyFile, exports.lstat = _a.lstat, exports.mkdir = _a.mkdir, exports.open = _a.open, exports.readdir = _a.readdir, exports.readlink = _a.readlink, exports.rename = _a.rename, exports.rm = _a.rm, exports.rmdir = _a.rmdir, exports.stat = _a.stat, exports.symlink = _a.symlink, exports.unlink = _a.unlink;
|
, exports.chmod = _a.chmod, exports.copyFile = _a.copyFile, exports.lstat = _a.lstat, exports.mkdir = _a.mkdir, exports.open = _a.open, exports.readdir = _a.readdir, exports.readlink = _a.readlink, exports.rename = _a.rename, exports.rm = _a.rm, exports.rmdir = _a.rmdir, exports.stat = _a.stat, exports.symlink = _a.symlink, exports.unlink = _a.unlink;
|
||||||
@@ -25816,7 +25823,7 @@ function requireIo () {
|
|||||||
Object.defineProperty(io, "__esModule", { value: true });
|
Object.defineProperty(io, "__esModule", { value: true });
|
||||||
io.findInPath = io.which = io.mkdirP = io.rmRF = io.mv = io.cp = void 0;
|
io.findInPath = io.which = io.mkdirP = io.rmRF = io.mv = io.cp = void 0;
|
||||||
const assert_1 = require$$0$3;
|
const assert_1 = require$$0$3;
|
||||||
const path = __importStar(require$$1$5);
|
const path = __importStar(require$$1$4);
|
||||||
const ioUtil = __importStar(requireIoUtil());
|
const ioUtil = __importStar(requireIoUtil());
|
||||||
/**
|
/**
|
||||||
* Copies a file or folder.
|
* Copies a file or folder.
|
||||||
@@ -26124,7 +26131,7 @@ function requireToolrunner () {
|
|||||||
const os = __importStar(require$$0);
|
const os = __importStar(require$$0);
|
||||||
const events = __importStar(require$$4$1);
|
const events = __importStar(require$$4$1);
|
||||||
const child = __importStar(require$$2$3);
|
const child = __importStar(require$$2$3);
|
||||||
const path = __importStar(require$$1$5);
|
const path = __importStar(require$$1$4);
|
||||||
const io = __importStar(requireIo());
|
const io = __importStar(requireIo());
|
||||||
const ioUtil = __importStar(requireIoUtil());
|
const ioUtil = __importStar(requireIoUtil());
|
||||||
const timers_1 = require$$6$1;
|
const timers_1 = require$$6$1;
|
||||||
@@ -26968,7 +26975,7 @@ function requireCore () {
|
|||||||
const file_command_1 = requireFileCommand();
|
const file_command_1 = requireFileCommand();
|
||||||
const utils_1 = requireUtils$3();
|
const utils_1 = requireUtils$3();
|
||||||
const os = __importStar(require$$0);
|
const os = __importStar(require$$0);
|
||||||
const path = __importStar(require$$1$5);
|
const path = __importStar(require$$1$4);
|
||||||
const oidc_utils_1 = requireOidcUtils();
|
const oidc_utils_1 = requireOidcUtils();
|
||||||
/**
|
/**
|
||||||
* The code to exit an action
|
* The code to exit an action
|
||||||
|
|||||||
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
636
package-lock.json
generated
636
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
18
package.json
18
package.json
@@ -45,17 +45,17 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/compat": "^1.4.0",
|
"@eslint/compat": "^1.4.0",
|
||||||
"@github/local-action": "^6.0.0",
|
"@github/local-action": "^6.0.2",
|
||||||
"@jest/globals": "^30.2.0",
|
"@jest/globals": "^30.2.0",
|
||||||
"@octokit/types": "^15.0.0",
|
"@octokit/types": "^15.0.0",
|
||||||
"@rollup/plugin-commonjs": "^28.0.6",
|
"@rollup/plugin-commonjs": "^28.0.9",
|
||||||
"@rollup/plugin-node-resolve": "^16.0.1",
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
||||||
"@rollup/plugin-typescript": "^12.1.4",
|
"@rollup/plugin-typescript": "^12.3.0",
|
||||||
"@types/jest": "^30.0.0",
|
"@types/jest": "^30.0.0",
|
||||||
"@types/node": "^24.6.2",
|
"@types/node": "^24.9.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.45.0",
|
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
||||||
"@typescript-eslint/parser": "^8.24.1",
|
"@typescript-eslint/parser": "^8.24.1",
|
||||||
"eslint": "^9.36.0",
|
"eslint": "^9.38.0",
|
||||||
"eslint-config-prettier": "^10.1.8",
|
"eslint-config-prettier": "^10.1.8",
|
||||||
"eslint-import-resolver-typescript": "^4.4.4",
|
"eslint-import-resolver-typescript": "^4.4.4",
|
||||||
"eslint-plugin-import": "^2.32.0",
|
"eslint-plugin-import": "^2.32.0",
|
||||||
@@ -66,8 +66,8 @@
|
|||||||
"make-coverage-badge": "^1.2.0",
|
"make-coverage-badge": "^1.2.0",
|
||||||
"prettier": "^3.6.2",
|
"prettier": "^3.6.2",
|
||||||
"prettier-eslint": "^16.4.2",
|
"prettier-eslint": "^16.4.2",
|
||||||
"rollup": "^4.52.4",
|
"rollup": "^4.52.5",
|
||||||
"ts-jest": "^29.4.4",
|
"ts-jest": "^29.4.5",
|
||||||
"ts-jest-resolver": "^2.0.1",
|
"ts-jest-resolver": "^2.0.1",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^5.9.3"
|
"typescript": "^5.9.3"
|
||||||
|
|||||||
Reference in New Issue
Block a user