@codeledger/types 0.1.1
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/LICENSE +27 -0
- package/dist/index.d.ts +413 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/package.json +34 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Intelligent Context AI, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
Note: This license applies to the CLI wrapper, types, repository scanning,
|
|
26
|
+
instrumentation, harness, and report packages (the "Plugin"). The scoring
|
|
27
|
+
engine (packages/core-engine/bin/) is licensed separately under LICENSE-CORE.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
/** ISO 8601 datetime string */
|
|
2
|
+
export type ISODateTime = string;
|
|
3
|
+
export type AgentType = 'claude_code' | 'cursor' | 'codex' | 'generic';
|
|
4
|
+
export type RunModeName = 'without_codeledger' | 'with_codeledger';
|
|
5
|
+
export type InjectionMode = 'prompt_prepend' | 'file_drop' | 'guided';
|
|
6
|
+
export type EventType = 'agent_prompt' | 'file_read' | 'cmd_exec' | 'diff_apply' | 'bundle_generated' | 'bundle_used' | 'test_result' | 'lint_result' | 'build_result' | 'note';
|
|
7
|
+
export type ReasonCode = 'keyword_match' | 'content_match' | 'dependency_neighbor' | 'dependent_neighbor' | 'high_churn' | 'recent_touch' | 'test_relevant' | 'success_prior' | 'size_penalty' | 'contract_schema' | 'interface_stub' | 'error_infrastructure';
|
|
8
|
+
export type RunStatus = 'running' | 'completed' | 'failed';
|
|
9
|
+
export type AcceptanceCommandName = 'tests' | 'lint' | 'build' | string;
|
|
10
|
+
export interface Budget {
|
|
11
|
+
tokens?: number;
|
|
12
|
+
max_files?: number;
|
|
13
|
+
}
|
|
14
|
+
export interface SelectorWeights {
|
|
15
|
+
keyword: number;
|
|
16
|
+
centrality: number;
|
|
17
|
+
churn: number;
|
|
18
|
+
recent_touch: number;
|
|
19
|
+
test_relevance: number;
|
|
20
|
+
size_penalty: number;
|
|
21
|
+
success_prior: number;
|
|
22
|
+
fail_prior: number;
|
|
23
|
+
/** Weight for error infrastructure files (custom errors, validators). Default: 0.08 */
|
|
24
|
+
error_infrastructure?: number;
|
|
25
|
+
}
|
|
26
|
+
export interface SelectorConfig {
|
|
27
|
+
weights: SelectorWeights;
|
|
28
|
+
default_budget: Budget;
|
|
29
|
+
sufficiency_threshold: number;
|
|
30
|
+
hot_zone_count: number;
|
|
31
|
+
dependency_depth: number;
|
|
32
|
+
dependency_cap_per_seed: number;
|
|
33
|
+
excerpt_full_file_max_lines: number;
|
|
34
|
+
excerpt_window_lines: number;
|
|
35
|
+
/** Glob patterns for contract/schema files to auto-include when related code is in the bundle.
|
|
36
|
+
* Defaults: ['**\/*.sql', '**\/*.proto', '**\/*.prisma', '**\/*.graphql', '**\/openapi.{yaml,yml,json}'] */
|
|
37
|
+
contract_patterns?: string[];
|
|
38
|
+
/** Known deprecated API patterns to annotate in bundle files.
|
|
39
|
+
* Each entry: { pattern: regex-string, message: replacement guidance } */
|
|
40
|
+
deprecation_rules?: DeprecationRule[];
|
|
41
|
+
}
|
|
42
|
+
export interface PreflightConfig {
|
|
43
|
+
allow_dirty_repo: boolean;
|
|
44
|
+
}
|
|
45
|
+
export interface InjectionConfig {
|
|
46
|
+
default_mode: InjectionMode;
|
|
47
|
+
file_drop_path: string;
|
|
48
|
+
}
|
|
49
|
+
export type WorktreeDependencyMode = 'symlink' | 'install' | 'none';
|
|
50
|
+
export interface HarnessConfig {
|
|
51
|
+
default_repeats: number;
|
|
52
|
+
default_timeout_sec: number;
|
|
53
|
+
guided_timeout_sec: number;
|
|
54
|
+
worktree_dependency_mode: WorktreeDependencyMode;
|
|
55
|
+
/** Custom install command for worktree dependency provisioning.
|
|
56
|
+
* When set, this replaces the default pnpm/npm fallback chain.
|
|
57
|
+
* Example: "yarn install --frozen-lockfile" */
|
|
58
|
+
worktree_install_cmd?: string;
|
|
59
|
+
}
|
|
60
|
+
export interface ReportingConfig {
|
|
61
|
+
markdown: boolean;
|
|
62
|
+
badge: boolean;
|
|
63
|
+
share_pack: boolean;
|
|
64
|
+
}
|
|
65
|
+
export interface RepoConfig {
|
|
66
|
+
include: string[];
|
|
67
|
+
exclude: string[];
|
|
68
|
+
test_patterns: string[];
|
|
69
|
+
language_extensions: Record<string, string>;
|
|
70
|
+
}
|
|
71
|
+
export interface WorkspaceConfig {
|
|
72
|
+
db_path: string;
|
|
73
|
+
cache_dir: string;
|
|
74
|
+
artifacts_dir: string;
|
|
75
|
+
reports_dir: string;
|
|
76
|
+
worktree_root: string;
|
|
77
|
+
}
|
|
78
|
+
export interface CodeLedgerConfig {
|
|
79
|
+
version: string;
|
|
80
|
+
workspace: WorkspaceConfig;
|
|
81
|
+
repo: RepoConfig;
|
|
82
|
+
selector: SelectorConfig;
|
|
83
|
+
injection: InjectionConfig;
|
|
84
|
+
harness: HarnessConfig;
|
|
85
|
+
preflight: PreflightConfig;
|
|
86
|
+
reporting: ReportingConfig;
|
|
87
|
+
}
|
|
88
|
+
export interface FileInfo {
|
|
89
|
+
path: string;
|
|
90
|
+
language: string;
|
|
91
|
+
extension: string;
|
|
92
|
+
lines: number;
|
|
93
|
+
size: number;
|
|
94
|
+
is_test: boolean;
|
|
95
|
+
/** Lowercase identifiers extracted from exports, function names, class names,
|
|
96
|
+
* config keys, and the first ~50 lines. Used for content-aware keyword matching. */
|
|
97
|
+
content_keywords?: string[];
|
|
98
|
+
}
|
|
99
|
+
export interface ChurnInfo {
|
|
100
|
+
path: string;
|
|
101
|
+
commit_count: number;
|
|
102
|
+
days_since_last_touch: number;
|
|
103
|
+
time_decayed_score: number;
|
|
104
|
+
}
|
|
105
|
+
export interface TestMapping {
|
|
106
|
+
test_file: string;
|
|
107
|
+
source_file: string;
|
|
108
|
+
}
|
|
109
|
+
export interface DepGraph {
|
|
110
|
+
/** file → files it imports */
|
|
111
|
+
imports: Record<string, string[]>;
|
|
112
|
+
/** file → files that import it */
|
|
113
|
+
dependents: Record<string, string[]>;
|
|
114
|
+
}
|
|
115
|
+
export interface RepoIndex {
|
|
116
|
+
generated_at: ISODateTime;
|
|
117
|
+
root: string;
|
|
118
|
+
files: FileInfo[];
|
|
119
|
+
dep_graph: DepGraph;
|
|
120
|
+
churn: ChurnInfo[];
|
|
121
|
+
test_map: TestMapping[];
|
|
122
|
+
}
|
|
123
|
+
export interface FileFeatures {
|
|
124
|
+
keyword: number;
|
|
125
|
+
centrality: number;
|
|
126
|
+
churn: number;
|
|
127
|
+
recent_touch: number;
|
|
128
|
+
test_relevance: number;
|
|
129
|
+
size_penalty: number;
|
|
130
|
+
success_prior: number;
|
|
131
|
+
fail_prior: number;
|
|
132
|
+
/** Bonus for files that define error classes, validation schemas, or error middleware */
|
|
133
|
+
error_infrastructure: number;
|
|
134
|
+
/** Whether the file matched task keywords via content identifiers (not path) */
|
|
135
|
+
_hasContentMatch?: boolean;
|
|
136
|
+
}
|
|
137
|
+
export interface ScoredFile {
|
|
138
|
+
path: string;
|
|
139
|
+
score: number;
|
|
140
|
+
features: FileFeatures;
|
|
141
|
+
reasons: ReasonCode[];
|
|
142
|
+
}
|
|
143
|
+
export interface DeprecationRule {
|
|
144
|
+
/** Regex pattern to match in source code */
|
|
145
|
+
pattern: string;
|
|
146
|
+
/** Human-readable guidance (e.g. "Use fs.access() instead") */
|
|
147
|
+
message: string;
|
|
148
|
+
}
|
|
149
|
+
export interface DeprecationWarning {
|
|
150
|
+
line: number;
|
|
151
|
+
matched: string;
|
|
152
|
+
message: string;
|
|
153
|
+
}
|
|
154
|
+
export type ConfidenceLevel = 'high' | 'medium' | 'low';
|
|
155
|
+
export interface BundleConfidence {
|
|
156
|
+
level: ConfidenceLevel;
|
|
157
|
+
score: number;
|
|
158
|
+
reasons: string[];
|
|
159
|
+
}
|
|
160
|
+
export interface ExcerptSpan {
|
|
161
|
+
start_line: number;
|
|
162
|
+
end_line: number;
|
|
163
|
+
reason: string;
|
|
164
|
+
}
|
|
165
|
+
export interface BundleFile {
|
|
166
|
+
path: string;
|
|
167
|
+
score: number;
|
|
168
|
+
reasons: ReasonCode[];
|
|
169
|
+
excerpt_spans: ExcerptSpan[] | null;
|
|
170
|
+
content: string;
|
|
171
|
+
token_estimate: number;
|
|
172
|
+
/** True if this entry is a lightweight interface stub, not a full file excerpt */
|
|
173
|
+
is_stub?: boolean;
|
|
174
|
+
/** Deprecated API warnings found in the file content */
|
|
175
|
+
deprecation_warnings?: DeprecationWarning[];
|
|
176
|
+
}
|
|
177
|
+
export interface ContextBundle {
|
|
178
|
+
bundle_id: string;
|
|
179
|
+
task: string;
|
|
180
|
+
budget: Budget;
|
|
181
|
+
sufficiency_threshold: number;
|
|
182
|
+
cumulative_score: number;
|
|
183
|
+
files: BundleFile[];
|
|
184
|
+
total_tokens: number;
|
|
185
|
+
generated_at: ISODateTime;
|
|
186
|
+
/** Bundle confidence assessment */
|
|
187
|
+
confidence?: BundleConfidence;
|
|
188
|
+
/** Per-file scoring breakdown (present when --explain is used) */
|
|
189
|
+
explain?: Record<string, FileFeatures>;
|
|
190
|
+
}
|
|
191
|
+
export interface RepoRef {
|
|
192
|
+
root: string;
|
|
193
|
+
git_ref: string;
|
|
194
|
+
clean_required: boolean;
|
|
195
|
+
}
|
|
196
|
+
export interface AcceptanceCriteria {
|
|
197
|
+
must_pass: AcceptanceCommandName[];
|
|
198
|
+
commands: string[];
|
|
199
|
+
}
|
|
200
|
+
export interface ScenarioTask {
|
|
201
|
+
prompt: string;
|
|
202
|
+
acceptance: AcceptanceCriteria;
|
|
203
|
+
}
|
|
204
|
+
export interface ScenarioMode {
|
|
205
|
+
name: RunModeName;
|
|
206
|
+
context_injection: 'off' | 'on';
|
|
207
|
+
injection_mode?: InjectionMode;
|
|
208
|
+
budget?: Budget;
|
|
209
|
+
guided?: boolean;
|
|
210
|
+
}
|
|
211
|
+
export interface Scenario {
|
|
212
|
+
id: string;
|
|
213
|
+
name: string;
|
|
214
|
+
repo: RepoRef;
|
|
215
|
+
task: ScenarioTask;
|
|
216
|
+
modes: ScenarioMode[];
|
|
217
|
+
}
|
|
218
|
+
export interface LedgerEvent {
|
|
219
|
+
event_id: string;
|
|
220
|
+
run_id: string;
|
|
221
|
+
ts: ISODateTime;
|
|
222
|
+
type: EventType;
|
|
223
|
+
payload: unknown;
|
|
224
|
+
}
|
|
225
|
+
export interface FileReadPayload {
|
|
226
|
+
path: string;
|
|
227
|
+
lines: number;
|
|
228
|
+
}
|
|
229
|
+
export interface CmdExecPayload {
|
|
230
|
+
command: string;
|
|
231
|
+
exit_code: number;
|
|
232
|
+
duration_ms: number;
|
|
233
|
+
stdout_lines: number;
|
|
234
|
+
stderr_lines: number;
|
|
235
|
+
}
|
|
236
|
+
export interface DiffApplyPayload {
|
|
237
|
+
files_changed: string[];
|
|
238
|
+
additions: number;
|
|
239
|
+
deletions: number;
|
|
240
|
+
}
|
|
241
|
+
export interface CommandResultPayload {
|
|
242
|
+
name: AcceptanceCommandName;
|
|
243
|
+
command: string;
|
|
244
|
+
pass: boolean;
|
|
245
|
+
exit_code: number;
|
|
246
|
+
duration_ms: number;
|
|
247
|
+
failures?: number;
|
|
248
|
+
}
|
|
249
|
+
export interface RunIdentity {
|
|
250
|
+
run_id: string;
|
|
251
|
+
scenario_id: string;
|
|
252
|
+
mode: RunModeName;
|
|
253
|
+
injection_mode: InjectionMode | null;
|
|
254
|
+
repeat_num: number;
|
|
255
|
+
agent: string | null;
|
|
256
|
+
git_ref: string | null;
|
|
257
|
+
started_at: ISODateTime;
|
|
258
|
+
}
|
|
259
|
+
export interface RunRecord extends RunIdentity {
|
|
260
|
+
finished_at: ISODateTime | null;
|
|
261
|
+
status: RunStatus;
|
|
262
|
+
summary: unknown | null;
|
|
263
|
+
}
|
|
264
|
+
export interface BundleRecord {
|
|
265
|
+
bundle_id: string;
|
|
266
|
+
run_id: string | null;
|
|
267
|
+
task: string;
|
|
268
|
+
budget_tokens: number | null;
|
|
269
|
+
budget_max_files: number | null;
|
|
270
|
+
sufficiency_threshold: number | null;
|
|
271
|
+
cumulative_score: number | null;
|
|
272
|
+
file_count: number | null;
|
|
273
|
+
bundle_json: string;
|
|
274
|
+
created_at: ISODateTime;
|
|
275
|
+
}
|
|
276
|
+
export interface PreflightResult {
|
|
277
|
+
git_installed: boolean;
|
|
278
|
+
inside_git_repo: boolean;
|
|
279
|
+
repo_clean: boolean;
|
|
280
|
+
worktree_supported: boolean;
|
|
281
|
+
worktree_root_writable: boolean;
|
|
282
|
+
node_version: string;
|
|
283
|
+
config_exists: boolean;
|
|
284
|
+
repo_index_exists: boolean;
|
|
285
|
+
}
|
|
286
|
+
export interface ExecResult {
|
|
287
|
+
exit_code: number;
|
|
288
|
+
duration_ms: number;
|
|
289
|
+
stdout: string;
|
|
290
|
+
stderr: string;
|
|
291
|
+
}
|
|
292
|
+
export interface WorktreeHandle {
|
|
293
|
+
path: string;
|
|
294
|
+
branch: string;
|
|
295
|
+
commit: string;
|
|
296
|
+
cleanup: () => Promise<void>;
|
|
297
|
+
}
|
|
298
|
+
export interface AgentRunOptions {
|
|
299
|
+
scenario: Scenario;
|
|
300
|
+
mode: ScenarioMode;
|
|
301
|
+
worktree_path: string;
|
|
302
|
+
bundle?: ContextBundle;
|
|
303
|
+
bundle_markdown?: string;
|
|
304
|
+
agent_cmd?: string;
|
|
305
|
+
guided_timeout_sec?: number;
|
|
306
|
+
}
|
|
307
|
+
export interface GenericAgentRunResult {
|
|
308
|
+
exit_code: number;
|
|
309
|
+
duration_ms: number;
|
|
310
|
+
stdout_path: string | null;
|
|
311
|
+
stderr_path: string | null;
|
|
312
|
+
}
|
|
313
|
+
export interface CommandResult {
|
|
314
|
+
name: AcceptanceCommandName;
|
|
315
|
+
pass: boolean;
|
|
316
|
+
failures?: number;
|
|
317
|
+
}
|
|
318
|
+
export interface Metrics {
|
|
319
|
+
duration_sec: number;
|
|
320
|
+
duration_ms_total: number;
|
|
321
|
+
agent_duration_ms: number;
|
|
322
|
+
acceptance_duration_ms: number;
|
|
323
|
+
attempt_number: number;
|
|
324
|
+
accepted: boolean;
|
|
325
|
+
commands: Record<AcceptanceCommandName, CommandResult>;
|
|
326
|
+
files_read_count: number;
|
|
327
|
+
files_changed_count: number;
|
|
328
|
+
iterations: number;
|
|
329
|
+
reverts: number;
|
|
330
|
+
token_estimate: number;
|
|
331
|
+
}
|
|
332
|
+
export interface InjectionProof {
|
|
333
|
+
mode: InjectionMode;
|
|
334
|
+
bundle_id: string;
|
|
335
|
+
bundle_tokens: number;
|
|
336
|
+
selected_files: number;
|
|
337
|
+
top_files: string[];
|
|
338
|
+
}
|
|
339
|
+
export interface ReportRun {
|
|
340
|
+
mode: RunModeName;
|
|
341
|
+
injection: InjectionProof | null;
|
|
342
|
+
repeat: number;
|
|
343
|
+
metrics: Metrics;
|
|
344
|
+
bundle?: {
|
|
345
|
+
bundle_id: string;
|
|
346
|
+
token_budget: number | null;
|
|
347
|
+
max_files: number | null;
|
|
348
|
+
selected_files: number;
|
|
349
|
+
};
|
|
350
|
+
}
|
|
351
|
+
export interface ReportAggregate {
|
|
352
|
+
delta: {
|
|
353
|
+
duration_sec_pct: number;
|
|
354
|
+
files_read_pct: number;
|
|
355
|
+
iterations_pct: number;
|
|
356
|
+
token_estimate_pct: number;
|
|
357
|
+
success_rate_delta: number;
|
|
358
|
+
};
|
|
359
|
+
outcomes?: {
|
|
360
|
+
acceptance_rate_without: number;
|
|
361
|
+
acceptance_rate_with: number;
|
|
362
|
+
acceptance_rate_uplift_pct: number;
|
|
363
|
+
median_time_to_acceptance_ms_without: number | null;
|
|
364
|
+
median_time_to_acceptance_ms_with: number | null;
|
|
365
|
+
time_to_acceptance_reduction_pct: number | null;
|
|
366
|
+
attempts_until_success_without: number | null;
|
|
367
|
+
attempts_until_success_with: number | null;
|
|
368
|
+
attempts_reduction_pct: number | null;
|
|
369
|
+
};
|
|
370
|
+
}
|
|
371
|
+
export interface BenchmarkReport {
|
|
372
|
+
scenario_id: string;
|
|
373
|
+
repo: {
|
|
374
|
+
name: string;
|
|
375
|
+
git_ref: string;
|
|
376
|
+
dirty: boolean;
|
|
377
|
+
};
|
|
378
|
+
runs: ReportRun[];
|
|
379
|
+
aggregate: ReportAggregate;
|
|
380
|
+
}
|
|
381
|
+
export interface HarnessPack {
|
|
382
|
+
name: string;
|
|
383
|
+
version: string;
|
|
384
|
+
description: string;
|
|
385
|
+
scenarios: string[];
|
|
386
|
+
}
|
|
387
|
+
export interface SessionValueSummary {
|
|
388
|
+
bundle_id: string;
|
|
389
|
+
task: string;
|
|
390
|
+
bundle_files: string[];
|
|
391
|
+
files_changed: string[];
|
|
392
|
+
files_overlapping: string[];
|
|
393
|
+
recall: number;
|
|
394
|
+
precision: number;
|
|
395
|
+
bundle_tokens: number;
|
|
396
|
+
repo_total_tokens: number;
|
|
397
|
+
context_reduction_pct: number;
|
|
398
|
+
generated_at: ISODateTime;
|
|
399
|
+
session_id?: SessionId;
|
|
400
|
+
}
|
|
401
|
+
/** Short, human-readable session identifier (e.g. "s-a3f2c1") */
|
|
402
|
+
export type SessionId = string;
|
|
403
|
+
export type SessionStatus = 'active' | 'stopped';
|
|
404
|
+
export interface SessionRecord {
|
|
405
|
+
session_id: SessionId;
|
|
406
|
+
task: string | null;
|
|
407
|
+
started_at: ISODateTime;
|
|
408
|
+
last_active_at: ISODateTime;
|
|
409
|
+
pid: number | null;
|
|
410
|
+
bundle_files: string[];
|
|
411
|
+
status: SessionStatus;
|
|
412
|
+
}
|
|
413
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,gFAAgF"}
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codeledger/types",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Shared type definitions for CodeLedger",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/codeledgerECF/codeledger-blackbox.git",
|
|
10
|
+
"directory": "packages/types"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"main": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"import": "./dist/index.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"typescript": "^5.4.0"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsc",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"clean": "rm -rf dist"
|
|
33
|
+
}
|
|
34
|
+
}
|