@jshookmcp/jshook 0.2.5 → 0.2.6
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/README.md +5 -5
- package/README.zh.md +5 -5
- package/dist/packages/extension-sdk/src/workflow.d.ts +17 -2
- package/dist/packages/extension-sdk/src/workflow.js +36 -0
- package/dist/src/modules/browser/BrowserPool.d.ts +49 -0
- package/dist/src/modules/browser/BrowserPool.js +288 -0
- package/dist/src/modules/deobfuscator/AdvancedDeobfuscator.d.ts +5 -0
- package/dist/src/modules/deobfuscator/AdvancedDeobfuscator.js +43 -2
- package/dist/src/modules/deobfuscator/Deobfuscator.js +5 -0
- package/dist/src/modules/external/ExternalToolRunner.js +1 -1
- package/dist/src/server/MCPServer.context.d.ts +1 -0
- package/dist/src/server/domains/browser/handlers/stealth-injection.d.ts +1 -0
- package/dist/src/server/domains/browser/handlers/stealth-injection.js +3 -0
- package/dist/src/server/domains/shared-state-board/definitions.d.ts +2 -0
- package/dist/src/server/domains/shared-state-board/definitions.js +78 -0
- package/dist/src/server/domains/shared-state-board/handlers.impl.d.ts +58 -0
- package/dist/src/server/domains/shared-state-board/handlers.impl.js +419 -0
- package/dist/src/server/domains/shared-state-board/index.d.ts +2 -0
- package/dist/src/server/domains/shared-state-board/index.js +2 -0
- package/dist/src/server/domains/shared-state-board/manifest.d.ts +57 -0
- package/dist/src/server/domains/shared-state-board/manifest.js +74 -0
- package/dist/src/server/http/SseStream.d.ts +21 -0
- package/dist/src/server/http/SseStream.js +129 -0
- package/dist/src/server/teams/TeamManager.d.ts +43 -0
- package/dist/src/server/teams/TeamManager.js +238 -0
- package/dist/src/server/teams/index.d.ts +1 -0
- package/dist/src/server/teams/index.js +1 -0
- package/dist/src/server/workflows/WorkflowContract.d.ts +20 -4
- package/dist/src/server/workflows/WorkflowContract.js +40 -0
- package/dist/src/server/workflows/WorkflowEngine.js +190 -13
- package/dist/src/types/deobfuscator.d.ts +1 -0
- package/dist/src/utils/cache/CachedDecorator.d.ts +8 -0
- package/dist/src/utils/cache/CachedDecorator.js +55 -0
- package/dist/src/utils/cache/PersistentCache.d.ts +33 -0
- package/dist/src/utils/cache/PersistentCache.js +246 -0
- package/dist/src/utils/cache/index.d.ts +2 -0
- package/dist/src/utils/cache/index.js +2 -0
- package/package.json +11 -12
- package/scripts/postinstall.cjs +54 -27
- package/workflows/anti-bot-diagnoser/.jshook-install.json +14 -0
- package/workflows/anti-bot-diagnoser/LICENSE +21 -0
- package/workflows/anti-bot-diagnoser/README.md +105 -0
- package/workflows/anti-bot-diagnoser/docs/agent-recipes.md +44 -0
- package/workflows/anti-bot-diagnoser/meta.yaml +6 -0
- package/workflows/anti-bot-diagnoser/package.json +22 -0
- package/workflows/anti-bot-diagnoser/tsconfig.json +15 -0
- package/workflows/anti-bot-diagnoser/workflow.ts +224 -0
- package/workflows/api-openapi-probe/.jshook-install.json +14 -0
- package/workflows/api-openapi-probe/meta.yaml +6 -0
- package/workflows/api-openapi-probe/package.json +22 -0
- package/workflows/api-openapi-probe/pnpm-lock.yaml +819 -0
- package/workflows/api-openapi-probe/tsconfig.json +15 -0
- package/workflows/api-openapi-probe/workflow.ts +40 -0
- package/workflows/api-probe-batch/.jshook-install.json +14 -0
- package/workflows/api-probe-batch/LICENSE +21 -0
- package/workflows/api-probe-batch/README.md +45 -0
- package/workflows/api-probe-batch/meta.yaml +4 -0
- package/workflows/api-probe-batch/package.json +23 -0
- package/workflows/api-probe-batch/tsconfig.json +16 -0
- package/workflows/api-probe-batch/workflow.ts +111 -0
- package/workflows/auth-bootstrap/.jshook-install.json +14 -0
- package/workflows/auth-bootstrap/LICENSE +21 -0
- package/workflows/auth-bootstrap/README.md +74 -0
- package/workflows/auth-bootstrap/meta.yaml +4 -0
- package/workflows/auth-bootstrap/package.json +23 -0
- package/workflows/auth-bootstrap/tsconfig.json +16 -0
- package/workflows/auth-bootstrap/workflow.ts +141 -0
- package/workflows/auth-extract/.jshook-install.json +14 -0
- package/workflows/auth-extract/meta.yaml +6 -0
- package/workflows/auth-extract/package.json +22 -0
- package/workflows/auth-extract/pnpm-lock.yaml +819 -0
- package/workflows/auth-extract/tsconfig.json +15 -0
- package/workflows/auth-extract/workflow.ts +36 -0
- package/workflows/auth-surface-mapper/.jshook-install.json +14 -0
- package/workflows/auth-surface-mapper/meta.yaml +6 -0
- package/workflows/auth-surface-mapper/package.json +22 -0
- package/workflows/auth-surface-mapper/pnpm-lock.yaml +819 -0
- package/workflows/auth-surface-mapper/tsconfig.json +15 -0
- package/workflows/auth-surface-mapper/workflow.ts +104 -0
- package/workflows/batch-register/.jshook-install.json +14 -0
- package/workflows/batch-register/LICENSE +21 -0
- package/workflows/batch-register/README.md +39 -0
- package/workflows/batch-register/meta.yaml +4 -0
- package/workflows/batch-register/package.json +23 -0
- package/workflows/batch-register/tsconfig.json +16 -0
- package/workflows/batch-register/workflow.ts +67 -0
- package/workflows/bundle-recovery/.jshook-install.json +14 -0
- package/workflows/bundle-recovery/LICENSE +21 -0
- package/workflows/bundle-recovery/README.md +105 -0
- package/workflows/bundle-recovery/docs/agent-recipes.md +44 -0
- package/workflows/bundle-recovery/meta.yaml +6 -0
- package/workflows/bundle-recovery/package.json +22 -0
- package/workflows/bundle-recovery/tsconfig.json +15 -0
- package/workflows/bundle-recovery/workflow.ts +179 -0
- package/workflows/challenge-detector/.jshook-install.json +14 -0
- package/workflows/challenge-detector/meta.yaml +14 -0
- package/workflows/challenge-detector/package.json +22 -0
- package/workflows/challenge-detector/pnpm-lock.yaml +819 -0
- package/workflows/challenge-detector/tsconfig.json +15 -0
- package/workflows/challenge-detector/workflow.ts +298 -0
- package/workflows/deobfuscation-pipeline/.jshook-install.json +14 -0
- package/workflows/deobfuscation-pipeline/meta.yaml +6 -0
- package/workflows/deobfuscation-pipeline/package.json +22 -0
- package/workflows/deobfuscation-pipeline/pnpm-lock.yaml +819 -0
- package/workflows/deobfuscation-pipeline/tsconfig.json +15 -0
- package/workflows/deobfuscation-pipeline/workflow.ts +119 -0
- package/workflows/electron-bridge-mapper/.jshook-install.json +14 -0
- package/workflows/electron-bridge-mapper/meta.yaml +6 -0
- package/workflows/electron-bridge-mapper/package.json +22 -0
- package/workflows/electron-bridge-mapper/pnpm-lock.yaml +819 -0
- package/workflows/electron-bridge-mapper/tsconfig.json +15 -0
- package/workflows/electron-bridge-mapper/workflow.ts +125 -0
- package/workflows/evidence-pack/.jshook-install.json +14 -0
- package/workflows/evidence-pack/LICENSE +21 -0
- package/workflows/evidence-pack/README.md +105 -0
- package/workflows/evidence-pack/docs/agent-recipes.md +44 -0
- package/workflows/evidence-pack/meta.yaml +6 -0
- package/workflows/evidence-pack/package.json +22 -0
- package/workflows/evidence-pack/tsconfig.json +15 -0
- package/workflows/evidence-pack/workflow.ts +154 -0
- package/workflows/js-bundle-search/.jshook-install.json +14 -0
- package/workflows/js-bundle-search/LICENSE +21 -0
- package/workflows/js-bundle-search/README.md +46 -0
- package/workflows/js-bundle-search/meta.yaml +4 -0
- package/workflows/js-bundle-search/package.json +23 -0
- package/workflows/js-bundle-search/tsconfig.json +16 -0
- package/workflows/js-bundle-search/workflow.ts +118 -0
- package/workflows/protocol-registry/.jshook-install.json +14 -0
- package/workflows/protocol-registry/meta.yaml +6 -0
- package/workflows/protocol-registry/package.json +22 -0
- package/workflows/protocol-registry/pnpm-lock.yaml +819 -0
- package/workflows/protocol-registry/tsconfig.json +15 -0
- package/workflows/protocol-registry/workflow.ts +107 -0
- package/workflows/qwen-mail-open-latest/meta.yaml +7 -0
- package/workflows/qwen-mail-open-latest/package.json +22 -0
- package/workflows/qwen-mail-open-latest/pnpm-lock.yaml +819 -0
- package/workflows/qwen-mail-open-latest/tsconfig.json +15 -0
- package/workflows/qwen-mail-open-latest/workflow.ts +77 -0
- package/workflows/register-account-flow/.jshook-install.json +14 -0
- package/workflows/register-account-flow/LICENSE +21 -0
- package/workflows/register-account-flow/README.md +64 -0
- package/workflows/register-account-flow/meta.yaml +4 -0
- package/workflows/register-account-flow/package.json +23 -0
- package/workflows/register-account-flow/tsconfig.json +16 -0
- package/workflows/register-account-flow/workflow.ts +127 -0
- package/workflows/replay-lab/.jshook-install.json +14 -0
- package/workflows/replay-lab/meta.yaml +6 -0
- package/workflows/replay-lab/package.json +22 -0
- package/workflows/replay-lab/pnpm-lock.yaml +819 -0
- package/workflows/replay-lab/tsconfig.json +15 -0
- package/workflows/replay-lab/workflow.ts +106 -0
- package/workflows/script-evidence-scan/.jshook-install.json +14 -0
- package/workflows/script-evidence-scan/LICENSE +21 -0
- package/workflows/script-evidence-scan/README.md +61 -0
- package/workflows/script-evidence-scan/meta.yaml +4 -0
- package/workflows/script-evidence-scan/package.json +23 -0
- package/workflows/script-evidence-scan/tsconfig.json +16 -0
- package/workflows/script-evidence-scan/workflow.ts +89 -0
- package/workflows/signature-hunter/.jshook-install.json +14 -0
- package/workflows/signature-hunter/LICENSE +21 -0
- package/workflows/signature-hunter/README.md +105 -0
- package/workflows/signature-hunter/docs/agent-recipes.md +44 -0
- package/workflows/signature-hunter/meta.yaml +6 -0
- package/workflows/signature-hunter/package.json +22 -0
- package/workflows/signature-hunter/tsconfig.json +15 -0
- package/workflows/signature-hunter/workflow.ts +170 -0
- package/workflows/signing-lineage/.jshook-install.json +14 -0
- package/workflows/signing-lineage/meta.yaml +6 -0
- package/workflows/signing-lineage/package.json +22 -0
- package/workflows/signing-lineage/pnpm-lock.yaml +819 -0
- package/workflows/signing-lineage/tsconfig.json +15 -0
- package/workflows/signing-lineage/workflow.ts +120 -0
- package/workflows/temp-mail-extract-link/.jshook-install.json +14 -0
- package/workflows/temp-mail-extract-link/LICENSE +21 -0
- package/workflows/temp-mail-extract-link/README.md +71 -0
- package/workflows/temp-mail-extract-link/meta.yaml +4 -0
- package/workflows/temp-mail-extract-link/package.json +23 -0
- package/workflows/temp-mail-extract-link/tsconfig.json +16 -0
- package/workflows/temp-mail-extract-link/workflow.ts +221 -0
- package/workflows/temp-mail-open-latest/.jshook-install.json +14 -0
- package/workflows/temp-mail-open-latest/LICENSE +21 -0
- package/workflows/temp-mail-open-latest/README.md +61 -0
- package/workflows/temp-mail-open-latest/meta.yaml +4 -0
- package/workflows/temp-mail-open-latest/package.json +23 -0
- package/workflows/temp-mail-open-latest/tsconfig.json +16 -0
- package/workflows/temp-mail-open-latest/workflow.ts +136 -0
- package/workflows/template/.jshook-install.json +14 -0
- package/workflows/template/LICENSE +21 -0
- package/workflows/template/README.md +45 -0
- package/workflows/template/docs/SKILL.md +111 -0
- package/workflows/template/meta.yaml +6 -0
- package/workflows/template/package.json +22 -0
- package/workflows/template/pnpm-lock.yaml +819 -0
- package/workflows/template/tsconfig.json +15 -0
- package/workflows/template/workflow.ts +73 -0
- package/workflows/web-api-capture-session/.jshook-install.json +14 -0
- package/workflows/web-api-capture-session/LICENSE +21 -0
- package/workflows/web-api-capture-session/README.md +64 -0
- package/workflows/web-api-capture-session/meta.yaml +4 -0
- package/workflows/web-api-capture-session/package.json +23 -0
- package/workflows/web-api-capture-session/tsconfig.json +16 -0
- package/workflows/web-api-capture-session/workflow.ts +124 -0
- package/workflows/ws-protocol-lifter/.jshook-install.json +14 -0
- package/workflows/ws-protocol-lifter/LICENSE +21 -0
- package/workflows/ws-protocol-lifter/README.md +105 -0
- package/workflows/ws-protocol-lifter/docs/agent-recipes.md +44 -0
- package/workflows/ws-protocol-lifter/meta.yaml +6 -0
- package/workflows/ws-protocol-lifter/package.json +22 -0
- package/workflows/ws-protocol-lifter/tsconfig.json +15 -0
- package/workflows/ws-protocol-lifter/workflow.ts +163 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import type { WorkflowContract } from '@jshookmcp/extension-sdk/workflow';
|
|
2
|
+
import { toolNode, sequenceNode, branchNode } from '@jshookmcp/extension-sdk/workflow';
|
|
3
|
+
|
|
4
|
+
type SearchPattern = {
|
|
5
|
+
name: string;
|
|
6
|
+
regex?: string;
|
|
7
|
+
query?: string;
|
|
8
|
+
isRegex?: boolean;
|
|
9
|
+
contextBefore?: number;
|
|
10
|
+
contextAfter?: number;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const DEFAULT_PATTERNS: SearchPattern[] = [
|
|
14
|
+
{ name: 'auth_signup', query: 'auths/signup', isRegex: false },
|
|
15
|
+
{ name: 'auth_signin', query: 'auths/signin', isRegex: false },
|
|
16
|
+
{ name: 'auth_activate', query: 'auths/activate', isRegex: false },
|
|
17
|
+
{ name: 'chat_completions_v2', query: '/api/v2/chat/completions', isRegex: false },
|
|
18
|
+
{ name: 'chats_v2', query: '/api/v2/chats', isRegex: false },
|
|
19
|
+
{ name: 'sha256', query: 'SHA-256', isRegex: false },
|
|
20
|
+
{ name: 'hash_hex', query: 'getHash("HEX")', isRegex: false },
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
const jsBundleSearchWorkflow: WorkflowContract = {
|
|
24
|
+
kind: 'workflow-contract',
|
|
25
|
+
version: 1,
|
|
26
|
+
id: 'workflow.js-bundle-search.v1',
|
|
27
|
+
displayName: 'JS Bundle Search',
|
|
28
|
+
description:
|
|
29
|
+
'Collect scripts from a live page and search them by regex patterns, with optional remote js_bundle_search as a secondary step.',
|
|
30
|
+
tags: ['workflow', 'bundle', 'javascript', 'reverse-engineering', 'search'],
|
|
31
|
+
timeoutMs: 8 * 60_000,
|
|
32
|
+
defaultMaxConcurrency: 1,
|
|
33
|
+
|
|
34
|
+
build(ctx) {
|
|
35
|
+
const appUrl = ctx.getConfig<string>('workflows.jsBundleSearch.appUrl', '');
|
|
36
|
+
if (!appUrl) throw new Error('[workflow.js-bundle-search] Missing required config: workflows.jsBundleSearch.appUrl');
|
|
37
|
+
const bundleUrl = ctx.getConfig<string>('workflows.jsBundleSearch.bundleUrl', '');
|
|
38
|
+
const patterns = ctx.getConfig<SearchPattern[]>('workflows.jsBundleSearch.patterns', DEFAULT_PATTERNS);
|
|
39
|
+
const maxMatches = ctx.getConfig<number>('workflows.jsBundleSearch.maxMatches', 10);
|
|
40
|
+
const enableNavigate = ctx.getConfig<boolean>('workflows.jsBundleSearch.enableNavigate', true);
|
|
41
|
+
const enableAuthExtract = ctx.getConfig<boolean>('workflows.jsBundleSearch.enableAuthExtract', true);
|
|
42
|
+
const enableCollectCode = ctx.getConfig<boolean>('workflows.jsBundleSearch.enableCollectCode', true);
|
|
43
|
+
const enableRemoteSearch = ctx.getConfig<boolean>('workflows.jsBundleSearch.enableRemoteSearch', false);
|
|
44
|
+
const collectMode = ctx.getConfig<string>('workflows.jsBundleSearch.collectMode', 'priority');
|
|
45
|
+
|
|
46
|
+
const root = sequenceNode('js-bundle-search-root');
|
|
47
|
+
|
|
48
|
+
if (enableNavigate) {
|
|
49
|
+
root.step(toolNode('navigate-app', 'page_navigate').input({
|
|
50
|
+
url: appUrl, waitUntil: 'networkidle', enableNetworkMonitoring: true,
|
|
51
|
+
}));
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
root.step(branchNode('auth-extract-branch', 'js_bundle_search_auth_extract_enabled')
|
|
55
|
+
.predicateFn(() => enableAuthExtract)
|
|
56
|
+
.whenTrue(toolNode('auth-extract', 'page_script_run').input({ name: 'auth_extract' }))
|
|
57
|
+
.whenFalse(toolNode('skip-auth-extract', 'console_execute').input({
|
|
58
|
+
expression: '({ skipped: true, step: "auth_extract", reason: "workflows.jsBundleSearch.enableAuthExtract=false" })',
|
|
59
|
+
})));
|
|
60
|
+
|
|
61
|
+
root.step(branchNode('collect-code-branch', 'js_bundle_search_collect_code_enabled')
|
|
62
|
+
.predicateFn(() => enableCollectCode)
|
|
63
|
+
.whenTrue(toolNode('collect-code', 'collect_code')
|
|
64
|
+
.input({
|
|
65
|
+
url: appUrl, smartMode: collectMode, includeDynamic: true, includeExternal: true,
|
|
66
|
+
includeInline: true, compress: false, returnSummaryOnly: true,
|
|
67
|
+
maxTotalSize: 16_000_000, maxFileSize: 2048,
|
|
68
|
+
priorities: bundleUrl ? [bundleUrl] : undefined,
|
|
69
|
+
})
|
|
70
|
+
.timeout(3 * 60_000))
|
|
71
|
+
.whenFalse(toolNode('skip-collect-code', 'console_execute').input({
|
|
72
|
+
expression: '({ skipped: true, step: "collect_code", reason: "workflows.jsBundleSearch.enableCollectCode=false" })',
|
|
73
|
+
})));
|
|
74
|
+
|
|
75
|
+
for (const pattern of patterns) {
|
|
76
|
+
const keyword = pattern.query ?? pattern.regex ?? pattern.name;
|
|
77
|
+
const isRegex = pattern.isRegex ?? Boolean(pattern.regex && !pattern.query);
|
|
78
|
+
root.step(toolNode(`search-${pattern.name}`, 'search_in_scripts').input({
|
|
79
|
+
keyword, isRegex, contextLines: 2, maxMatches, returnSummary: true,
|
|
80
|
+
}));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
root.step(branchNode('remote-search-branch', 'js_bundle_search_remote_fetch_enabled')
|
|
84
|
+
.predicateFn(() => enableRemoteSearch && Boolean(bundleUrl || appUrl))
|
|
85
|
+
.whenTrue(toolNode('remote-js-bundle-search', 'js_bundle_search').input({
|
|
86
|
+
url: bundleUrl || appUrl, cacheBundle: true, stripNoise: true, maxMatches, patterns,
|
|
87
|
+
}))
|
|
88
|
+
.whenFalse(toolNode('skip-remote-search', 'console_execute').input({
|
|
89
|
+
expression: '({ skipped: true, step: "js_bundle_search", reason: "workflows.jsBundleSearch.enableRemoteSearch=false" })',
|
|
90
|
+
})));
|
|
91
|
+
|
|
92
|
+
root.step(toolNode('emit-summary', 'console_execute').input({
|
|
93
|
+
expression: `(${JSON.stringify({
|
|
94
|
+
workflowId: 'workflow.js-bundle-search.v1',
|
|
95
|
+
appUrl, bundleUrl,
|
|
96
|
+
patterns: patterns.map((p) => ({ name: p.name, query: p.query ?? p.regex ?? p.name, isRegex: p.isRegex ?? Boolean(p.regex && !p.query) })),
|
|
97
|
+
maxMatches,
|
|
98
|
+
strategy: ['navigate', 'auth_extract', 'collect_code', 'search_in_scripts', 'optional_remote_js_bundle_search'],
|
|
99
|
+
})})`,
|
|
100
|
+
}));
|
|
101
|
+
|
|
102
|
+
return root.build();
|
|
103
|
+
},
|
|
104
|
+
|
|
105
|
+
onStart(ctx) {
|
|
106
|
+
ctx.emitMetric('workflow_runs_total', 1, 'counter', { workflowId: 'workflow.js-bundle-search.v1', stage: 'start' });
|
|
107
|
+
},
|
|
108
|
+
|
|
109
|
+
onFinish(ctx) {
|
|
110
|
+
ctx.emitMetric('workflow_runs_total', 1, 'counter', { workflowId: 'workflow.js-bundle-search.v1', stage: 'finish' });
|
|
111
|
+
},
|
|
112
|
+
|
|
113
|
+
onError(ctx, error) {
|
|
114
|
+
ctx.emitMetric('workflow_errors_total', 1, 'counter', { workflowId: 'workflow.js-bundle-search.v1', error: error.name });
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
export default jsBundleSearchWorkflow;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"kind": "workflow",
|
|
4
|
+
"slug": "protocol-registry",
|
|
5
|
+
"id": "workflow.protocol-registry.v1",
|
|
6
|
+
"source": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"repo": "https://github.com/vmoranv/jshook_workflow_protocol_registry",
|
|
9
|
+
"ref": "main",
|
|
10
|
+
"commit": "4ac834f34d0e45853ac5582e5fef9cb430a229bc",
|
|
11
|
+
"subpath": ".",
|
|
12
|
+
"entry": "workflow.ts"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jshook-workflow-protocol-registry",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "jshookmcp workflow: protocol-registry",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"packageManager": "pnpm@10.28.2",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "tsc -p tsconfig.json",
|
|
10
|
+
"check": "tsc -p tsconfig.json --noEmit"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@jshookmcp/extension-sdk": "^0.3.0"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@types/node": "^25.3.0",
|
|
17
|
+
"typescript": "^5.9.3"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=20.0.0"
|
|
21
|
+
}
|
|
22
|
+
}
|