@sapphire/plugin-pattern-commands 6.0.3-next.73f41bb.0 → 6.0.3-next.7909d16.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/dist/cjs/index.cjs +21 -21
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/lib/structures/PatternCommandStore.cjs +2 -2
- package/dist/cjs/listeners/PluginCommandAccepted.cjs +6 -6
- package/dist/cjs/listeners/PluginMessageParse.cjs +2 -2
- package/dist/cjs/listeners/PluginPreCommandRun.cjs +6 -6
- package/dist/cjs/listeners/_load.cjs +6 -6
- package/dist/cjs/register.cjs +3 -3
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +6 -6
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
10
|
-
var
|
|
3
|
+
var PatternCommandStore_mjs = require('./lib/structures/PatternCommandStore.mjs');
|
|
4
|
+
var PatternCommand_mjs = require('./lib/structures/PatternCommand.mjs');
|
|
5
|
+
var PatternCommandEvents_mjs = require('./lib/utils/PatternCommandEvents.mjs');
|
|
6
|
+
var PatternCommandInterfaces_mjs = require('./lib/utils/PatternCommandInterfaces.mjs');
|
|
7
|
+
var PluginCommandAccepted_mjs = require('./listeners/PluginCommandAccepted.mjs');
|
|
8
|
+
var PluginMessageParse_mjs = require('./listeners/PluginMessageParse.mjs');
|
|
9
|
+
var PluginPreCommandRun_mjs = require('./listeners/PluginPreCommandRun.mjs');
|
|
10
|
+
var _load_mjs = require('./listeners/_load.mjs');
|
|
11
11
|
|
|
12
12
|
// src/index.ts
|
|
13
|
-
var version = "6.0.3-next.
|
|
13
|
+
var version = "6.0.3-next.7909d16.0";
|
|
14
14
|
|
|
15
15
|
Object.defineProperty(exports, "PluginPatternCommandsCommandAcceptedListener", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return PluginCommandAccepted_mjs.PluginListener; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "PluginPatternCommandsMessageParseListener", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return PluginMessageParse_mjs.PluginListener; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "PluginPatternCommandsPreCommandRunListener", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return PluginPreCommandRun_mjs.PluginListener; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "loadListeners", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return _load_mjs.loadListeners; }
|
|
30
30
|
});
|
|
31
31
|
exports.version = version;
|
|
32
|
-
Object.keys(
|
|
32
|
+
Object.keys(PatternCommandStore_mjs).forEach(function (k) {
|
|
33
33
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
34
34
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
35
|
+
get: function () { return PatternCommandStore_mjs[k]; }
|
|
36
36
|
});
|
|
37
37
|
});
|
|
38
|
-
Object.keys(
|
|
38
|
+
Object.keys(PatternCommand_mjs).forEach(function (k) {
|
|
39
39
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
40
40
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
41
|
+
get: function () { return PatternCommand_mjs[k]; }
|
|
42
42
|
});
|
|
43
43
|
});
|
|
44
|
-
Object.keys(
|
|
44
|
+
Object.keys(PatternCommandEvents_mjs).forEach(function (k) {
|
|
45
45
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
46
46
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
47
|
+
get: function () { return PatternCommandEvents_mjs[k]; }
|
|
48
48
|
});
|
|
49
49
|
});
|
|
50
|
-
Object.keys(
|
|
50
|
+
Object.keys(PatternCommandInterfaces_mjs).forEach(function (k) {
|
|
51
51
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
52
52
|
enumerable: true,
|
|
53
|
-
get: function () { return
|
|
53
|
+
get: function () { return PatternCommandInterfaces_mjs[k]; }
|
|
54
54
|
});
|
|
55
55
|
});
|
|
56
56
|
//# sourceMappingURL=out.js.map
|
package/dist/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"names":["PluginListener"],"mappings":";AAEA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,SAA2B,sBAAoD;AAC/E,SAA2B,kBAAlBA,uBAAmE;AAC5E,SAA2B,kBAAlBA,uBAAoE;AAE7E,SAAS,qBAAqB;AAevB,IAAM,UAAkB","sourcesContent":["import type { PatternCommandStore } from './lib/structures/PatternCommandStore';\n\nexport * from './lib/structures/PatternCommandStore';\nexport * from './lib/structures/PatternCommand';\nexport * from './lib/utils/PatternCommandEvents';\nexport * from './lib/utils/PatternCommandInterfaces';\nexport { PluginListener as PluginPatternCommandsCommandAcceptedListener } from './listeners/PluginCommandAccepted';\nexport { PluginListener as PluginPatternCommandsMessageParseListener } from './listeners/PluginMessageParse';\nexport { PluginListener as PluginPatternCommandsPreCommandRunListener } from './listeners/PluginPreCommandRun';\n\nexport { loadListeners } from './listeners/_load';\n\ndeclare module '@sapphire/pieces' {\n\tinterface StoreRegistryEntries {\n\t\t'pattern-commands': PatternCommandStore;\n\t}\n}\n\n/**\n * The [@sapphire/plugin-pattern-commands](https://github.com/sapphiredev/plugins/blob/main/packages/pattern-commands) version that you are currently using.\n * An example use of this is showing it of in a bot information command.\n *\n * Note to Sapphire developers: This needs to explicitly be `string` so it is not typed as the string that gets replaced by esbuild\n */\n// eslint-disable-next-line @typescript-eslint/no-inferrable-types\nexport const version: string = '6.0.3-next.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"names":["PluginListener"],"mappings":";AAEA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,SAA2B,sBAAoD;AAC/E,SAA2B,kBAAlBA,uBAAmE;AAC5E,SAA2B,kBAAlBA,uBAAoE;AAE7E,SAAS,qBAAqB;AAevB,IAAM,UAAkB","sourcesContent":["import type { PatternCommandStore } from './lib/structures/PatternCommandStore';\n\nexport * from './lib/structures/PatternCommandStore';\nexport * from './lib/structures/PatternCommand';\nexport * from './lib/utils/PatternCommandEvents';\nexport * from './lib/utils/PatternCommandInterfaces';\nexport { PluginListener as PluginPatternCommandsCommandAcceptedListener } from './listeners/PluginCommandAccepted';\nexport { PluginListener as PluginPatternCommandsMessageParseListener } from './listeners/PluginMessageParse';\nexport { PluginListener as PluginPatternCommandsPreCommandRunListener } from './listeners/PluginPreCommandRun';\n\nexport { loadListeners } from './listeners/_load';\n\ndeclare module '@sapphire/pieces' {\n\tinterface StoreRegistryEntries {\n\t\t'pattern-commands': PatternCommandStore;\n\t}\n}\n\n/**\n * The [@sapphire/plugin-pattern-commands](https://github.com/sapphiredev/plugins/blob/main/packages/pattern-commands) version that you are currently using.\n * An example use of this is showing it of in a bot information command.\n *\n * Note to Sapphire developers: This needs to explicitly be `string` so it is not typed as the string that gets replaced by esbuild\n */\n// eslint-disable-next-line @typescript-eslint/no-inferrable-types\nexport const version: string = '6.0.3-next.7909d16.0';\n"]}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var pieces = require('@sapphire/pieces');
|
|
4
|
-
var
|
|
4
|
+
var PatternCommand_mjs = require('./PatternCommand.mjs');
|
|
5
5
|
|
|
6
6
|
var __defProp = Object.defineProperty;
|
|
7
7
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
8
8
|
var _PatternCommandStore = class _PatternCommandStore extends pieces.AliasStore {
|
|
9
9
|
constructor() {
|
|
10
|
-
super(
|
|
10
|
+
super(PatternCommand_mjs.PatternCommand, { name: "pattern-commands" });
|
|
11
11
|
}
|
|
12
12
|
};
|
|
13
13
|
__name(_PatternCommandStore, "PatternCommandStore");
|
|
@@ -2,26 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
var framework = require('@sapphire/framework');
|
|
4
4
|
var stopwatch = require('@sapphire/stopwatch');
|
|
5
|
-
var
|
|
5
|
+
var PatternCommandEvents_mjs = require('../lib/utils/PatternCommandEvents.mjs');
|
|
6
6
|
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
9
9
|
var _PluginListener = class _PluginListener extends framework.Listener {
|
|
10
10
|
constructor(context) {
|
|
11
|
-
super(context, { event:
|
|
11
|
+
super(context, { event: PatternCommandEvents_mjs.PatternCommandEvents.CommandAccepted });
|
|
12
12
|
}
|
|
13
13
|
async run(payload) {
|
|
14
14
|
const { message, command } = payload;
|
|
15
15
|
const result = await framework.Result.fromAsync(async () => {
|
|
16
|
-
message.client.emit(
|
|
16
|
+
message.client.emit(PatternCommandEvents_mjs.PatternCommandEvents.CommandRun, message, command, payload);
|
|
17
17
|
const stopwatch$1 = new stopwatch.Stopwatch();
|
|
18
18
|
const result2 = await command.messageRun(message);
|
|
19
19
|
const { duration } = stopwatch$1.stop();
|
|
20
|
-
message.client.emit(
|
|
20
|
+
message.client.emit(PatternCommandEvents_mjs.PatternCommandEvents.CommandSuccess, { ...payload, result: result2, duration });
|
|
21
21
|
return duration;
|
|
22
22
|
});
|
|
23
|
-
result.inspectErr((error) => message.client.emit(
|
|
24
|
-
message.client.emit(
|
|
23
|
+
result.inspectErr((error) => message.client.emit(PatternCommandEvents_mjs.PatternCommandEvents.CommandError, error, { ...payload, duration: -1 }));
|
|
24
|
+
message.client.emit(PatternCommandEvents_mjs.PatternCommandEvents.CommandFinished, message, command, {
|
|
25
25
|
...payload,
|
|
26
26
|
success: result.isOk(),
|
|
27
27
|
duration: result.unwrapOr(-1)
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var discord_jsUtilities = require('@sapphire/discord.js-utilities');
|
|
4
4
|
var framework = require('@sapphire/framework');
|
|
5
5
|
var discord_js = require('discord.js');
|
|
6
|
-
var
|
|
6
|
+
var PatternCommandEvents_mjs = require('../lib/utils/PatternCommandEvents.mjs');
|
|
7
7
|
|
|
8
8
|
var __defProp = Object.defineProperty;
|
|
9
9
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
@@ -73,7 +73,7 @@ var _PluginListener = class _PluginListener extends framework.Listener {
|
|
|
73
73
|
const sortedPossiblePatternCommands = possiblePatternCommands.sort((first, second) => {
|
|
74
74
|
return second.weight - first.weight;
|
|
75
75
|
});
|
|
76
|
-
client.emit(
|
|
76
|
+
client.emit(PatternCommandEvents_mjs.PatternCommandEvents.PreCommandRun, { message, possibleCommands: sortedPossiblePatternCommands });
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
async canRunInChannel(message) {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var framework = require('@sapphire/framework');
|
|
4
|
-
var
|
|
4
|
+
var PatternCommandEvents_mjs = require('../lib/utils/PatternCommandEvents.mjs');
|
|
5
5
|
|
|
6
6
|
var __defProp = Object.defineProperty;
|
|
7
7
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
8
8
|
var _PluginListener = class _PluginListener extends framework.Listener {
|
|
9
9
|
constructor(context) {
|
|
10
|
-
super(context, { event:
|
|
10
|
+
super(context, { event: PatternCommandEvents_mjs.PatternCommandEvents.PreCommandRun });
|
|
11
11
|
}
|
|
12
12
|
async run(payload) {
|
|
13
13
|
const { message, possibleCommands } = payload;
|
|
@@ -24,19 +24,19 @@ var _PluginListener = class _PluginListener extends framework.Listener {
|
|
|
24
24
|
commandPayload
|
|
25
25
|
);
|
|
26
26
|
if (globalResult.isErr()) {
|
|
27
|
-
message.client.emit(
|
|
27
|
+
message.client.emit(PatternCommandEvents_mjs.PatternCommandEvents.CommandDenied, globalResult.unwrapErr(), commandPayload);
|
|
28
28
|
continue;
|
|
29
29
|
}
|
|
30
30
|
const localResult = await command.preconditions.messageRun(message, command, payload);
|
|
31
31
|
if (localResult.isErr()) {
|
|
32
|
-
message.client.emit(
|
|
32
|
+
message.client.emit(PatternCommandEvents_mjs.PatternCommandEvents.CommandDenied, localResult.unwrapErr(), commandPayload);
|
|
33
33
|
continue;
|
|
34
34
|
}
|
|
35
35
|
if (command.chance >= Math.round(Math.random() * 99) + 1) {
|
|
36
|
-
message.client.emit(
|
|
36
|
+
message.client.emit(PatternCommandEvents_mjs.PatternCommandEvents.CommandAccepted, commandPayload);
|
|
37
37
|
break;
|
|
38
38
|
} else {
|
|
39
|
-
message.client.emit(
|
|
39
|
+
message.client.emit(PatternCommandEvents_mjs.PatternCommandEvents.CommandNoLuck, commandPayload);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var pieces = require('@sapphire/pieces');
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
var
|
|
4
|
+
var PluginCommandAccepted_mjs = require('./PluginCommandAccepted.mjs');
|
|
5
|
+
var PluginMessageParse_mjs = require('./PluginMessageParse.mjs');
|
|
6
|
+
var PluginPreCommandRun_mjs = require('./PluginPreCommandRun.mjs');
|
|
7
7
|
|
|
8
8
|
var __defProp = Object.defineProperty;
|
|
9
9
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
10
10
|
function loadListeners() {
|
|
11
11
|
const store = "listeners";
|
|
12
|
-
void pieces.container.stores.loadPiece({ name: "PluginCommandAccepted", piece:
|
|
13
|
-
void pieces.container.stores.loadPiece({ name: "PluginMessageParse", piece:
|
|
14
|
-
void pieces.container.stores.loadPiece({ name: "PluginPreCommandRun", piece:
|
|
12
|
+
void pieces.container.stores.loadPiece({ name: "PluginCommandAccepted", piece: PluginCommandAccepted_mjs.PluginListener, store });
|
|
13
|
+
void pieces.container.stores.loadPiece({ name: "PluginMessageParse", piece: PluginMessageParse_mjs.PluginListener, store });
|
|
14
|
+
void pieces.container.stores.loadPiece({ name: "PluginPreCommandRun", piece: PluginPreCommandRun_mjs.PluginListener, store });
|
|
15
15
|
}
|
|
16
16
|
__name(loadListeners, "loadListeners");
|
|
17
17
|
|
package/dist/cjs/register.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var index_mjs = require('./index.mjs');
|
|
4
4
|
var framework = require('@sapphire/framework');
|
|
5
5
|
|
|
6
6
|
var __defProp = Object.defineProperty;
|
|
@@ -10,8 +10,8 @@ var _PatternCommandPlugin = class _PatternCommandPlugin extends framework.Plugin
|
|
|
10
10
|
* @since 1.0.0
|
|
11
11
|
*/
|
|
12
12
|
static [framework.postInitialization](_options) {
|
|
13
|
-
this.stores.register(new
|
|
14
|
-
|
|
13
|
+
this.stores.register(new index_mjs.PatternCommandStore());
|
|
14
|
+
index_mjs.loadListeners();
|
|
15
15
|
}
|
|
16
16
|
};
|
|
17
17
|
__name(_PatternCommandPlugin, "PatternCommandPlugin");
|
package/dist/esm/index.mjs
CHANGED
|
@@ -8,7 +8,7 @@ export { PluginListener as PluginPatternCommandsMessageParseListener } from './l
|
|
|
8
8
|
export { PluginListener as PluginPatternCommandsPreCommandRunListener } from './listeners/PluginPreCommandRun.mjs';
|
|
9
9
|
export { loadListeners } from './listeners/_load.mjs';
|
|
10
10
|
|
|
11
|
-
var version = "6.0.3-next.
|
|
11
|
+
var version = "6.0.3-next.7909d16.0";
|
|
12
12
|
|
|
13
13
|
export { version };
|
|
14
14
|
//# sourceMappingURL=out.js.map
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"names":["PluginListener"],"mappings":";;;AAEA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,SAA2B,sBAAoD;AAC/E,SAA2B,kBAAlBA,uBAAmE;AAC5E,SAA2B,kBAAlBA,uBAAoE;AAE7E,SAAS,qBAAqB;AAevB,IAAM,UAAkB","sourcesContent":["import type { PatternCommandStore } from './lib/structures/PatternCommandStore';\n\nexport * from './lib/structures/PatternCommandStore';\nexport * from './lib/structures/PatternCommand';\nexport * from './lib/utils/PatternCommandEvents';\nexport * from './lib/utils/PatternCommandInterfaces';\nexport { PluginListener as PluginPatternCommandsCommandAcceptedListener } from './listeners/PluginCommandAccepted';\nexport { PluginListener as PluginPatternCommandsMessageParseListener } from './listeners/PluginMessageParse';\nexport { PluginListener as PluginPatternCommandsPreCommandRunListener } from './listeners/PluginPreCommandRun';\n\nexport { loadListeners } from './listeners/_load';\n\ndeclare module '@sapphire/pieces' {\n\tinterface StoreRegistryEntries {\n\t\t'pattern-commands': PatternCommandStore;\n\t}\n}\n\n/**\n * The [@sapphire/plugin-pattern-commands](https://github.com/sapphiredev/plugins/blob/main/packages/pattern-commands) version that you are currently using.\n * An example use of this is showing it of in a bot information command.\n *\n * Note to Sapphire developers: This needs to explicitly be `string` so it is not typed as the string that gets replaced by esbuild\n */\n// eslint-disable-next-line @typescript-eslint/no-inferrable-types\nexport const version: string = '6.0.3-next.
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"names":["PluginListener"],"mappings":";;;AAEA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,SAA2B,sBAAoD;AAC/E,SAA2B,kBAAlBA,uBAAmE;AAC5E,SAA2B,kBAAlBA,uBAAoE;AAE7E,SAAS,qBAAqB;AAevB,IAAM,UAAkB","sourcesContent":["import type { PatternCommandStore } from './lib/structures/PatternCommandStore';\n\nexport * from './lib/structures/PatternCommandStore';\nexport * from './lib/structures/PatternCommand';\nexport * from './lib/utils/PatternCommandEvents';\nexport * from './lib/utils/PatternCommandInterfaces';\nexport { PluginListener as PluginPatternCommandsCommandAcceptedListener } from './listeners/PluginCommandAccepted';\nexport { PluginListener as PluginPatternCommandsMessageParseListener } from './listeners/PluginMessageParse';\nexport { PluginListener as PluginPatternCommandsPreCommandRunListener } from './listeners/PluginPreCommandRun';\n\nexport { loadListeners } from './listeners/_load';\n\ndeclare module '@sapphire/pieces' {\n\tinterface StoreRegistryEntries {\n\t\t'pattern-commands': PatternCommandStore;\n\t}\n}\n\n/**\n * The [@sapphire/plugin-pattern-commands](https://github.com/sapphiredev/plugins/blob/main/packages/pattern-commands) version that you are currently using.\n * An example use of this is showing it of in a bot information command.\n *\n * Note to Sapphire developers: This needs to explicitly be `string` so it is not typed as the string that gets replaced by esbuild\n */\n// eslint-disable-next-line @typescript-eslint/no-inferrable-types\nexport const version: string = '6.0.3-next.7909d16.0';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/plugin-pattern-commands",
|
|
3
|
-
"version": "6.0.3-next.
|
|
3
|
+
"version": "6.0.3-next.7909d16.0",
|
|
4
4
|
"description": "Plugin for @sapphire/framework that adds support for pattern commands.",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
"access": "public"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@favware/cliff-jumper": "^3.0.
|
|
81
|
+
"@favware/cliff-jumper": "^3.0.3",
|
|
82
82
|
"@favware/rollup-type-bundler": "^3.3.0",
|
|
83
83
|
"concurrently": "^8.2.2",
|
|
84
84
|
"tsup": "^8.0.2",
|
|
85
|
-
"tsx": "^4.
|
|
86
|
-
"typedoc": "^0.25.
|
|
87
|
-
"typedoc-json-parser": "^
|
|
88
|
-
"typescript": "^5.4.
|
|
85
|
+
"tsx": "^4.10.5",
|
|
86
|
+
"typedoc": "^0.25.13",
|
|
87
|
+
"typedoc-json-parser": "^10.0.0",
|
|
88
|
+
"typescript": "^5.4.5"
|
|
89
89
|
}
|
|
90
90
|
}
|