@contractspec/bundle.workspace 4.4.0 → 4.5.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/dist/bundles/WorkspaceBundle.d.ts +34 -0
- package/dist/contracts/operations/init.operation.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +935 -519
- package/dist/node/index.js +935 -519
- package/dist/services/adoption/catalog-core.d.ts +2 -0
- package/dist/services/adoption/catalog-entry.d.ts +2 -0
- package/dist/services/adoption/catalog-runtime.d.ts +2 -0
- package/dist/services/adoption/catalog-shared.d.ts +2 -0
- package/dist/services/adoption/catalog-solutions.d.ts +2 -0
- package/dist/services/adoption/catalog-ui.d.ts +2 -0
- package/dist/services/adoption/catalog.d.ts +3 -0
- package/dist/services/adoption/index.d.ts +6 -0
- package/dist/services/adoption/resolve.d.ts +6 -0
- package/dist/services/adoption/resolve.test.d.ts +1 -0
- package/dist/services/adoption/tokens.d.ts +6 -0
- package/dist/services/adoption/types.d.ts +99 -0
- package/dist/services/adoption/workspace-scan.d.ts +8 -0
- package/dist/services/adoption/workspace.d.ts +3 -0
- package/dist/services/connect/adoption.d.ts +10 -0
- package/dist/services/connect/types.d.ts +1 -1
- package/dist/services/deps.d.ts +1 -1
- package/dist/services/doctor/checks/config.test.d.ts +1 -0
- package/dist/services/index.d.ts +4 -0
- package/dist/services/integrity.d.ts +1 -1
- package/dist/services/onboarding/catalog.d.ts +4 -0
- package/dist/services/onboarding/index.d.ts +4 -0
- package/dist/services/onboarding/journey.d.ts +11 -0
- package/dist/services/onboarding/render.d.ts +5 -0
- package/dist/services/onboarding/service.d.ts +5 -0
- package/dist/services/onboarding/service.test.d.ts +1 -0
- package/dist/services/onboarding/types.d.ts +71 -0
- package/dist/services/package-declarations/helpers.d.ts +13 -0
- package/dist/services/package-declarations/index.d.ts +5 -0
- package/dist/services/package-declarations/inventory.d.ts +4 -0
- package/dist/services/package-declarations/render.d.ts +41 -0
- package/dist/services/package-declarations/sync.d.ts +8 -0
- package/dist/services/package-declarations/sync.test.d.ts +1 -0
- package/dist/services/package-declarations/types.d.ts +48 -0
- package/dist/services/setup/config-generators.d.ts +4 -0
- package/dist/services/setup/index.d.ts +3 -0
- package/dist/services/setup/managed-markdown.d.ts +8 -0
- package/dist/services/setup/setup-service.d.ts +17 -2
- package/dist/services/setup/targets/agents-md.d.ts +2 -0
- package/dist/services/setup/targets/index.d.ts +1 -0
- package/dist/services/setup/targets/usage-md.d.ts +5 -0
- package/dist/services/setup/targets/usage-md.test.d.ts +1 -0
- package/dist/services/setup/types.d.ts +2 -2
- package/dist/services/test/test-generator-service.d.ts +5 -1
- package/dist/services/validate/spec-validator.d.ts +1 -1
- package/dist/services/validate/spec-validator.test.d.ts +1 -0
- package/dist/services/versioning/index.d.ts +1 -0
- package/dist/services/versioning/release-authoring.d.ts +14 -0
- package/dist/services/versioning/release-authoring.test.d.ts +1 -0
- package/dist/services/versioning/release-files.d.ts +7 -0
- package/dist/services/versioning/release-service.types.d.ts +53 -1
- package/dist/services/workspace-info.d.ts +4 -1
- package/dist/templates/additional-contracts.template.d.ts +40 -0
- package/dist/templates/advanced-contracts.template.d.ts +39 -0
- package/dist/templates/index.d.ts +3 -0
- package/dist/templates/theme.template.d.ts +12 -0
- package/dist/templates/theme.template.test.d.ts +1 -0
- package/dist/types.d.ts +16 -11
- package/package.json +14 -13
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export { formatChangelogJson, formatConventionalChangelog, formatKeepAChangelog, } from './changelog-formatter';
|
|
7
7
|
export * from './conventional-commits';
|
|
8
|
+
export { prepareReleaseAuthoring, saveReleaseDraft, } from './release-authoring';
|
|
8
9
|
export * from './release-formatters';
|
|
9
10
|
export { buildReleaseArtifacts, checkReleaseArtifacts, initReleaseArtifacts, } from './release-service';
|
|
10
11
|
export * from './release-service.types';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { AiAdapter } from '../../ports/ai';
|
|
2
|
+
import type { FsAdapter } from '../../ports/fs';
|
|
3
|
+
import type { GitAdapter } from '../../ports/git';
|
|
4
|
+
import type { LoggerAdapter } from '../../ports/logger';
|
|
5
|
+
import type { ReleaseAuthoringOptions, ReleaseAuthoringResult, SaveReleaseDraftOptions, SaveReleaseDraftResult } from './release-service.types';
|
|
6
|
+
interface ReleaseAuthoringAdapters {
|
|
7
|
+
fs: FsAdapter;
|
|
8
|
+
git: GitAdapter;
|
|
9
|
+
logger: LoggerAdapter;
|
|
10
|
+
ai?: AiAdapter;
|
|
11
|
+
}
|
|
12
|
+
export declare function prepareReleaseAuthoring(adapters: ReleaseAuthoringAdapters, options?: ReleaseAuthoringOptions): Promise<ReleaseAuthoringResult>;
|
|
13
|
+
export declare function saveReleaseDraft(adapters: ReleaseAuthoringAdapters, options: SaveReleaseDraftOptions): Promise<SaveReleaseDraftResult>;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { ReleaseCapsule, ReleaseCapsulePackage } from '@contractspec/lib.contracts-spec';
|
|
2
2
|
import type { FsAdapter } from '../../ports/fs';
|
|
3
|
+
import type { ReleaseCapsuleReadIssue } from './release-service.types';
|
|
3
4
|
export interface WorkspacePackageInfo {
|
|
4
5
|
name: string;
|
|
5
6
|
dir: string;
|
|
@@ -10,10 +11,16 @@ export interface ParsedChangesetFile {
|
|
|
10
11
|
summary: string;
|
|
11
12
|
packages: ReleaseCapsulePackage[];
|
|
12
13
|
}
|
|
14
|
+
export interface ReadReleaseCapsulesResult {
|
|
15
|
+
capsules: Map<string, ReleaseCapsule>;
|
|
16
|
+
issues: ReleaseCapsuleReadIssue[];
|
|
17
|
+
}
|
|
13
18
|
export declare function listChangesetFiles(fs: FsAdapter, workspaceRoot: string): Promise<string[]>;
|
|
14
19
|
export declare function readChangesets(fs: FsAdapter, workspaceRoot: string): Promise<ParsedChangesetFile[]>;
|
|
15
20
|
export declare function readReleaseCapsules(fs: FsAdapter, workspaceRoot: string, changesets: ParsedChangesetFile[]): Promise<Map<string, ReleaseCapsule>>;
|
|
21
|
+
export declare function readReleaseCapsulesDetailed(fs: FsAdapter, workspaceRoot: string, changesets: ParsedChangesetFile[]): Promise<ReadReleaseCapsulesResult>;
|
|
16
22
|
export declare function discoverWorkspacePackages(fs: FsAdapter, workspaceRoot: string): Promise<WorkspacePackageInfo[]>;
|
|
17
23
|
export declare function matchChangedFilesToPackages(changedFiles: string[], packages: WorkspacePackageInfo[]): string[];
|
|
18
24
|
export declare function renderChangesetMarkdown(summary: string, packages: ReleaseCapsulePackage[]): string;
|
|
19
25
|
export declare function renderReleaseCapsuleYaml(capsule: ReleaseCapsule): string;
|
|
26
|
+
export declare function formatReleaseCapsuleReadIssues(issues: ReleaseCapsuleReadIssue[]): string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AgentTarget, GeneratedReleaseManifest, ReleaseCapsulePackage, UpgradePlan, VersionBumpType } from '@contractspec/lib.contracts-spec';
|
|
1
|
+
import type { AgentTarget, GeneratedReleaseManifest, MigrationInstruction, ReleaseCapsulePackage, ReleaseCapsuleValidation, ReleaseImpactAudience, UpgradePlan, UpgradePlanStep, VersionBumpType } from '@contractspec/lib.contracts-spec';
|
|
2
2
|
export interface ReleaseInitOptions {
|
|
3
3
|
workspaceRoot?: string;
|
|
4
4
|
baseline?: string;
|
|
@@ -36,6 +36,58 @@ export interface ReleaseBuildResult {
|
|
|
36
36
|
upgradePlan: UpgradePlan;
|
|
37
37
|
releasesBuilt: number;
|
|
38
38
|
}
|
|
39
|
+
export interface ReleaseCapsuleReadIssue {
|
|
40
|
+
slug: string;
|
|
41
|
+
filePath: string;
|
|
42
|
+
message: string;
|
|
43
|
+
line?: number;
|
|
44
|
+
column?: number;
|
|
45
|
+
suggestion?: string;
|
|
46
|
+
}
|
|
47
|
+
export interface ReleaseAuthoringDraft {
|
|
48
|
+
slug: string;
|
|
49
|
+
summary: string;
|
|
50
|
+
releaseType: VersionBumpType;
|
|
51
|
+
isBreaking: boolean;
|
|
52
|
+
packages: ReleaseCapsulePackage[];
|
|
53
|
+
affectedRuntimes: string[];
|
|
54
|
+
affectedFrameworks: string[];
|
|
55
|
+
audiences: ReleaseImpactAudience[];
|
|
56
|
+
deprecations: string[];
|
|
57
|
+
migrationInstructions: MigrationInstruction[];
|
|
58
|
+
upgradeSteps: UpgradePlanStep[];
|
|
59
|
+
validation: ReleaseCapsuleValidation;
|
|
60
|
+
}
|
|
61
|
+
export interface ReleaseAuthoringOptions {
|
|
62
|
+
workspaceRoot?: string;
|
|
63
|
+
baseline?: string;
|
|
64
|
+
slug?: string;
|
|
65
|
+
summary?: string;
|
|
66
|
+
releaseType?: VersionBumpType;
|
|
67
|
+
packages?: string[];
|
|
68
|
+
}
|
|
69
|
+
export interface ReleaseAuthoringResult {
|
|
70
|
+
workspaceRoot: string;
|
|
71
|
+
source: 'created' | 'existing';
|
|
72
|
+
changesetPath: string;
|
|
73
|
+
capsulePath: string;
|
|
74
|
+
draft: ReleaseAuthoringDraft;
|
|
75
|
+
warnings: string[];
|
|
76
|
+
parseIssues: ReleaseCapsuleReadIssue[];
|
|
77
|
+
aiAssisted: boolean;
|
|
78
|
+
}
|
|
79
|
+
export interface SaveReleaseDraftOptions {
|
|
80
|
+
workspaceRoot?: string;
|
|
81
|
+
draft: ReleaseAuthoringDraft;
|
|
82
|
+
force?: boolean;
|
|
83
|
+
}
|
|
84
|
+
export interface SaveReleaseDraftResult {
|
|
85
|
+
source: 'created' | 'updated';
|
|
86
|
+
changesetPath: string;
|
|
87
|
+
capsulePath: string;
|
|
88
|
+
changesetContent: string;
|
|
89
|
+
capsuleContent: string;
|
|
90
|
+
}
|
|
39
91
|
export interface ReleaseCheckOptions {
|
|
40
92
|
workspaceRoot?: string;
|
|
41
93
|
baseline?: string;
|
|
@@ -40,10 +40,13 @@ export interface ExtendedWorkspaceInfo extends WorkspaceInfo {
|
|
|
40
40
|
*/
|
|
41
41
|
packageConfigPath?: string;
|
|
42
42
|
}
|
|
43
|
+
export interface WorkspaceInfoDeps {
|
|
44
|
+
getWorkspaceInfo?: typeof getWorkspaceInfo;
|
|
45
|
+
}
|
|
43
46
|
/**
|
|
44
47
|
* Get extended workspace information including config paths.
|
|
45
48
|
*/
|
|
46
|
-
export declare function getExtendedWorkspaceInfo(fs: FsAdapter, startDir?: string): Promise<ExtendedWorkspaceInfo>;
|
|
49
|
+
export declare function getExtendedWorkspaceInfo(fs: FsAdapter, startDir?: string, deps?: WorkspaceInfoDeps): Promise<ExtendedWorkspaceInfo>;
|
|
47
50
|
/**
|
|
48
51
|
* Find all .contractsrc.json files in a monorepo.
|
|
49
52
|
*
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
type Stability = 'experimental' | 'beta' | 'stable' | 'deprecated';
|
|
2
|
+
interface BaseTemplateData {
|
|
3
|
+
key: string;
|
|
4
|
+
version: string;
|
|
5
|
+
description: string;
|
|
6
|
+
owners: string[];
|
|
7
|
+
tags: string[];
|
|
8
|
+
stability: Stability;
|
|
9
|
+
title?: string;
|
|
10
|
+
domain?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface CapabilitySpecTemplateData extends BaseTemplateData {
|
|
13
|
+
kind?: 'api' | 'event' | 'data' | 'ui' | 'integration';
|
|
14
|
+
}
|
|
15
|
+
export interface PolicySpecTemplateData extends BaseTemplateData {
|
|
16
|
+
scope?: 'global' | 'feature' | 'operation';
|
|
17
|
+
}
|
|
18
|
+
export interface TestSpecTemplateData extends BaseTemplateData {
|
|
19
|
+
targetType: 'operation' | 'workflow';
|
|
20
|
+
targetKey: string;
|
|
21
|
+
targetVersion?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface TranslationSpecTemplateData extends BaseTemplateData {
|
|
24
|
+
locale: string;
|
|
25
|
+
fallback?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface JobSpecTemplateData extends BaseTemplateData {
|
|
28
|
+
intervalMs?: number;
|
|
29
|
+
}
|
|
30
|
+
export interface VisualizationSpecTemplateData extends BaseTemplateData {
|
|
31
|
+
sourceOperationKey: string;
|
|
32
|
+
sourceOperationVersion?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare function generateCapabilitySpec(data: CapabilitySpecTemplateData): string;
|
|
35
|
+
export declare function generatePolicySpec(data: PolicySpecTemplateData): string;
|
|
36
|
+
export declare function generateTestSpec(data: TestSpecTemplateData): string;
|
|
37
|
+
export declare function generateTranslationSpec(data: TranslationSpecTemplateData): string;
|
|
38
|
+
export declare function generateJobSpec(data: JobSpecTemplateData): string;
|
|
39
|
+
export declare function generateVisualizationSpec(data: VisualizationSpecTemplateData): string;
|
|
40
|
+
export {};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
type Stability = 'experimental' | 'beta' | 'stable' | 'deprecated';
|
|
2
|
+
interface BaseTemplateData {
|
|
3
|
+
key: string;
|
|
4
|
+
version: string;
|
|
5
|
+
description: string;
|
|
6
|
+
owners: string[];
|
|
7
|
+
tags: string[];
|
|
8
|
+
stability: Stability;
|
|
9
|
+
title?: string;
|
|
10
|
+
domain?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface ExampleSpecTemplateData extends BaseTemplateData {
|
|
13
|
+
packageName?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface AgentSpecTemplateData {
|
|
16
|
+
key: string;
|
|
17
|
+
version: string;
|
|
18
|
+
description: string;
|
|
19
|
+
owners: string[];
|
|
20
|
+
tags: string[];
|
|
21
|
+
stability: Stability;
|
|
22
|
+
instructions: string;
|
|
23
|
+
}
|
|
24
|
+
export interface ProductIntentSpecTemplateData extends BaseTemplateData {
|
|
25
|
+
id?: string;
|
|
26
|
+
question: string;
|
|
27
|
+
}
|
|
28
|
+
export interface HarnessScenarioSpecTemplateData extends BaseTemplateData {
|
|
29
|
+
}
|
|
30
|
+
export interface HarnessSuiteSpecTemplateData extends BaseTemplateData {
|
|
31
|
+
scenarioKey: string;
|
|
32
|
+
scenarioVersion?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare function generateExampleSpec(data: ExampleSpecTemplateData): string;
|
|
35
|
+
export declare function generateAgentSpec(data: AgentSpecTemplateData): string;
|
|
36
|
+
export declare function generateProductIntentSpec(data: ProductIntentSpecTemplateData): string;
|
|
37
|
+
export declare function generateHarnessScenarioSpec(data: HarnessScenarioSpecTemplateData): string;
|
|
38
|
+
export declare function generateHarnessSuiteSpec(data: HarnessSuiteSpecTemplateData): string;
|
|
39
|
+
export {};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Spec templates for generation.
|
|
3
3
|
*/
|
|
4
|
+
export * from './additional-contracts.template';
|
|
5
|
+
export * from './advanced-contracts.template';
|
|
4
6
|
export * from './app-config.template';
|
|
5
7
|
export * from './data-view.template';
|
|
6
8
|
export * from './data-view-renderer.template';
|
|
@@ -15,6 +17,7 @@ export * from './migration.template';
|
|
|
15
17
|
export * from './operation.template';
|
|
16
18
|
export * from './presentation.template';
|
|
17
19
|
export * from './telemetry.template';
|
|
20
|
+
export * from './theme.template';
|
|
18
21
|
export * from './workflow.template';
|
|
19
22
|
export * from './workflow-devkit.template';
|
|
20
23
|
export * from './workflow-runner.template';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface ThemeSpecParams {
|
|
2
|
+
key: string;
|
|
3
|
+
version: string;
|
|
4
|
+
title: string;
|
|
5
|
+
description: string;
|
|
6
|
+
domain: string;
|
|
7
|
+
owners: string[];
|
|
8
|
+
tags: string[];
|
|
9
|
+
stability: 'experimental' | 'beta' | 'stable' | 'deprecated';
|
|
10
|
+
scopes: Array<'global' | 'tenant' | 'user'>;
|
|
11
|
+
}
|
|
12
|
+
export declare function generateThemeSpec(params: ThemeSpecParams): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export type SpecType = 'operation' | 'event' | 'presentation' | 'form' | 'feature' | 'workflow' | 'data-view' | 'migration' | 'telemetry' | 'experiment' | 'app-config' | 'integration' | 'knowledge';
|
|
2
1
|
export type OpKind = 'command' | 'query';
|
|
3
2
|
export type PresentationKind = 'web_component' | 'markdown' | 'data';
|
|
4
3
|
export type Stability = 'experimental' | 'beta' | 'stable' | 'deprecated';
|
|
@@ -194,7 +193,7 @@ export interface ExperimentSpecData extends BaseSpecData {
|
|
|
194
193
|
}
|
|
195
194
|
export interface AppConfigMappingData {
|
|
196
195
|
slot: string;
|
|
197
|
-
|
|
196
|
+
key: string;
|
|
198
197
|
version?: string;
|
|
199
198
|
}
|
|
200
199
|
export interface AppConfigFeatureFlagData {
|
|
@@ -208,15 +207,21 @@ export interface AppRouteConfigData {
|
|
|
208
207
|
label?: string;
|
|
209
208
|
dataView?: string;
|
|
210
209
|
workflow?: string;
|
|
211
|
-
|
|
210
|
+
guardKey?: string;
|
|
212
211
|
guardVersion?: string;
|
|
213
212
|
featureFlag?: string;
|
|
214
|
-
|
|
213
|
+
experimentKey?: string;
|
|
215
214
|
experimentVersion?: string;
|
|
216
215
|
}
|
|
217
|
-
export interface AppBlueprintSpecData
|
|
216
|
+
export interface AppBlueprintSpecData {
|
|
217
|
+
key: string;
|
|
218
|
+
version: string;
|
|
218
219
|
title: string;
|
|
220
|
+
description: string;
|
|
219
221
|
domain: string;
|
|
222
|
+
owners: string[];
|
|
223
|
+
tags: string[];
|
|
224
|
+
stability: Stability;
|
|
220
225
|
appId: string;
|
|
221
226
|
capabilitiesEnabled: string[];
|
|
222
227
|
capabilitiesDisabled: string[];
|
|
@@ -225,27 +230,27 @@ export interface AppBlueprintSpecData extends BaseSpecData {
|
|
|
225
230
|
dataViews: AppConfigMappingData[];
|
|
226
231
|
workflows: AppConfigMappingData[];
|
|
227
232
|
policyRefs: {
|
|
228
|
-
|
|
233
|
+
key: string;
|
|
229
234
|
version?: string;
|
|
230
235
|
}[];
|
|
231
236
|
theme?: {
|
|
232
|
-
|
|
237
|
+
key: string;
|
|
233
238
|
version: string;
|
|
234
239
|
};
|
|
235
240
|
themeFallbacks: {
|
|
236
|
-
|
|
241
|
+
key: string;
|
|
237
242
|
version: string;
|
|
238
243
|
}[];
|
|
239
244
|
telemetry?: {
|
|
240
|
-
|
|
245
|
+
key: string;
|
|
241
246
|
version?: string;
|
|
242
247
|
};
|
|
243
248
|
activeExperiments: {
|
|
244
|
-
|
|
249
|
+
key: string;
|
|
245
250
|
version?: string;
|
|
246
251
|
}[];
|
|
247
252
|
pausedExperiments: {
|
|
248
|
-
|
|
253
|
+
key: string;
|
|
249
254
|
version?: string;
|
|
250
255
|
}[];
|
|
251
256
|
featureFlags: AppConfigFeatureFlagData[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/bundle.workspace",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"description": "Workspace utilities for monorepo development",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -33,16 +33,17 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@ai-sdk/anthropic": "3.0.68",
|
|
35
35
|
"@ai-sdk/openai": "3.0.52",
|
|
36
|
-
"@contractspec/biome-config": "3.8.
|
|
37
|
-
"@contractspec/integration.runtime": "3.9.
|
|
38
|
-
"@contractspec/lib.ai-agent": "8.0.
|
|
39
|
-
"@contractspec/lib.ai-providers": "3.7.
|
|
40
|
-
"@contractspec/lib.contracts-spec": "5.
|
|
41
|
-
"@contractspec/lib.contracts-integrations": "3.8.
|
|
42
|
-
"@contractspec/lib.contracts-transformers": "3.7.
|
|
43
|
-
"@contractspec/lib.
|
|
44
|
-
"@contractspec/
|
|
45
|
-
"@contractspec/
|
|
36
|
+
"@contractspec/biome-config": "3.8.8",
|
|
37
|
+
"@contractspec/integration.runtime": "3.9.3",
|
|
38
|
+
"@contractspec/lib.ai-agent": "8.0.9",
|
|
39
|
+
"@contractspec/lib.ai-providers": "3.7.14",
|
|
40
|
+
"@contractspec/lib.contracts-spec": "5.5.0",
|
|
41
|
+
"@contractspec/lib.contracts-integrations": "3.8.13",
|
|
42
|
+
"@contractspec/lib.contracts-transformers": "3.7.21",
|
|
43
|
+
"@contractspec/lib.surface-runtime": "0.5.21",
|
|
44
|
+
"@contractspec/lib.source-extractors": "2.7.21",
|
|
45
|
+
"@contractspec/module.workspace": "4.3.1",
|
|
46
|
+
"@contractspec/lib.utils-typescript": "3.7.14",
|
|
46
47
|
"ai": "6.0.156",
|
|
47
48
|
"chalk": "^5.6.2",
|
|
48
49
|
"chokidar": "^5.0.0",
|
|
@@ -56,11 +57,11 @@
|
|
|
56
57
|
},
|
|
57
58
|
"devDependencies": {
|
|
58
59
|
"@contractspec/tool.typescript": "3.7.13",
|
|
59
|
-
"@types/bun": "^1.3.
|
|
60
|
+
"@types/bun": "^1.3.12",
|
|
60
61
|
"@types/micromatch": "^4.0.10",
|
|
61
62
|
"@types/node": "^25.6.0",
|
|
62
63
|
"typescript": "^5.9.3",
|
|
63
|
-
"@contractspec/tool.bun": "3.7.
|
|
64
|
+
"@contractspec/tool.bun": "3.7.15"
|
|
64
65
|
},
|
|
65
66
|
"exports": {
|
|
66
67
|
".": {
|