@riddledc/riddle-proof 0.5.45 → 0.5.47
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 +22 -0
- package/dist/checkpoint.cjs +204 -1
- package/dist/checkpoint.d.cts +16 -1
- package/dist/checkpoint.d.ts +16 -1
- package/dist/checkpoint.js +4 -2
- package/dist/{chunk-CHRYLX6N.js → chunk-ALP5KOS2.js} +128 -15
- package/dist/{chunk-W7VTDN4T.js → chunk-DUFDZJOF.js} +1 -0
- package/dist/chunk-JFQXAJH2.js +0 -0
- package/dist/{chunk-7S7O3NKF.js → chunk-JOXTKWX6.js} +6 -1
- package/dist/{chunk-MRSYJMF4.js → chunk-N3ZNBRIG.js} +2 -2
- package/dist/chunk-NOBFZDZG.js +754 -0
- package/dist/chunk-PLSGW2GI.js +161 -0
- package/dist/{chunk-LXE5YUYY.js → chunk-R6SCWJCI.js} +204 -2
- package/dist/cli.cjs +6134 -0
- package/dist/cli.d.cts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +166 -0
- package/dist/codex-exec-agent.cjs +790 -0
- package/dist/codex-exec-agent.d.cts +91 -0
- package/dist/codex-exec-agent.d.ts +91 -0
- package/dist/codex-exec-agent.js +10 -0
- package/dist/engine-harness.cjs +740 -279
- package/dist/engine-harness.js +5 -4
- package/dist/index.cjs +1475 -247
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +45 -25
- package/dist/local-agent.cjs +792 -0
- package/dist/local-agent.d.cts +3 -0
- package/dist/local-agent.d.ts +3 -0
- package/dist/local-agent.js +11 -0
- package/dist/openclaw.js +4 -2
- package/dist/proof-run-engine.d.cts +3 -3
- package/dist/proof-run-engine.d.ts +3 -3
- package/dist/result.cjs +1 -0
- package/dist/result.js +1 -1
- package/dist/run-card.cjs +212 -0
- package/dist/run-card.d.cts +10 -0
- package/dist/run-card.d.ts +10 -0
- package/dist/run-card.js +10 -0
- package/dist/runner.cjs +2 -0
- package/dist/runner.js +5 -3
- package/dist/state.cjs +174 -5
- package/dist/state.d.cts +2 -1
- package/dist/state.d.ts +2 -1
- package/dist/state.js +4 -2
- package/dist/types.d.cts +63 -2
- package/dist/types.d.ts +63 -2
- package/package.json +20 -2
package/dist/state.js
CHANGED
|
@@ -9,8 +9,10 @@ import {
|
|
|
9
9
|
normalizePrLifecycleState,
|
|
10
10
|
normalizeRunParams,
|
|
11
11
|
setRunStatus
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
12
|
+
} from "./chunk-JOXTKWX6.js";
|
|
13
|
+
import "./chunk-PLSGW2GI.js";
|
|
14
|
+
import "./chunk-R6SCWJCI.js";
|
|
15
|
+
import "./chunk-DUFDZJOF.js";
|
|
14
16
|
export {
|
|
15
17
|
RIDDLE_PROOF_RUN_STATE_VERSION,
|
|
16
18
|
appendRunEvent,
|
package/dist/types.d.cts
CHANGED
|
@@ -74,7 +74,7 @@ interface RiddleProofCheckpointPacket {
|
|
|
74
74
|
state_path?: string;
|
|
75
75
|
stage: RiddleProofStage;
|
|
76
76
|
checkpoint: string;
|
|
77
|
-
kind: "assess_recon" | "author_proof" | "implement_change" | "assess_proof" | "human_review" | "advance_decision" | (string & {});
|
|
77
|
+
kind: "assess_recon" | "author_proof" | "implement_change" | "assess_proof" | "recover_evidence" | "human_review" | "advance_decision" | (string & {});
|
|
78
78
|
summary: string;
|
|
79
79
|
question: string;
|
|
80
80
|
change_request: string;
|
|
@@ -152,6 +152,64 @@ interface RiddleProofProofContract {
|
|
|
152
152
|
payload?: Record<string, unknown>;
|
|
153
153
|
created_at: string;
|
|
154
154
|
}
|
|
155
|
+
interface RiddleProofRunCard {
|
|
156
|
+
version: "riddle-proof.run-card.v1";
|
|
157
|
+
run_id: string;
|
|
158
|
+
status: RiddleProofStatus;
|
|
159
|
+
goal: {
|
|
160
|
+
repo?: string;
|
|
161
|
+
branch?: string;
|
|
162
|
+
change_request?: string;
|
|
163
|
+
verification_mode?: RiddleProofVerificationMode;
|
|
164
|
+
success_criteria?: string;
|
|
165
|
+
};
|
|
166
|
+
durable_state: RiddleProofStatePaths & {
|
|
167
|
+
worktree_path?: string | null;
|
|
168
|
+
branch?: string | null;
|
|
169
|
+
};
|
|
170
|
+
current_phase: {
|
|
171
|
+
stage?: RiddleProofStage | null;
|
|
172
|
+
checkpoint?: string | null;
|
|
173
|
+
latest_event?: string | null;
|
|
174
|
+
elapsed_ms?: number;
|
|
175
|
+
stage_elapsed_ms?: number;
|
|
176
|
+
iterations?: number;
|
|
177
|
+
};
|
|
178
|
+
owner_next_action: {
|
|
179
|
+
owner?: string;
|
|
180
|
+
action?: string;
|
|
181
|
+
checkpoint_kind?: string | null;
|
|
182
|
+
allowed_decisions?: string[];
|
|
183
|
+
retryable?: boolean;
|
|
184
|
+
reason?: string | null;
|
|
185
|
+
};
|
|
186
|
+
evidence_contract: {
|
|
187
|
+
verification_mode?: RiddleProofVerificationMode;
|
|
188
|
+
required?: Record<string, unknown>;
|
|
189
|
+
artifact_contract?: Record<string, unknown>;
|
|
190
|
+
proof_plan?: string;
|
|
191
|
+
stop_condition?: string;
|
|
192
|
+
};
|
|
193
|
+
latest_evidence: {
|
|
194
|
+
before_url?: string | null;
|
|
195
|
+
prod_url?: string | null;
|
|
196
|
+
after_url?: string | null;
|
|
197
|
+
visual_delta?: Record<string, unknown> | null;
|
|
198
|
+
evidence_issue_code?: string | null;
|
|
199
|
+
proof_evidence_present?: boolean;
|
|
200
|
+
artifacts?: RiddleProofCheckpointArtifact[];
|
|
201
|
+
};
|
|
202
|
+
stop_condition: {
|
|
203
|
+
status: RiddleProofStatus;
|
|
204
|
+
terminal?: boolean;
|
|
205
|
+
blocker_code?: string | null;
|
|
206
|
+
blocker_message?: string | null;
|
|
207
|
+
proof_decision?: RiddleProofDecision;
|
|
208
|
+
merge_recommendation?: string;
|
|
209
|
+
monitor_should_continue?: boolean;
|
|
210
|
+
};
|
|
211
|
+
updated_at: string;
|
|
212
|
+
}
|
|
155
213
|
interface IntegrationContext {
|
|
156
214
|
source?: "openclaw" | "discord" | "github" | "cli" | "riddle" | (string & {});
|
|
157
215
|
channel_id?: string;
|
|
@@ -217,6 +275,7 @@ interface RiddleProofRunState {
|
|
|
217
275
|
checkpoint_summary?: RiddleProofCheckpointSummary;
|
|
218
276
|
state_paths?: RiddleProofStatePaths;
|
|
219
277
|
proof_contract?: RiddleProofProofContract;
|
|
278
|
+
run_card?: RiddleProofRunCard;
|
|
220
279
|
checkpoint_history?: Array<{
|
|
221
280
|
ts: string;
|
|
222
281
|
packet?: RiddleProofCheckpointPacket;
|
|
@@ -261,6 +320,7 @@ interface RiddleProofRunResult {
|
|
|
261
320
|
checkpoint_summary?: RiddleProofCheckpointSummary;
|
|
262
321
|
state_paths?: RiddleProofStatePaths;
|
|
263
322
|
proof_contract?: RiddleProofProofContract;
|
|
323
|
+
run_card?: RiddleProofRunCard;
|
|
264
324
|
proof_session?: RiddleProofVisualSession;
|
|
265
325
|
evidence_bundle?: RiddleProofEvidenceBundle;
|
|
266
326
|
raw?: Record<string, unknown>;
|
|
@@ -296,6 +356,7 @@ interface RiddleProofRunStatusSnapshot {
|
|
|
296
356
|
checkpoint_summary?: RiddleProofCheckpointSummary;
|
|
297
357
|
state_paths?: RiddleProofStatePaths;
|
|
298
358
|
proof_contract?: RiddleProofProofContract;
|
|
359
|
+
run_card?: RiddleProofRunCard;
|
|
299
360
|
latest_event?: RiddleProofEvent;
|
|
300
361
|
}
|
|
301
362
|
interface RiddleProofEvidenceBundle {
|
|
@@ -516,4 +577,4 @@ interface RiddleProofVisualSessionFingerprintBasis {
|
|
|
516
577
|
capture_script_hash?: string;
|
|
517
578
|
}
|
|
518
579
|
|
|
519
|
-
export type { EvidenceArtifact, EvidenceReference, ImplementationAdapter, ImplementationAdapterInput, ImplementationAdapterResult, IntegrationContext, JsonObject, JsonPrimitive, JsonValue, JudgeAdapter, NotificationAdapter, PreflightAdapter, PreflightAdapterInput, PreflightAdapterResult, ProofAdapter, ProofAdapterInput, ProofAdapterResult, RiddleProofArtifactRole, RiddleProofAssessment, RiddleProofBlocker, RiddleProofCheckpointArtifact, RiddleProofCheckpointPacket, RiddleProofCheckpointResponse, RiddleProofCheckpointRole, RiddleProofCheckpointRoutingHint, RiddleProofCheckpointSummary, RiddleProofCheckpointVisibility, RiddleProofDecision, RiddleProofEvent, RiddleProofEvidenceBundle, RiddleProofPrLifecycleState, RiddleProofPrLifecycleStatus, RiddleProofProofContract, RiddleProofRunParams, RiddleProofRunResult, RiddleProofRunState, RiddleProofRunStatusSnapshot, RiddleProofStage, RiddleProofStatePaths, RiddleProofStatus, RiddleProofTerminalMetadata, RiddleProofVerificationMode, RiddleProofVisualSession, RiddleProofVisualSessionFingerprintBasis, SetupAdapter, SetupAdapterInput, SetupAdapterResult, ShipAdapter };
|
|
580
|
+
export type { EvidenceArtifact, EvidenceReference, ImplementationAdapter, ImplementationAdapterInput, ImplementationAdapterResult, IntegrationContext, JsonObject, JsonPrimitive, JsonValue, JudgeAdapter, NotificationAdapter, PreflightAdapter, PreflightAdapterInput, PreflightAdapterResult, ProofAdapter, ProofAdapterInput, ProofAdapterResult, RiddleProofArtifactRole, RiddleProofAssessment, RiddleProofBlocker, RiddleProofCheckpointArtifact, RiddleProofCheckpointPacket, RiddleProofCheckpointResponse, RiddleProofCheckpointRole, RiddleProofCheckpointRoutingHint, RiddleProofCheckpointSummary, RiddleProofCheckpointVisibility, RiddleProofDecision, RiddleProofEvent, RiddleProofEvidenceBundle, RiddleProofPrLifecycleState, RiddleProofPrLifecycleStatus, RiddleProofProofContract, RiddleProofRunCard, RiddleProofRunParams, RiddleProofRunResult, RiddleProofRunState, RiddleProofRunStatusSnapshot, RiddleProofStage, RiddleProofStatePaths, RiddleProofStatus, RiddleProofTerminalMetadata, RiddleProofVerificationMode, RiddleProofVisualSession, RiddleProofVisualSessionFingerprintBasis, SetupAdapter, SetupAdapterInput, SetupAdapterResult, ShipAdapter };
|
package/dist/types.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ interface RiddleProofCheckpointPacket {
|
|
|
74
74
|
state_path?: string;
|
|
75
75
|
stage: RiddleProofStage;
|
|
76
76
|
checkpoint: string;
|
|
77
|
-
kind: "assess_recon" | "author_proof" | "implement_change" | "assess_proof" | "human_review" | "advance_decision" | (string & {});
|
|
77
|
+
kind: "assess_recon" | "author_proof" | "implement_change" | "assess_proof" | "recover_evidence" | "human_review" | "advance_decision" | (string & {});
|
|
78
78
|
summary: string;
|
|
79
79
|
question: string;
|
|
80
80
|
change_request: string;
|
|
@@ -152,6 +152,64 @@ interface RiddleProofProofContract {
|
|
|
152
152
|
payload?: Record<string, unknown>;
|
|
153
153
|
created_at: string;
|
|
154
154
|
}
|
|
155
|
+
interface RiddleProofRunCard {
|
|
156
|
+
version: "riddle-proof.run-card.v1";
|
|
157
|
+
run_id: string;
|
|
158
|
+
status: RiddleProofStatus;
|
|
159
|
+
goal: {
|
|
160
|
+
repo?: string;
|
|
161
|
+
branch?: string;
|
|
162
|
+
change_request?: string;
|
|
163
|
+
verification_mode?: RiddleProofVerificationMode;
|
|
164
|
+
success_criteria?: string;
|
|
165
|
+
};
|
|
166
|
+
durable_state: RiddleProofStatePaths & {
|
|
167
|
+
worktree_path?: string | null;
|
|
168
|
+
branch?: string | null;
|
|
169
|
+
};
|
|
170
|
+
current_phase: {
|
|
171
|
+
stage?: RiddleProofStage | null;
|
|
172
|
+
checkpoint?: string | null;
|
|
173
|
+
latest_event?: string | null;
|
|
174
|
+
elapsed_ms?: number;
|
|
175
|
+
stage_elapsed_ms?: number;
|
|
176
|
+
iterations?: number;
|
|
177
|
+
};
|
|
178
|
+
owner_next_action: {
|
|
179
|
+
owner?: string;
|
|
180
|
+
action?: string;
|
|
181
|
+
checkpoint_kind?: string | null;
|
|
182
|
+
allowed_decisions?: string[];
|
|
183
|
+
retryable?: boolean;
|
|
184
|
+
reason?: string | null;
|
|
185
|
+
};
|
|
186
|
+
evidence_contract: {
|
|
187
|
+
verification_mode?: RiddleProofVerificationMode;
|
|
188
|
+
required?: Record<string, unknown>;
|
|
189
|
+
artifact_contract?: Record<string, unknown>;
|
|
190
|
+
proof_plan?: string;
|
|
191
|
+
stop_condition?: string;
|
|
192
|
+
};
|
|
193
|
+
latest_evidence: {
|
|
194
|
+
before_url?: string | null;
|
|
195
|
+
prod_url?: string | null;
|
|
196
|
+
after_url?: string | null;
|
|
197
|
+
visual_delta?: Record<string, unknown> | null;
|
|
198
|
+
evidence_issue_code?: string | null;
|
|
199
|
+
proof_evidence_present?: boolean;
|
|
200
|
+
artifacts?: RiddleProofCheckpointArtifact[];
|
|
201
|
+
};
|
|
202
|
+
stop_condition: {
|
|
203
|
+
status: RiddleProofStatus;
|
|
204
|
+
terminal?: boolean;
|
|
205
|
+
blocker_code?: string | null;
|
|
206
|
+
blocker_message?: string | null;
|
|
207
|
+
proof_decision?: RiddleProofDecision;
|
|
208
|
+
merge_recommendation?: string;
|
|
209
|
+
monitor_should_continue?: boolean;
|
|
210
|
+
};
|
|
211
|
+
updated_at: string;
|
|
212
|
+
}
|
|
155
213
|
interface IntegrationContext {
|
|
156
214
|
source?: "openclaw" | "discord" | "github" | "cli" | "riddle" | (string & {});
|
|
157
215
|
channel_id?: string;
|
|
@@ -217,6 +275,7 @@ interface RiddleProofRunState {
|
|
|
217
275
|
checkpoint_summary?: RiddleProofCheckpointSummary;
|
|
218
276
|
state_paths?: RiddleProofStatePaths;
|
|
219
277
|
proof_contract?: RiddleProofProofContract;
|
|
278
|
+
run_card?: RiddleProofRunCard;
|
|
220
279
|
checkpoint_history?: Array<{
|
|
221
280
|
ts: string;
|
|
222
281
|
packet?: RiddleProofCheckpointPacket;
|
|
@@ -261,6 +320,7 @@ interface RiddleProofRunResult {
|
|
|
261
320
|
checkpoint_summary?: RiddleProofCheckpointSummary;
|
|
262
321
|
state_paths?: RiddleProofStatePaths;
|
|
263
322
|
proof_contract?: RiddleProofProofContract;
|
|
323
|
+
run_card?: RiddleProofRunCard;
|
|
264
324
|
proof_session?: RiddleProofVisualSession;
|
|
265
325
|
evidence_bundle?: RiddleProofEvidenceBundle;
|
|
266
326
|
raw?: Record<string, unknown>;
|
|
@@ -296,6 +356,7 @@ interface RiddleProofRunStatusSnapshot {
|
|
|
296
356
|
checkpoint_summary?: RiddleProofCheckpointSummary;
|
|
297
357
|
state_paths?: RiddleProofStatePaths;
|
|
298
358
|
proof_contract?: RiddleProofProofContract;
|
|
359
|
+
run_card?: RiddleProofRunCard;
|
|
299
360
|
latest_event?: RiddleProofEvent;
|
|
300
361
|
}
|
|
301
362
|
interface RiddleProofEvidenceBundle {
|
|
@@ -516,4 +577,4 @@ interface RiddleProofVisualSessionFingerprintBasis {
|
|
|
516
577
|
capture_script_hash?: string;
|
|
517
578
|
}
|
|
518
579
|
|
|
519
|
-
export type { EvidenceArtifact, EvidenceReference, ImplementationAdapter, ImplementationAdapterInput, ImplementationAdapterResult, IntegrationContext, JsonObject, JsonPrimitive, JsonValue, JudgeAdapter, NotificationAdapter, PreflightAdapter, PreflightAdapterInput, PreflightAdapterResult, ProofAdapter, ProofAdapterInput, ProofAdapterResult, RiddleProofArtifactRole, RiddleProofAssessment, RiddleProofBlocker, RiddleProofCheckpointArtifact, RiddleProofCheckpointPacket, RiddleProofCheckpointResponse, RiddleProofCheckpointRole, RiddleProofCheckpointRoutingHint, RiddleProofCheckpointSummary, RiddleProofCheckpointVisibility, RiddleProofDecision, RiddleProofEvent, RiddleProofEvidenceBundle, RiddleProofPrLifecycleState, RiddleProofPrLifecycleStatus, RiddleProofProofContract, RiddleProofRunParams, RiddleProofRunResult, RiddleProofRunState, RiddleProofRunStatusSnapshot, RiddleProofStage, RiddleProofStatePaths, RiddleProofStatus, RiddleProofTerminalMetadata, RiddleProofVerificationMode, RiddleProofVisualSession, RiddleProofVisualSessionFingerprintBasis, SetupAdapter, SetupAdapterInput, SetupAdapterResult, ShipAdapter };
|
|
580
|
+
export type { EvidenceArtifact, EvidenceReference, ImplementationAdapter, ImplementationAdapterInput, ImplementationAdapterResult, IntegrationContext, JsonObject, JsonPrimitive, JsonValue, JudgeAdapter, NotificationAdapter, PreflightAdapter, PreflightAdapterInput, PreflightAdapterResult, ProofAdapter, ProofAdapterInput, ProofAdapterResult, RiddleProofArtifactRole, RiddleProofAssessment, RiddleProofBlocker, RiddleProofCheckpointArtifact, RiddleProofCheckpointPacket, RiddleProofCheckpointResponse, RiddleProofCheckpointRole, RiddleProofCheckpointRoutingHint, RiddleProofCheckpointSummary, RiddleProofCheckpointVisibility, RiddleProofDecision, RiddleProofEvent, RiddleProofEvidenceBundle, RiddleProofPrLifecycleState, RiddleProofPrLifecycleStatus, RiddleProofProofContract, RiddleProofRunCard, RiddleProofRunParams, RiddleProofRunResult, RiddleProofRunState, RiddleProofRunStatusSnapshot, RiddleProofStage, RiddleProofStatePaths, RiddleProofStatus, RiddleProofTerminalMetadata, RiddleProofVerificationMode, RiddleProofVisualSession, RiddleProofVisualSessionFingerprintBasis, SetupAdapter, SetupAdapterInput, SetupAdapterResult, ShipAdapter };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riddledc/riddle-proof",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.47",
|
|
4
4
|
"description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "RiddleDC",
|
|
@@ -39,6 +39,11 @@
|
|
|
39
39
|
"import": "./dist/checkpoint.js",
|
|
40
40
|
"require": "./dist/checkpoint.cjs"
|
|
41
41
|
},
|
|
42
|
+
"./run-card": {
|
|
43
|
+
"types": "./dist/run-card.d.ts",
|
|
44
|
+
"import": "./dist/run-card.js",
|
|
45
|
+
"require": "./dist/run-card.cjs"
|
|
46
|
+
},
|
|
42
47
|
"./runner": {
|
|
43
48
|
"types": "./dist/runner.d.ts",
|
|
44
49
|
"import": "./dist/runner.js",
|
|
@@ -49,6 +54,16 @@
|
|
|
49
54
|
"import": "./dist/engine-harness.js",
|
|
50
55
|
"require": "./dist/engine-harness.cjs"
|
|
51
56
|
},
|
|
57
|
+
"./codex-exec-agent": {
|
|
58
|
+
"types": "./dist/codex-exec-agent.d.ts",
|
|
59
|
+
"import": "./dist/codex-exec-agent.js",
|
|
60
|
+
"require": "./dist/codex-exec-agent.cjs"
|
|
61
|
+
},
|
|
62
|
+
"./local-agent": {
|
|
63
|
+
"types": "./dist/local-agent.d.ts",
|
|
64
|
+
"import": "./dist/local-agent.js",
|
|
65
|
+
"require": "./dist/local-agent.cjs"
|
|
66
|
+
},
|
|
52
67
|
"./diagnostics": {
|
|
53
68
|
"types": "./dist/diagnostics.d.ts",
|
|
54
69
|
"import": "./dist/diagnostics.js",
|
|
@@ -80,6 +95,9 @@
|
|
|
80
95
|
"require": "./dist/proof-run-engine.cjs"
|
|
81
96
|
}
|
|
82
97
|
},
|
|
98
|
+
"bin": {
|
|
99
|
+
"riddle-proof-loop": "./dist/cli.js"
|
|
100
|
+
},
|
|
83
101
|
"files": [
|
|
84
102
|
"dist",
|
|
85
103
|
"lib",
|
|
@@ -97,7 +115,7 @@
|
|
|
97
115
|
"typescript": "^5.4.5"
|
|
98
116
|
},
|
|
99
117
|
"scripts": {
|
|
100
|
-
"build": "tsup src/index.ts src/types.ts src/result.ts src/state.ts src/checkpoint.ts src/runner.ts src/engine-harness.ts src/diagnostics.ts src/proof-session.ts src/playability.ts src/openclaw.ts src/proof-run-core.ts src/proof-run-engine.ts --format cjs,esm --dts --out-dir dist --clean",
|
|
118
|
+
"build": "tsup src/index.ts src/types.ts src/result.ts src/state.ts src/checkpoint.ts src/run-card.ts src/runner.ts src/engine-harness.ts src/codex-exec-agent.ts src/local-agent.ts src/cli.ts src/diagnostics.ts src/proof-session.ts src/playability.ts src/openclaw.ts src/proof-run-core.ts src/proof-run-engine.ts --format cjs,esm --dts --out-dir dist --clean",
|
|
101
119
|
"clean": "rm -rf dist",
|
|
102
120
|
"lint": "echo 'lint: (not configured)'",
|
|
103
121
|
"test": "npm run build && node test.js && node proof-run.test.js"
|