@kici-dev/compiler 0.1.14 → 0.1.16
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 +21 -1
- package/dist/cli.d.ts +9 -1
- package/dist/cli.js +213 -179
- package/dist/commands/approve.d.ts +23 -0
- package/dist/commands/approve.js +46 -0
- package/dist/commands/compile.js +1 -1
- package/dist/commands/docs.js +2 -2
- package/dist/commands/endpoints.js +1 -1
- package/dist/commands/held-run-client.d.ts +26 -0
- package/dist/commands/held-run-client.js +98 -0
- package/dist/commands/held-run-resolve.d.ts +45 -0
- package/dist/commands/held-run-resolve.js +53 -0
- package/dist/commands/hook.js +1 -1
- package/dist/commands/index.d.ts +4 -0
- package/dist/commands/index.js +3 -1
- package/dist/commands/init.js +1 -1
- package/dist/commands/login.js +4 -15
- package/dist/commands/reject.d.ts +25 -0
- package/dist/commands/reject.js +49 -0
- package/dist/commands/run.js +13 -2
- package/dist/commands/secrets-list.js +1 -1
- package/dist/commands/status.js +1 -1
- package/dist/commands/test.d.ts +2 -0
- package/dist/commands/test.js +1 -1
- package/dist/commands/types.js +1 -1
- package/dist/commands/watch.js +1 -1
- package/dist/execution/executor.js +2 -2
- package/dist/execution/sdk-alias.js +1 -1
- package/dist/fixtures/compiler.js +2 -2
- package/dist/fixtures/defaults/index.js +2 -2
- package/dist/hooks/detector.js +1 -1
- package/dist/hooks/installer.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/llm-context/llms-full.txt +1141 -349
- package/dist/llm-context/llms.txt +4 -2
- package/dist/local-executor/index.js +5 -4
- package/dist/local-executor/job-runner.js +3 -5
- package/dist/local-executor/materializer.d.ts +5 -0
- package/dist/local-executor/materializer.js +23 -2
- package/dist/local-executor/secret-loader.js +1 -1
- package/dist/local-executor/to-event-payload.d.ts +16 -0
- package/dist/local-executor/to-event-payload.js +21 -0
- package/dist/local-executor/workflow-lock.d.ts +4 -3
- package/dist/local-executor/workflow-lock.js +0 -0
- package/dist/lockfile/generator.js +22 -5
- package/dist/lockfile/hash-files.js +1 -1
- package/dist/postinstall.js +1 -1
- package/dist/remote/client.d.ts +4 -0
- package/dist/remote/config.js +1 -1
- package/dist/remote/history.js +1 -1
- package/dist/remote/prod-defaults.d.ts +18 -0
- package/dist/remote/prod-defaults.js +23 -0
- package/dist/remote/secret-upload.d.ts +20 -0
- package/dist/remote/secret-upload.js +58 -0
- package/dist/remote/uploader.js +1 -1
- package/dist/templates/index.js +1 -1
- package/dist/templates/package-json.js +1 -1
- package/dist/templates/workflows/pr-checks.js +3 -2
- package/dist/templates/workflows/pr-checks.ts +4 -2
- package/dist/test-runner/git-detector.js +1 -1
- package/dist/test-runner/job-executor.js +2 -2
- package/dist/test-runner/secrets-file.js +1 -1
- package/dist/test-runner/step-context.js +6 -2
- package/dist/types.d.ts +33 -2
- package/dist/types.js +1 -0
- package/dist/workflows/pr-checks.ts +4 -2
- package/package.json +13 -9
- package/sbom.spdx.json +34 -34
package/dist/types.d.ts
CHANGED
|
@@ -9,10 +9,20 @@
|
|
|
9
9
|
* v7 adds hook flags, step rules, gracePeriod, and workflow concurrency config.
|
|
10
10
|
* v8 adds runsOn polymorphic type (string | string[] | selector) and excludeLabels.
|
|
11
11
|
* v11 adds LockInlineValue type for pure function inline evaluation.
|
|
12
|
+
* v15 adds per-job init config(s).
|
|
12
13
|
*/
|
|
13
|
-
import type { ResourceRequest } from '@kici-dev/engine';
|
|
14
|
+
import type { ResourceRequest, ApproverClause } from '@kici-dev/engine';
|
|
15
|
+
/**
|
|
16
|
+
* Normalized approval config carried in the lock file. Mirrors the engine
|
|
17
|
+
* `LockApproval` type. Produced by the compiler from an SDK `requireApproval`.
|
|
18
|
+
*/
|
|
19
|
+
export interface LockApproval {
|
|
20
|
+
readonly clauses: ApproverClause[];
|
|
21
|
+
readonly reason?: string;
|
|
22
|
+
readonly timeoutSeconds?: number;
|
|
23
|
+
}
|
|
14
24
|
/** Schema version - re-exported from engine as single source of truth */
|
|
15
|
-
export declare const SCHEMA_VERSION:
|
|
25
|
+
export declare const SCHEMA_VERSION: 16;
|
|
16
26
|
/**
|
|
17
27
|
* Source file reference with meaningful path.
|
|
18
28
|
* Format: file is relative path from git root, export uses hash syntax.
|
|
@@ -307,6 +317,8 @@ export interface LockStep {
|
|
|
307
317
|
readonly continueOnError?: boolean;
|
|
308
318
|
/** Step-level timeout in milliseconds. */
|
|
309
319
|
readonly timeout?: number;
|
|
320
|
+
/** Declarative cache specs (normalized to an array). Restored before / saved after the step. */
|
|
321
|
+
readonly cache?: readonly import('@kici-dev/sdk').CacheSpec[];
|
|
310
322
|
/** Source location of the step() call in the original TypeScript file (for annotations). */
|
|
311
323
|
readonly sourceLocation?: {
|
|
312
324
|
readonly file: string;
|
|
@@ -321,6 +333,8 @@ export interface LockStep {
|
|
|
321
333
|
readonly hasOnCancel?: boolean;
|
|
322
334
|
/** Whether this step has a cleanup hook. */
|
|
323
335
|
readonly hasCleanup?: boolean;
|
|
336
|
+
/** Normalized approval gate; when set the step pauses for a human approval. */
|
|
337
|
+
readonly approval?: LockApproval;
|
|
324
338
|
}
|
|
325
339
|
/**
|
|
326
340
|
* Inline expression value for pure dynamic functions.
|
|
@@ -369,6 +383,8 @@ export interface LockJob {
|
|
|
369
383
|
readonly description?: string;
|
|
370
384
|
/** When false, agent skips git clone (default: true). */
|
|
371
385
|
readonly checkout?: boolean;
|
|
386
|
+
/** Declarative cache specs (normalized to an array). Restored before steps / saved after the job. */
|
|
387
|
+
readonly cache?: readonly import('@kici-dev/sdk').CacheSpec[];
|
|
372
388
|
/** Docker image for job execution. All steps run inside the container. */
|
|
373
389
|
readonly container?: string | {
|
|
374
390
|
image: string;
|
|
@@ -400,12 +416,22 @@ export interface LockJob {
|
|
|
400
416
|
readonly hasAfterStep?: boolean;
|
|
401
417
|
/** Seconds before SIGKILL after SIGTERM during cancellation. */
|
|
402
418
|
readonly gracePeriod?: number;
|
|
419
|
+
/** Total job wall-clock timeout in milliseconds (init + all steps + hooks). Agent reads this from jobConfig to arm a job-level deadline. */
|
|
420
|
+
readonly timeout?: number;
|
|
403
421
|
/**
|
|
404
422
|
* Resource request and limit for this job.
|
|
405
423
|
* Threaded from SDK `Job.resources` to the orchestrator scaler for cap accounting
|
|
406
424
|
* (`requests`) and kernel-side enforcement (`limits`) on the spawned agent.
|
|
407
425
|
*/
|
|
408
426
|
readonly resources?: ResourceRequest;
|
|
427
|
+
/**
|
|
428
|
+
* Per-job init config(s) run after clone, before steps. `false` is an explicit
|
|
429
|
+
* opt-out. Threaded verbatim from the SDK `Job.init` -- the agent reads it from
|
|
430
|
+
* the loaded module, the lock copy is for orchestrator/dashboard visibility.
|
|
431
|
+
*/
|
|
432
|
+
readonly init?: import('@kici-dev/sdk').GenericInitConfig | readonly import('@kici-dev/sdk').GenericInitConfig[] | false;
|
|
433
|
+
/** Normalized approval gate; when set the job is held before dispatch. */
|
|
434
|
+
readonly approval?: LockApproval;
|
|
409
435
|
}
|
|
410
436
|
/**
|
|
411
437
|
* Dynamic job generator reference.
|
|
@@ -480,6 +506,10 @@ export interface LockWorkflow {
|
|
|
480
506
|
readonly cancelInProgress?: boolean;
|
|
481
507
|
readonly max?: number;
|
|
482
508
|
};
|
|
509
|
+
/** Whole-run wall-clock timeout in milliseconds. Orchestrator reads this at run creation to set the run deadline. */
|
|
510
|
+
readonly timeout?: number;
|
|
511
|
+
/** Normalized approval gate; when set the whole run is held before any job dispatches. */
|
|
512
|
+
readonly approval?: LockApproval;
|
|
483
513
|
}
|
|
484
514
|
/**
|
|
485
515
|
* Complete lock file structure.
|
|
@@ -492,6 +522,7 @@ export interface LockWorkflow {
|
|
|
492
522
|
* v7 adds hook flags, step rules, gracePeriod, and workflow concurrency config.
|
|
493
523
|
* v8 adds runsOn polymorphic type (string | string[] | selector) and excludeLabels.
|
|
494
524
|
* v11 adds LockInlineValue type for pure function inline evaluation.
|
|
525
|
+
* v13 adds job-level and workflow-level timeout.
|
|
495
526
|
*/
|
|
496
527
|
export interface LockFile {
|
|
497
528
|
readonly schemaVersion: typeof SCHEMA_VERSION;
|
package/dist/types.js
CHANGED
|
@@ -12,6 +12,7 @@ import { SCHEMA_VERSION as SCHEMA_VERSION$1 } from "@kici-dev/engine";
|
|
|
12
12
|
* v7 adds hook flags, step rules, gracePeriod, and workflow concurrency config.
|
|
13
13
|
* v8 adds runsOn polymorphic type (string | string[] | selector) and excludeLabels.
|
|
14
14
|
* v11 adds LockInlineValue type for pure function inline evaluation.
|
|
15
|
+
* v15 adds per-job init config(s).
|
|
15
16
|
*/
|
|
16
17
|
/** Schema version - re-exported from engine as single source of truth */
|
|
17
18
|
const SCHEMA_VERSION = SCHEMA_VERSION$1;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Docs: https://kici.dev/docs/sdk-reference
|
|
3
3
|
// Patterns: https://kici.dev/docs/workflow-patterns
|
|
4
4
|
|
|
5
|
-
import { workflow, job, step, pr, rule, skip } from '@kici-dev/sdk';
|
|
5
|
+
import { workflow, job, step, pr, rule, skip, isEventType } from '@kici-dev/sdk';
|
|
6
6
|
|
|
7
7
|
export const prChecksWorkflow = workflow('pr-checks', {
|
|
8
8
|
// Trigger: pr() matches pull request events
|
|
@@ -13,7 +13,9 @@ export const prChecksWorkflow = workflow('pr-checks', {
|
|
|
13
13
|
// skip() = skip if true, rule() = run only if true
|
|
14
14
|
rules: [
|
|
15
15
|
skip('skip-draft-prs', async (ctx) => {
|
|
16
|
-
|
|
16
|
+
// Raw provider fields live under `ctx.event.payload`; narrow first for typing.
|
|
17
|
+
if (!isEventType(ctx.event, 'pull_request')) return false;
|
|
18
|
+
return ctx.event.payload.pull_request.draft === true;
|
|
17
19
|
}),
|
|
18
20
|
|
|
19
21
|
rule('require-src-changes', async (ctx) => {
|
package/package.json
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kici-dev/compiler",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"kici",
|
|
7
6
|
"ci",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
7
|
+
"cicd",
|
|
8
|
+
"continuous-integration",
|
|
10
9
|
"typescript",
|
|
11
|
-
"
|
|
12
|
-
"devops",
|
|
10
|
+
"workflow",
|
|
13
11
|
"cli",
|
|
14
12
|
"compiler"
|
|
15
13
|
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/kici-dev/kici-public.git",
|
|
17
|
+
"directory": "packages/compiler"
|
|
18
|
+
},
|
|
19
|
+
"bugs": "https://github.com/kici-dev/kici-public/issues",
|
|
16
20
|
"homepage": "https://kici.dev",
|
|
17
21
|
"author": {
|
|
18
22
|
"name": "KiCI",
|
|
@@ -58,11 +62,11 @@
|
|
|
58
62
|
"ws": "^8.20.0",
|
|
59
63
|
"yaml": "^2.8.3",
|
|
60
64
|
"zx": "^8.8.5",
|
|
61
|
-
"@kici-dev/core": "0.1.
|
|
62
|
-
"@kici-dev/engine": "0.1.
|
|
65
|
+
"@kici-dev/core": "0.1.16",
|
|
66
|
+
"@kici-dev/engine": "0.1.16"
|
|
63
67
|
},
|
|
64
68
|
"peerDependencies": {
|
|
65
|
-
"@kici-dev/sdk": "0.1.
|
|
69
|
+
"@kici-dev/sdk": "0.1.16"
|
|
66
70
|
},
|
|
67
71
|
"devDependencies": {
|
|
68
72
|
"@types/proper-lockfile": "^4.1.4"
|
package/sbom.spdx.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"spdxVersion": "SPDX-2.3",
|
|
3
3
|
"dataLicense": "CC0-1.0",
|
|
4
4
|
"SPDXID": "SPDXRef-DOCUMENT",
|
|
5
|
-
"name": "@kici-dev/compiler@0.1.
|
|
6
|
-
"documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fcompiler/0.1.
|
|
5
|
+
"name": "@kici-dev/compiler@0.1.16",
|
|
6
|
+
"documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fcompiler/0.1.16/2641506d-0356-4c02-b23d-2b96de4d4cc1",
|
|
7
7
|
"creationInfo": {
|
|
8
|
-
"created": "2026-
|
|
8
|
+
"created": "2026-06-12T09:41:47Z",
|
|
9
9
|
"creators": [
|
|
10
10
|
"Tool: kici-sbom-generator"
|
|
11
11
|
]
|
|
@@ -484,7 +484,7 @@
|
|
|
484
484
|
{
|
|
485
485
|
"SPDXID": "SPDXRef-RootPackage",
|
|
486
486
|
"name": "@kici-dev/compiler",
|
|
487
|
-
"versionInfo": "0.1.
|
|
487
|
+
"versionInfo": "0.1.16",
|
|
488
488
|
"downloadLocation": "NOASSERTION",
|
|
489
489
|
"filesAnalyzed": false,
|
|
490
490
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -495,16 +495,16 @@
|
|
|
495
495
|
{
|
|
496
496
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
497
497
|
"referenceType": "purl",
|
|
498
|
-
"referenceLocator": "pkg:npm/%40kici-dev/compiler@0.1.
|
|
498
|
+
"referenceLocator": "pkg:npm/%40kici-dev/compiler@0.1.16"
|
|
499
499
|
}
|
|
500
500
|
],
|
|
501
501
|
"description": "Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.",
|
|
502
502
|
"homepage": "https://kici.dev"
|
|
503
503
|
},
|
|
504
504
|
{
|
|
505
|
-
"SPDXID": "SPDXRef-Package--kici-dev-core-0.1.
|
|
505
|
+
"SPDXID": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
506
506
|
"name": "@kici-dev/core",
|
|
507
|
-
"versionInfo": "0.1.
|
|
507
|
+
"versionInfo": "0.1.16",
|
|
508
508
|
"downloadLocation": "NOASSERTION",
|
|
509
509
|
"filesAnalyzed": false,
|
|
510
510
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -515,16 +515,16 @@
|
|
|
515
515
|
{
|
|
516
516
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
517
517
|
"referenceType": "purl",
|
|
518
|
-
"referenceLocator": "pkg:npm/%40kici-dev/core@0.1.
|
|
518
|
+
"referenceLocator": "pkg:npm/%40kici-dev/core@0.1.16"
|
|
519
519
|
}
|
|
520
520
|
],
|
|
521
521
|
"description": "Light shared utilities for the KiCI stack (logging, errors, formatting, crypto, zx init, the TypeScript ESM loader hook). No server-side dependencies.",
|
|
522
522
|
"homepage": "https://kici.dev"
|
|
523
523
|
},
|
|
524
524
|
{
|
|
525
|
-
"SPDXID": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
525
|
+
"SPDXID": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
526
526
|
"name": "@kici-dev/engine",
|
|
527
|
-
"versionInfo": "0.1.
|
|
527
|
+
"versionInfo": "0.1.16",
|
|
528
528
|
"downloadLocation": "NOASSERTION",
|
|
529
529
|
"filesAnalyzed": false,
|
|
530
530
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -535,16 +535,16 @@
|
|
|
535
535
|
{
|
|
536
536
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
537
537
|
"referenceType": "purl",
|
|
538
|
-
"referenceLocator": "pkg:npm/%40kici-dev/engine@0.1.
|
|
538
|
+
"referenceLocator": "pkg:npm/%40kici-dev/engine@0.1.16"
|
|
539
539
|
}
|
|
540
540
|
],
|
|
541
541
|
"description": "Shared business logic for the KiCI CI/CD stack: protocol, triggers, state machine, and provider interfaces used by the Platform relay, orchestrator, and compiler.",
|
|
542
542
|
"homepage": "https://kici.dev"
|
|
543
543
|
},
|
|
544
544
|
{
|
|
545
|
-
"SPDXID": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
545
|
+
"SPDXID": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
546
546
|
"name": "@kici-dev/sdk",
|
|
547
|
-
"versionInfo": "0.1.
|
|
547
|
+
"versionInfo": "0.1.16",
|
|
548
548
|
"downloadLocation": "NOASSERTION",
|
|
549
549
|
"filesAnalyzed": false,
|
|
550
550
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -555,7 +555,7 @@
|
|
|
555
555
|
{
|
|
556
556
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
557
557
|
"referenceType": "purl",
|
|
558
|
-
"referenceLocator": "pkg:npm/%40kici-dev/sdk@0.1.
|
|
558
|
+
"referenceLocator": "pkg:npm/%40kici-dev/sdk@0.1.16"
|
|
559
559
|
}
|
|
560
560
|
],
|
|
561
561
|
"description": "TypeScript SDK for defining KiCI workflows. Import into `.kici/workflows/*.ts` to declare workflows, jobs, steps, triggers, rules, and matrix configurations.",
|
|
@@ -3182,17 +3182,17 @@
|
|
|
3182
3182
|
},
|
|
3183
3183
|
{
|
|
3184
3184
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3185
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3185
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3186
3186
|
"relationshipType": "DEPENDS_ON"
|
|
3187
3187
|
},
|
|
3188
3188
|
{
|
|
3189
3189
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3190
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3190
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3191
3191
|
"relationshipType": "DEPENDS_ON"
|
|
3192
3192
|
},
|
|
3193
3193
|
{
|
|
3194
3194
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3195
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3195
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3196
3196
|
"relationshipType": "DEPENDS_ON"
|
|
3197
3197
|
},
|
|
3198
3198
|
{
|
|
@@ -3256,77 +3256,77 @@
|
|
|
3256
3256
|
"relationshipType": "DEPENDS_ON"
|
|
3257
3257
|
},
|
|
3258
3258
|
{
|
|
3259
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3259
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3260
3260
|
"relatedSpdxElement": "SPDXRef-Package-oxc-transform-0.128.0",
|
|
3261
3261
|
"relationshipType": "DEPENDS_ON"
|
|
3262
3262
|
},
|
|
3263
3263
|
{
|
|
3264
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3264
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3265
3265
|
"relatedSpdxElement": "SPDXRef-Package-picocolors-1.1.1",
|
|
3266
3266
|
"relationshipType": "DEPENDS_ON"
|
|
3267
3267
|
},
|
|
3268
3268
|
{
|
|
3269
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3269
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3270
3270
|
"relatedSpdxElement": "SPDXRef-Package-winston-daily-rotate-file-5.0.0",
|
|
3271
3271
|
"relationshipType": "DEPENDS_ON"
|
|
3272
3272
|
},
|
|
3273
3273
|
{
|
|
3274
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3274
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3275
3275
|
"relatedSpdxElement": "SPDXRef-Package-winston-3.19.0",
|
|
3276
3276
|
"relationshipType": "DEPENDS_ON"
|
|
3277
3277
|
},
|
|
3278
3278
|
{
|
|
3279
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3279
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3280
3280
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
|
|
3281
3281
|
"relationshipType": "DEPENDS_ON"
|
|
3282
3282
|
},
|
|
3283
3283
|
{
|
|
3284
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3284
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3285
3285
|
"relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
|
|
3286
3286
|
"relationshipType": "DEPENDS_ON"
|
|
3287
3287
|
},
|
|
3288
3288
|
{
|
|
3289
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3289
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3290
3290
|
"relatedSpdxElement": "SPDXRef-Package-jsonpath-plus-10.4.0",
|
|
3291
3291
|
"relationshipType": "DEPENDS_ON"
|
|
3292
3292
|
},
|
|
3293
3293
|
{
|
|
3294
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3294
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3295
3295
|
"relatedSpdxElement": "SPDXRef-Package-picomatch-4.0.4",
|
|
3296
3296
|
"relationshipType": "DEPENDS_ON"
|
|
3297
3297
|
},
|
|
3298
3298
|
{
|
|
3299
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3299
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3300
3300
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
|
|
3301
3301
|
"relationshipType": "DEPENDS_ON"
|
|
3302
3302
|
},
|
|
3303
3303
|
{
|
|
3304
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3305
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3304
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3305
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3306
3306
|
"relationshipType": "DEPENDS_ON"
|
|
3307
3307
|
},
|
|
3308
3308
|
{
|
|
3309
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3310
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3309
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3310
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3311
3311
|
"relationshipType": "DEPENDS_ON"
|
|
3312
3312
|
},
|
|
3313
3313
|
{
|
|
3314
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3314
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3315
3315
|
"relatedSpdxElement": "SPDXRef-Package-fast-cartesian-9.0.1",
|
|
3316
3316
|
"relationshipType": "DEPENDS_ON"
|
|
3317
3317
|
},
|
|
3318
3318
|
{
|
|
3319
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3319
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3320
3320
|
"relatedSpdxElement": "SPDXRef-Package-micromatch-4.0.8",
|
|
3321
3321
|
"relationshipType": "DEPENDS_ON"
|
|
3322
3322
|
},
|
|
3323
3323
|
{
|
|
3324
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3324
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3325
3325
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
|
|
3326
3326
|
"relationshipType": "DEPENDS_ON"
|
|
3327
3327
|
},
|
|
3328
3328
|
{
|
|
3329
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3329
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3330
3330
|
"relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
|
|
3331
3331
|
"relationshipType": "DEPENDS_ON"
|
|
3332
3332
|
},
|