@nylorun/harness 0.9.0-beta.1 → 0.11.0-beta
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/CHANGELOG.md +54 -0
- package/README.md +5 -79
- package/dist/build/bind-tool.js +4 -3
- package/dist/build/helpers.d.ts +2 -2
- package/dist/build/schema.d.ts +11 -16
- package/dist/build/schema.js +141 -22
- package/dist/errors.d.ts +1 -1
- package/dist/index.d.ts +6 -3
- package/dist/index.js +2 -0
- package/dist/model/adapters.d.ts +48 -5
- package/dist/model/adapters.js +128 -14
- package/dist/model/normalize.js +34 -3
- package/dist/model/prepared.d.ts +16 -0
- package/dist/model/prepared.js +11 -0
- package/dist/session/event-log.d.ts +4 -3
- package/dist/session/input-queue.d.ts +7 -4
- package/dist/session/input-queue.js +12 -0
- package/dist/session/output-contract.d.ts +6 -0
- package/dist/session/output-contract.js +12 -0
- package/dist/session/scheduler.js +1 -1
- package/dist/session/seed.js +78 -4
- package/dist/session/session.d.ts +8 -5
- package/dist/session/session.js +38 -2
- package/dist/session/state.d.ts +1 -1
- package/dist/session/submission-stream.d.ts +5 -4
- package/dist/step/context-draft.js +1 -7
- package/dist/step/model-configuration.js +5 -19
- package/dist/step/project.js +25 -3
- package/dist/step/resolve.d.ts +1 -0
- package/dist/step/resolve.js +1 -0
- package/dist/step/run.d.ts +1 -0
- package/dist/step/run.js +24 -3
- package/dist/step/seal.d.ts +4 -2
- package/dist/step/seal.js +63 -12
- package/dist/turn/plan-runner.js +38 -3
- package/dist/turn/runner.d.ts +6 -4
- package/dist/turn/runner.js +6 -4
- package/dist/types/middleware.d.ts +1 -1
- package/dist/types/model.d.ts +21 -13
- package/dist/types/session.d.ts +34 -13
- package/dist/types/shared.d.ts +16 -3
- package/dist/types/tool.d.ts +54 -17
- package/package.json +11 -12
- package/dist/utils/digest.d.ts +0 -1
- package/dist/utils/digest.js +0 -14
package/dist/types/model.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ContextItem, DeferredOutcome, JsonObject } from "./shared.js";
|
|
1
|
+
import type { ContextItem, DeferredOutcome, JsonObject, JsonValue } from "./shared.js";
|
|
2
2
|
import type { InputEvent, TranscriptEntry } from "./session.js";
|
|
3
3
|
import type { BoundToolDefinition, ToolResult } from "./tool.js";
|
|
4
4
|
export interface ModelToolCall {
|
|
@@ -12,6 +12,9 @@ export type ModelOutputBlock = {
|
|
|
12
12
|
} | {
|
|
13
13
|
readonly type: "reasoning";
|
|
14
14
|
readonly text: string;
|
|
15
|
+
} | {
|
|
16
|
+
readonly type: "json";
|
|
17
|
+
readonly value: JsonValue;
|
|
15
18
|
} | {
|
|
16
19
|
readonly type: "tool-call";
|
|
17
20
|
readonly id: string;
|
|
@@ -58,34 +61,27 @@ export interface ModelConfigurationContributor {
|
|
|
58
61
|
readonly middlewareId: string;
|
|
59
62
|
readonly slot: string;
|
|
60
63
|
readonly order: number;
|
|
61
|
-
readonly digest: string;
|
|
62
64
|
readonly reason?: string;
|
|
63
65
|
}
|
|
64
66
|
export interface ModelConfigurationTool {
|
|
65
67
|
readonly name: string;
|
|
66
68
|
readonly description?: string;
|
|
67
69
|
readonly inputSchema: JsonObject;
|
|
68
|
-
readonly
|
|
70
|
+
readonly outputSchema?: JsonObject;
|
|
69
71
|
readonly contributor: ModelConfigurationContributor;
|
|
70
72
|
}
|
|
71
73
|
export interface ModelConfigurationInstruction {
|
|
72
74
|
readonly text: string;
|
|
73
|
-
readonly digest: string;
|
|
74
75
|
readonly contributor: ModelConfigurationContributor;
|
|
75
76
|
}
|
|
76
77
|
export interface ModelConfigurationSnapshot {
|
|
77
78
|
readonly version: 1;
|
|
78
79
|
readonly model?: ModelDirective;
|
|
79
80
|
readonly instructions: readonly ModelConfigurationInstruction[];
|
|
80
|
-
/** Bound tools are retained for execution
|
|
81
|
+
/** Bound tools are retained for execution. */
|
|
81
82
|
readonly tools: readonly BoundToolDefinition[];
|
|
82
83
|
readonly toolContracts: readonly ModelConfigurationTool[];
|
|
83
84
|
readonly contributors: readonly ModelConfigurationContributor[];
|
|
84
|
-
readonly digests: Readonly<{
|
|
85
|
-
readonly logical: string;
|
|
86
|
-
readonly model: string;
|
|
87
|
-
readonly request: string;
|
|
88
|
-
}>;
|
|
89
85
|
}
|
|
90
86
|
/** A middleware-owned declaration for this model call's runtime context. */
|
|
91
87
|
export interface ContextMutationOptions {
|
|
@@ -96,14 +92,12 @@ export interface ContextContributor {
|
|
|
96
92
|
readonly middlewareId: string;
|
|
97
93
|
readonly slot: string;
|
|
98
94
|
readonly order: number;
|
|
99
|
-
readonly digest: string;
|
|
100
95
|
readonly reason?: string;
|
|
101
96
|
}
|
|
102
|
-
/** Canonical runtime context for one model call.
|
|
97
|
+
/** Canonical runtime context for one model call. */
|
|
103
98
|
export interface ContextSnapshot {
|
|
104
99
|
readonly items: readonly ContextItem[];
|
|
105
100
|
readonly contributors: readonly ContextContributor[];
|
|
106
|
-
readonly digest: string;
|
|
107
101
|
}
|
|
108
102
|
export interface ModelRequest {
|
|
109
103
|
readonly sessionId: string;
|
|
@@ -119,10 +113,16 @@ export interface ModelRequest {
|
|
|
119
113
|
readonly toolResults: readonly ToolResult[];
|
|
120
114
|
/** Tools are normalized and immutable by the time a Model sees them. */
|
|
121
115
|
readonly tools: readonly BoundToolDefinition[];
|
|
116
|
+
/** Optional portable contract for this turn's terminal JSON result. */
|
|
117
|
+
readonly outputSchema?: JsonObject;
|
|
122
118
|
}
|
|
123
119
|
export type PromptContentPart = {
|
|
124
120
|
readonly type: "text";
|
|
125
121
|
readonly text: string;
|
|
122
|
+
} | {
|
|
123
|
+
readonly type: "media";
|
|
124
|
+
readonly mediaType: string;
|
|
125
|
+
readonly reference: JsonValue;
|
|
126
126
|
} | {
|
|
127
127
|
readonly type: "tool-call";
|
|
128
128
|
readonly id: string;
|
|
@@ -157,11 +157,19 @@ export interface ModelCall {
|
|
|
157
157
|
readonly model?: ModelDirective;
|
|
158
158
|
readonly prompt: readonly PromptItem[];
|
|
159
159
|
readonly tools: readonly ModelCallTool[];
|
|
160
|
+
/** Optional portable contract for this turn's terminal JSON result. */
|
|
161
|
+
readonly outputSchema?: JsonObject;
|
|
160
162
|
readonly sessionId: string;
|
|
161
163
|
}
|
|
162
164
|
export interface ModelAdapterContext {
|
|
163
165
|
readonly request: ModelRequest;
|
|
164
166
|
readonly invocationId: string;
|
|
165
167
|
readonly signal: AbortSignal;
|
|
168
|
+
/** Publishes one JSON-safe provider request derived from the canonical ModelCall. */
|
|
169
|
+
reportPreparedCall(prepared: ModelPreparedCall): void;
|
|
170
|
+
}
|
|
171
|
+
export interface ModelPreparedCall {
|
|
172
|
+
readonly adapter: string;
|
|
173
|
+
readonly call: JsonValue;
|
|
166
174
|
}
|
|
167
175
|
export type ModelAdapter = (call: ModelCall, context: ModelAdapterContext) => Promise<ModelCandidate | string | DeferredOutcome>;
|
package/dist/types/session.d.ts
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import type { ModelCall, ModelCandidate } from "./model.js";
|
|
2
2
|
import type { JsonObject, JsonValue, Observer, Tripwire } from "./shared.js";
|
|
3
|
-
import type { RequiredInteraction, ToolExecutionResume, ToolOwner, ToolResult } from "./tool.js";
|
|
3
|
+
import type { RequiredInteraction, SchemaOutput, ToolExecutionResume, ToolOwner, ToolResult, ToolSchemaSource } from "./tool.js";
|
|
4
4
|
export type InputEvent = {
|
|
5
|
-
readonly kind: "user-message";
|
|
5
|
+
readonly kind: "user-message" | "interrupt";
|
|
6
6
|
readonly text: string;
|
|
7
7
|
readonly metadata?: JsonObject;
|
|
8
8
|
} | {
|
|
9
|
-
readonly kind: "interrupt";
|
|
10
|
-
readonly
|
|
9
|
+
readonly kind: "user-message" | "interrupt";
|
|
10
|
+
readonly content: readonly UserContentPart[];
|
|
11
|
+
/** Undefined for content-bearing events; retained for text-event narrowing compatibility. */
|
|
12
|
+
readonly text?: undefined;
|
|
11
13
|
readonly metadata?: JsonObject;
|
|
12
14
|
} | {
|
|
13
15
|
readonly kind: "approve";
|
|
@@ -18,7 +20,7 @@ export type InputEvent = {
|
|
|
18
20
|
readonly interactionId: string;
|
|
19
21
|
readonly value: JsonValue;
|
|
20
22
|
};
|
|
21
|
-
export type SessionEvent = {
|
|
23
|
+
export type SessionEvent<Output = string> = {
|
|
22
24
|
readonly type: "input";
|
|
23
25
|
readonly event: InputEvent;
|
|
24
26
|
readonly turnId: string;
|
|
@@ -29,7 +31,7 @@ export type SessionEvent = {
|
|
|
29
31
|
readonly candidate: ModelCandidate;
|
|
30
32
|
} | {
|
|
31
33
|
readonly type: "final";
|
|
32
|
-
readonly output:
|
|
34
|
+
readonly output: Output;
|
|
33
35
|
readonly turnId: string;
|
|
34
36
|
} | {
|
|
35
37
|
readonly type: "interaction.required";
|
|
@@ -58,14 +60,14 @@ export type SessionEvent = {
|
|
|
58
60
|
readonly type: "session.stopped";
|
|
59
61
|
readonly sessionId: string;
|
|
60
62
|
};
|
|
61
|
-
export interface InputCompletion {
|
|
63
|
+
export interface InputCompletion<Output = string> {
|
|
62
64
|
readonly inputId: string;
|
|
63
65
|
readonly status: "completed" | "waiting" | "rejected" | "cancelled" | "stopped";
|
|
64
|
-
readonly events: readonly SessionEvent[];
|
|
66
|
+
readonly events: readonly SessionEvent<Output>[];
|
|
65
67
|
}
|
|
66
|
-
export interface InputHandle {
|
|
68
|
+
export interface InputHandle<Output = string> {
|
|
67
69
|
readonly inputId: string;
|
|
68
|
-
readonly completed: Promise<InputCompletion
|
|
70
|
+
readonly completed: Promise<InputCompletion<Output>>;
|
|
69
71
|
}
|
|
70
72
|
export interface SessionOptions {
|
|
71
73
|
readonly id?: string;
|
|
@@ -91,9 +93,25 @@ export type SessionRunOptions = SessionOptions | SeededSessionOptions;
|
|
|
91
93
|
export interface InputOptions {
|
|
92
94
|
readonly signal?: AbortSignal;
|
|
93
95
|
}
|
|
96
|
+
/** Per-turn, locally-enforced terminal JSON contract. */
|
|
97
|
+
export interface OutputInputOptions<Schema extends ToolSchemaSource = ToolSchemaSource> extends InputOptions {
|
|
98
|
+
readonly outputSchema?: Schema;
|
|
99
|
+
}
|
|
100
|
+
/** Ordered, model-visible user content. Media references stay host-owned JSON values. */
|
|
101
|
+
export type UserContentPart = {
|
|
102
|
+
readonly type: "text";
|
|
103
|
+
readonly text: string;
|
|
104
|
+
} | {
|
|
105
|
+
readonly type: "media";
|
|
106
|
+
readonly mediaType: string;
|
|
107
|
+
readonly reference: JsonValue;
|
|
108
|
+
};
|
|
94
109
|
export type MessageInput = string | {
|
|
95
110
|
readonly text: string;
|
|
96
111
|
readonly metadata?: JsonObject;
|
|
112
|
+
} | {
|
|
113
|
+
readonly content: readonly UserContentPart[];
|
|
114
|
+
readonly metadata?: JsonObject;
|
|
97
115
|
};
|
|
98
116
|
export type InteractionReply = Extract<InputEvent, {
|
|
99
117
|
kind: "approve" | "respond";
|
|
@@ -121,7 +139,7 @@ export interface TranscriptFinalEntry {
|
|
|
121
139
|
readonly kind: "final";
|
|
122
140
|
readonly turnId: string;
|
|
123
141
|
readonly stepId: string;
|
|
124
|
-
readonly output:
|
|
142
|
+
readonly output: JsonValue;
|
|
125
143
|
}
|
|
126
144
|
export type TranscriptEntry = TranscriptInputEntry | TranscriptCandidateEntry | TranscriptToolsEntry | TranscriptFinalEntry;
|
|
127
145
|
export interface SessionSnapshot {
|
|
@@ -197,10 +215,13 @@ export interface SessionRecorder {
|
|
|
197
215
|
export interface Session {
|
|
198
216
|
readonly id: string;
|
|
199
217
|
readonly state: SessionSnapshot;
|
|
200
|
-
input(event:
|
|
218
|
+
input<Schema extends ToolSchemaSource>(event: MessageInput, options: OutputInputOptions<Schema> & {
|
|
219
|
+
readonly outputSchema: Schema;
|
|
220
|
+
}): InputHandle<SchemaOutput<Schema>>;
|
|
221
|
+
input(event: SessionInput, options?: InputOptions): InputHandle<string>;
|
|
201
222
|
interrupt(event: MessageInput, options?: InputOptions): InputHandle;
|
|
202
223
|
continue(options?: InputOptions): InputHandle;
|
|
203
|
-
stream(): AsyncIterable<SessionEvent
|
|
224
|
+
stream(): AsyncIterable<SessionEvent<JsonValue>>;
|
|
204
225
|
observe(listener: Observer): () => void;
|
|
205
226
|
stop(reason?: string): Promise<void>;
|
|
206
227
|
}
|
package/dist/types/shared.d.ts
CHANGED
|
@@ -33,7 +33,10 @@ export interface ObserveToolSnapshot {
|
|
|
33
33
|
readonly middlewareId: string;
|
|
34
34
|
readonly slot: string;
|
|
35
35
|
};
|
|
36
|
-
readonly
|
|
36
|
+
readonly inputSchema: {
|
|
37
|
+
readonly jsonSchema: JsonObject;
|
|
38
|
+
};
|
|
39
|
+
readonly outputSchema?: {
|
|
37
40
|
readonly jsonSchema: JsonObject;
|
|
38
41
|
};
|
|
39
42
|
}
|
|
@@ -55,7 +58,7 @@ export interface ObserveSealedCall {
|
|
|
55
58
|
export interface ObserveModelRequested {
|
|
56
59
|
/** The exact immutable logical input supplied to the ModelAdapter. */
|
|
57
60
|
readonly call: ModelCall;
|
|
58
|
-
/** Canonical configuration facts and attribution
|
|
61
|
+
/** Canonical configuration facts and attribution. */
|
|
59
62
|
readonly configuration: ObserveModelConfigurationSnapshot;
|
|
60
63
|
/** Current-step runtime context and attribution. */
|
|
61
64
|
readonly context: ContextSnapshot;
|
|
@@ -104,6 +107,16 @@ export type ObserveEvent = {
|
|
|
104
107
|
readonly inputId?: string;
|
|
105
108
|
readonly requestedModelId?: string;
|
|
106
109
|
readonly attributes: ObserveModelRequested;
|
|
110
|
+
} | {
|
|
111
|
+
readonly type: "model.prepared";
|
|
112
|
+
readonly turnId: string;
|
|
113
|
+
readonly stepId: string;
|
|
114
|
+
readonly inputId?: string;
|
|
115
|
+
readonly requestedModelId?: string;
|
|
116
|
+
readonly attributes: {
|
|
117
|
+
readonly adapter: string;
|
|
118
|
+
readonly call: JsonValue;
|
|
119
|
+
};
|
|
107
120
|
} | {
|
|
108
121
|
readonly type: "model.completed";
|
|
109
122
|
readonly turnId: string;
|
|
@@ -206,7 +219,7 @@ export type ObserveEvent = {
|
|
|
206
219
|
readonly stepId: string;
|
|
207
220
|
readonly inputId?: string;
|
|
208
221
|
readonly attributes: {
|
|
209
|
-
readonly output:
|
|
222
|
+
readonly output: JsonValue;
|
|
210
223
|
};
|
|
211
224
|
} | {
|
|
212
225
|
readonly type: "interaction.required";
|
package/dist/types/tool.d.ts
CHANGED
|
@@ -1,29 +1,61 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ZodType } from "zod";
|
|
2
2
|
import type { DeferredOutcome, JsonObject, JsonValue } from "./shared.js";
|
|
3
|
-
|
|
3
|
+
export interface SchemaIssue {
|
|
4
|
+
readonly path: readonly (string | number)[];
|
|
5
|
+
readonly code: string;
|
|
6
|
+
readonly message: string;
|
|
7
|
+
}
|
|
8
|
+
export type SchemaValidation<T> = {
|
|
4
9
|
readonly ok: true;
|
|
5
10
|
readonly value: T;
|
|
6
|
-
}
|
|
7
|
-
type SchemaValidationFailure = {
|
|
11
|
+
} | {
|
|
8
12
|
readonly ok: false;
|
|
9
|
-
readonly issues: readonly
|
|
13
|
+
readonly issues: readonly SchemaIssue[];
|
|
10
14
|
};
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
export type ToolObjectSchema = ZodObject;
|
|
14
|
-
export interface BoundToolSchema<T> {
|
|
15
|
+
/** The portable, locally-enforced schema contract accepted by a Harness tool. */
|
|
16
|
+
export interface ToolSchema<T> {
|
|
15
17
|
readonly jsonSchema: JsonObject;
|
|
16
18
|
validate(value: unknown): SchemaValidation<T>;
|
|
17
19
|
}
|
|
18
|
-
|
|
20
|
+
/** The synchronous Standard Schema subset required to project and validate a tool contract. */
|
|
21
|
+
export interface StandardToolSchema<Input = unknown, Output = unknown> {
|
|
22
|
+
readonly "~standard": {
|
|
23
|
+
readonly validate: (value: Input) => {
|
|
24
|
+
readonly value: Output;
|
|
25
|
+
readonly issues?: undefined;
|
|
26
|
+
} | {
|
|
27
|
+
readonly issues: readonly StandardSchemaIssue[];
|
|
28
|
+
readonly value?: undefined;
|
|
29
|
+
} | Promise<unknown>;
|
|
30
|
+
readonly jsonSchema: {
|
|
31
|
+
readonly input: () => unknown;
|
|
32
|
+
readonly output: () => unknown;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
export interface StandardSchemaIssue {
|
|
37
|
+
readonly message?: string;
|
|
38
|
+
readonly path?: readonly (string | number | symbol)[];
|
|
39
|
+
readonly code?: string;
|
|
40
|
+
}
|
|
41
|
+
export type ToolSchemaSource<T = unknown> = ZodType<T> | StandardToolSchema<any, T> | ToolSchema<T>;
|
|
42
|
+
export type SchemaOutput<Schema> = Schema extends ZodType<infer Value> ? Value : Schema extends StandardToolSchema<any, infer Value> ? Value : Schema extends ToolSchema<infer Value> ? Value : never;
|
|
43
|
+
export type ToolInputSchema = ToolSchemaSource;
|
|
44
|
+
export type ToolOutputSchema = ToolSchemaSource;
|
|
45
|
+
export interface BoundToolSchema<T> extends ToolSchema<T> {
|
|
46
|
+
}
|
|
47
|
+
type OutputFor<Schema> = Schema extends ToolSchemaSource ? SchemaOutput<Schema> : ToolContent;
|
|
48
|
+
export interface ToolDefinition<InputSchema extends ToolInputSchema = ToolInputSchema, State = never, OutputSchema extends ToolOutputSchema | undefined = undefined> {
|
|
19
49
|
readonly name: string;
|
|
20
50
|
readonly description?: string;
|
|
21
|
-
readonly
|
|
22
|
-
|
|
51
|
+
readonly inputSchema: InputSchema;
|
|
52
|
+
readonly outputSchema?: OutputSchema;
|
|
53
|
+
execute(args: SchemaOutput<InputSchema>, context: ToolExecutionContext<State>): Promise<ToolOutcome<OutputFor<OutputSchema>>>;
|
|
23
54
|
}
|
|
24
|
-
export interface BoundToolDefinition<
|
|
25
|
-
readonly
|
|
26
|
-
readonly
|
|
55
|
+
export interface BoundToolDefinition<State = never> extends Omit<ToolDefinition<ToolInputSchema, State, ToolOutputSchema | undefined>, "inputSchema" | "outputSchema" | "execute"> {
|
|
56
|
+
readonly inputSchema: BoundToolSchema<unknown>;
|
|
57
|
+
readonly outputSchema?: BoundToolSchema<unknown>;
|
|
58
|
+
readonly execute: (args: unknown, context: ToolExecutionContext<State>) => Promise<ToolOutcome>;
|
|
27
59
|
readonly owner: ToolOwner;
|
|
28
60
|
}
|
|
29
61
|
export interface ToolOwner {
|
|
@@ -64,9 +96,9 @@ export type ToolExecutionContext<State = never> = ToolExecutionContextBase & ([S
|
|
|
64
96
|
readonly state: Promise<State>;
|
|
65
97
|
});
|
|
66
98
|
export type ToolContent = JsonValue;
|
|
67
|
-
export type ToolOutcome = {
|
|
99
|
+
export type ToolOutcome<Output = ToolContent> = {
|
|
68
100
|
readonly kind: "completed";
|
|
69
|
-
readonly output:
|
|
101
|
+
readonly output: Output;
|
|
70
102
|
} | {
|
|
71
103
|
readonly kind: "denied";
|
|
72
104
|
readonly reason: string;
|
|
@@ -79,6 +111,10 @@ export type ToolOutcome = {
|
|
|
79
111
|
readonly interaction: Interaction;
|
|
80
112
|
readonly token?: JsonValue;
|
|
81
113
|
} | DeferredOutcome;
|
|
114
|
+
export interface ToolValidationFailureDetails {
|
|
115
|
+
readonly phase: "input" | "output";
|
|
116
|
+
readonly issues: readonly SchemaIssue[];
|
|
117
|
+
}
|
|
82
118
|
export type ToolResult = {
|
|
83
119
|
readonly callId: string;
|
|
84
120
|
readonly toolName: string;
|
|
@@ -95,5 +131,6 @@ export type ToolResult = {
|
|
|
95
131
|
readonly kind: "failed";
|
|
96
132
|
readonly code: string;
|
|
97
133
|
readonly message: string;
|
|
134
|
+
readonly details?: ToolValidationFailureDetails;
|
|
98
135
|
};
|
|
99
136
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nylorun/harness",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.11.0-beta",
|
|
4
|
+
"description": "Nylorun's TypeScript agent runtime. See github.com/nylorun/harness.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "git+https://github.com/nylorun/harness.git",
|
|
10
10
|
"directory": "harness"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://github.com/nylorun/harness
|
|
12
|
+
"homepage": "https://github.com/nylorun/harness",
|
|
13
13
|
"bugs": "https://github.com/nylorun/harness/issues",
|
|
14
14
|
"author": "Nylo",
|
|
15
15
|
"keywords": [
|
|
@@ -48,26 +48,25 @@
|
|
|
48
48
|
"node": "^22.14.0 || ^24.0.0 || >=26.0.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
|
-
"
|
|
52
|
-
"
|
|
51
|
+
"build": "npm run clean && node ../scripts/check-typescript-version.mjs && tsc -p tsconfig.json",
|
|
52
|
+
"check": "npm run format:check && npm run build && npm run test:types && npm test && node scripts/check-package.mjs",
|
|
53
|
+
"typecheck": "node ../scripts/check-typescript-version.mjs && tsc -p tsconfig.json --noEmit",
|
|
53
54
|
"test": "vitest run",
|
|
55
|
+
"test:types": "tsc -p test/types/tsconfig.json",
|
|
54
56
|
"format": "prettier --write .",
|
|
55
57
|
"format:check": "prettier --check .",
|
|
56
|
-
"
|
|
57
|
-
"check": "npm run format:check && npm run build && npm run test:types && npm test && node scripts/check-package.mjs",
|
|
58
|
+
"clean": "node -e \"import('node:fs').then(({rmSync})=>rmSync('dist',{recursive:true,force:true}))\"",
|
|
58
59
|
"prepack": "npm run build"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
62
|
"@types/node": "^22.18.0",
|
|
63
|
+
"@typescript/native": "npm:typescript@^7.0.2",
|
|
62
64
|
"prettier": "^3.9.6",
|
|
63
|
-
"typescript": "
|
|
64
|
-
"vitest": "^
|
|
65
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
66
|
+
"vitest": "^4.1.11",
|
|
65
67
|
"zod": "^4.1.12"
|
|
66
68
|
},
|
|
67
69
|
"peerDependencies": {
|
|
68
70
|
"zod": "^4.1.12"
|
|
69
|
-
},
|
|
70
|
-
"dependencies": {
|
|
71
|
-
"@noble/hashes": "^2.3.0"
|
|
72
71
|
}
|
|
73
72
|
}
|
package/dist/utils/digest.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const digest: (value: unknown) => string;
|
package/dist/utils/digest.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { sha256 } from "@noble/hashes/sha2.js";
|
|
2
|
-
import { bytesToHex, utf8ToBytes } from "@noble/hashes/utils.js";
|
|
3
|
-
function canonical(value) {
|
|
4
|
-
if (Array.isArray(value))
|
|
5
|
-
return `[${value.map(canonical).join(",")}]`;
|
|
6
|
-
if (value && typeof value === "object") {
|
|
7
|
-
return `{${Object.entries(value)
|
|
8
|
-
.sort(([a], [b]) => a.localeCompare(b))
|
|
9
|
-
.map(([key, item]) => `${JSON.stringify(key)}:${canonical(item)}`)
|
|
10
|
-
.join(",")}}`;
|
|
11
|
-
}
|
|
12
|
-
return JSON.stringify(value);
|
|
13
|
-
}
|
|
14
|
-
export const digest = (value) => bytesToHex(sha256(utf8ToBytes(canonical(value))));
|