@harness-kernel/skills 0.0.0 → 0.5.0
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 +73 -1
- package/dist/chunk-6XTSIVQV.js +219 -0
- package/dist/chunk-6XTSIVQV.js.map +1 -0
- package/dist/chunk-BF5PYWY6.js +55 -0
- package/dist/chunk-BF5PYWY6.js.map +1 -0
- package/dist/chunk-FUZYYJJU.js +57 -0
- package/dist/chunk-FUZYYJJU.js.map +1 -0
- package/dist/chunk-L3KCYHUW.js +24 -0
- package/dist/chunk-L3KCYHUW.js.map +1 -0
- package/dist/chunk-SIAWNALF.js +196 -0
- package/dist/chunk-SIAWNALF.js.map +1 -0
- package/dist/chunk-TC7PNGST.js +41 -0
- package/dist/chunk-TC7PNGST.js.map +1 -0
- package/dist/chunk-THKBSLCD.js +84 -0
- package/dist/chunk-THKBSLCD.js.map +1 -0
- package/dist/events.d.ts +70 -0
- package/dist/events.js +15 -0
- package/dist/events.js.map +1 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +94 -0
- package/dist/index.js.map +1 -0
- package/dist/logs.d.ts +46 -0
- package/dist/logs.js +13 -0
- package/dist/logs.js.map +1 -0
- package/dist/provider.d.ts +20 -0
- package/dist/provider.js +13 -0
- package/dist/provider.js.map +1 -0
- package/dist/registry.d.ts +26 -0
- package/dist/registry.js +9 -0
- package/dist/registry.js.map +1 -0
- package/dist/skill.d.ts +22 -0
- package/dist/skill.js +7 -0
- package/dist/skill.js.map +1 -0
- package/dist/state.d.ts +55 -0
- package/dist/state.js +26 -0
- package/dist/state.js.map +1 -0
- package/dist/tools.d.ts +70 -0
- package/dist/tools.js +23 -0
- package/dist/tools.js.map +1 -0
- package/package.json +48 -10
- package/index.d.ts +0 -1
- package/index.js +0 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { JsonObject, HarnessRoleSelector, HarnessContextProvider, AgentReadSession, ContextProviderOutput } from '@harness-kernel/core';
|
|
2
|
+
import { HarnessSkill } from './skill.js';
|
|
3
|
+
import { SkillRegistry } from './registry.js';
|
|
4
|
+
import { SkillStateOptions } from './state.js';
|
|
5
|
+
|
|
6
|
+
interface SkillPromptProviderOptions extends SkillStateOptions, JsonObject {
|
|
7
|
+
includeInactiveCatalog?: boolean;
|
|
8
|
+
includeToolNames?: boolean;
|
|
9
|
+
role?: HarnessRoleSelector;
|
|
10
|
+
}
|
|
11
|
+
declare class SkillPromptProvider extends HarnessContextProvider<SkillPromptProviderOptions> {
|
|
12
|
+
private readonly registry;
|
|
13
|
+
private readonly defaults;
|
|
14
|
+
label: string;
|
|
15
|
+
constructor(registry: SkillRegistry, defaults?: SkillPromptProviderOptions);
|
|
16
|
+
render(session: AgentReadSession, options?: SkillPromptProviderOptions): Promise<ContextProviderOutput>;
|
|
17
|
+
}
|
|
18
|
+
declare function createSkillPromptProvider(registry: SkillRegistry | HarnessSkill[], options?: SkillPromptProviderOptions): HarnessContextProvider;
|
|
19
|
+
|
|
20
|
+
export { SkillPromptProvider, type SkillPromptProviderOptions, createSkillPromptProvider };
|
package/dist/provider.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import {
|
|
2
|
+
SkillPromptProvider,
|
|
3
|
+
createSkillPromptProvider
|
|
4
|
+
} from "./chunk-THKBSLCD.js";
|
|
5
|
+
import "./chunk-SIAWNALF.js";
|
|
6
|
+
import "./chunk-FUZYYJJU.js";
|
|
7
|
+
import "./chunk-TC7PNGST.js";
|
|
8
|
+
import "./chunk-BF5PYWY6.js";
|
|
9
|
+
export {
|
|
10
|
+
SkillPromptProvider,
|
|
11
|
+
createSkillPromptProvider
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=provider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { JsonObject, HarnessTool } from '@harness-kernel/core';
|
|
2
|
+
import { HarnessSkill } from './skill.js';
|
|
3
|
+
|
|
4
|
+
interface SkillCatalogOptions {
|
|
5
|
+
includeToolNames?: boolean;
|
|
6
|
+
includeMetadata?: boolean;
|
|
7
|
+
}
|
|
8
|
+
interface SkillCatalogEntry {
|
|
9
|
+
key: string;
|
|
10
|
+
label?: string;
|
|
11
|
+
description: string;
|
|
12
|
+
active?: boolean;
|
|
13
|
+
toolNames?: string[];
|
|
14
|
+
metadata?: JsonObject;
|
|
15
|
+
}
|
|
16
|
+
interface SkillRegistry {
|
|
17
|
+
list(): HarnessSkill[];
|
|
18
|
+
get(key: string): HarnessSkill | undefined;
|
|
19
|
+
require(key: string): HarnessSkill;
|
|
20
|
+
catalog(options?: SkillCatalogOptions): SkillCatalogEntry[];
|
|
21
|
+
tools(): HarnessTool[];
|
|
22
|
+
}
|
|
23
|
+
declare function createSkillRegistry(skills: HarnessSkill[]): SkillRegistry;
|
|
24
|
+
declare function toSkillRegistry(registryOrSkills: SkillRegistry | HarnessSkill[]): SkillRegistry;
|
|
25
|
+
|
|
26
|
+
export { type SkillCatalogEntry, type SkillCatalogOptions, type SkillRegistry, createSkillRegistry, toSkillRegistry };
|
package/dist/registry.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/skill.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { AgentReadSession, HarnessTool, JsonObject } from '@harness-kernel/core';
|
|
2
|
+
|
|
3
|
+
type SkillPromptResolver = (session: AgentReadSession, skill: HarnessSkill) => string | Promise<string>;
|
|
4
|
+
interface HarnessSkill {
|
|
5
|
+
key: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
description: string;
|
|
8
|
+
prompt?: string | SkillPromptResolver;
|
|
9
|
+
tools?: HarnessTool[];
|
|
10
|
+
metadata?: JsonObject;
|
|
11
|
+
}
|
|
12
|
+
interface HarnessSkillInput {
|
|
13
|
+
key: string;
|
|
14
|
+
label?: string;
|
|
15
|
+
description: string;
|
|
16
|
+
prompt?: string | SkillPromptResolver;
|
|
17
|
+
tools?: HarnessTool[];
|
|
18
|
+
metadata?: JsonObject;
|
|
19
|
+
}
|
|
20
|
+
declare function defineSkill(input: HarnessSkillInput): HarnessSkill;
|
|
21
|
+
|
|
22
|
+
export { type HarnessSkill, type HarnessSkillInput, type SkillPromptResolver, defineSkill };
|
package/dist/skill.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/state.d.ts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { AgentReadSession, AgentSharedState, AgentActionSession } from '@harness-kernel/core';
|
|
2
|
+
import { HarnessSkill } from './skill.js';
|
|
3
|
+
import { SkillCatalogEntry, SkillRegistry, SkillCatalogOptions } from './registry.js';
|
|
4
|
+
|
|
5
|
+
declare const DEFAULT_SKILL_STATE_KEY = "skills";
|
|
6
|
+
interface SkillStateOptions {
|
|
7
|
+
stateKey?: string;
|
|
8
|
+
}
|
|
9
|
+
interface ActiveSkillState {
|
|
10
|
+
key: string;
|
|
11
|
+
activatedAt: string;
|
|
12
|
+
activatedByToolCallId?: string;
|
|
13
|
+
reason?: string;
|
|
14
|
+
}
|
|
15
|
+
interface SkillState {
|
|
16
|
+
active: Record<string, ActiveSkillState>;
|
|
17
|
+
}
|
|
18
|
+
type SkillErrorCode = "skill.unknown" | "skill.required";
|
|
19
|
+
interface SkillActivationResult {
|
|
20
|
+
ok: boolean;
|
|
21
|
+
key: string;
|
|
22
|
+
known: boolean;
|
|
23
|
+
alreadyActive: boolean;
|
|
24
|
+
skill?: SkillCatalogEntry;
|
|
25
|
+
active?: ActiveSkillState;
|
|
26
|
+
code?: "skill.unknown";
|
|
27
|
+
availableSkills?: SkillCatalogEntry[];
|
|
28
|
+
}
|
|
29
|
+
interface SkillDeactivationResult {
|
|
30
|
+
ok: boolean;
|
|
31
|
+
key: string;
|
|
32
|
+
known: boolean;
|
|
33
|
+
alreadyInactive: boolean;
|
|
34
|
+
skill?: SkillCatalogEntry;
|
|
35
|
+
code?: "skill.unknown";
|
|
36
|
+
availableSkills?: SkillCatalogEntry[];
|
|
37
|
+
}
|
|
38
|
+
interface SkillToolOptions extends SkillStateOptions {
|
|
39
|
+
}
|
|
40
|
+
declare function getSkillState(sessionOrState: AgentReadSession | AgentSharedState, options?: SkillStateOptions): SkillState;
|
|
41
|
+
declare function setSkillState(session: AgentActionSession, state: SkillState, options?: SkillStateOptions): void;
|
|
42
|
+
declare function listAvailableSkills(registry: SkillRegistry | HarnessSkill[], options?: SkillCatalogOptions): SkillCatalogEntry[];
|
|
43
|
+
declare function listActiveSkills(sessionOrState: AgentReadSession | AgentSharedState, registry: SkillRegistry | HarnessSkill[], options?: SkillCatalogOptions & SkillStateOptions): SkillCatalogEntry[];
|
|
44
|
+
declare function listInactiveSkills(sessionOrState: AgentReadSession | AgentSharedState, registry: SkillRegistry | HarnessSkill[], options?: SkillCatalogOptions & SkillStateOptions): SkillCatalogEntry[];
|
|
45
|
+
declare function isSkillActive(sessionOrState: AgentReadSession | AgentSharedState, key: string, options?: SkillStateOptions): boolean;
|
|
46
|
+
declare function activateSkill(session: AgentActionSession, registry: SkillRegistry | HarnessSkill[], input: {
|
|
47
|
+
key: string;
|
|
48
|
+
reason?: string;
|
|
49
|
+
}, options?: SkillToolOptions): Promise<SkillActivationResult>;
|
|
50
|
+
declare function deactivateSkill(session: AgentActionSession, registry: SkillRegistry | HarnessSkill[], input: {
|
|
51
|
+
key: string;
|
|
52
|
+
reason?: string;
|
|
53
|
+
}, options?: SkillToolOptions): Promise<SkillDeactivationResult>;
|
|
54
|
+
|
|
55
|
+
export { type ActiveSkillState, DEFAULT_SKILL_STATE_KEY, type SkillActivationResult, type SkillDeactivationResult, type SkillErrorCode, type SkillState, type SkillStateOptions, type SkillToolOptions, activateSkill, deactivateSkill, getSkillState, isSkillActive, listActiveSkills, listAvailableSkills, listInactiveSkills, setSkillState };
|
package/dist/state.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_SKILL_STATE_KEY,
|
|
3
|
+
activateSkill,
|
|
4
|
+
deactivateSkill,
|
|
5
|
+
getSkillState,
|
|
6
|
+
isSkillActive,
|
|
7
|
+
listActiveSkills,
|
|
8
|
+
listAvailableSkills,
|
|
9
|
+
listInactiveSkills,
|
|
10
|
+
setSkillState
|
|
11
|
+
} from "./chunk-SIAWNALF.js";
|
|
12
|
+
import "./chunk-FUZYYJJU.js";
|
|
13
|
+
import "./chunk-TC7PNGST.js";
|
|
14
|
+
import "./chunk-BF5PYWY6.js";
|
|
15
|
+
export {
|
|
16
|
+
DEFAULT_SKILL_STATE_KEY,
|
|
17
|
+
activateSkill,
|
|
18
|
+
deactivateSkill,
|
|
19
|
+
getSkillState,
|
|
20
|
+
isSkillActive,
|
|
21
|
+
listActiveSkills,
|
|
22
|
+
listAvailableSkills,
|
|
23
|
+
listInactiveSkills,
|
|
24
|
+
setSkillState
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=state.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/tools.d.ts
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import * as _harness_kernel_core from '@harness-kernel/core';
|
|
2
|
+
import { HarnessTool, InferInput, AgentActionSession, AgentToolResult } from '@harness-kernel/core';
|
|
3
|
+
import { HarnessSkill } from './skill.js';
|
|
4
|
+
import { SkillRegistry } from './registry.js';
|
|
5
|
+
import { SkillActivationResult, SkillToolOptions, SkillDeactivationResult, listAvailableSkills, listActiveSkills, listInactiveSkills } from './state.js';
|
|
6
|
+
|
|
7
|
+
declare const skillKeySchema: _harness_kernel_core.ObjectSchema<{
|
|
8
|
+
key: _harness_kernel_core.StringSchema;
|
|
9
|
+
reason: _harness_kernel_core.OptionalSchema<unknown, string | undefined>;
|
|
10
|
+
}>;
|
|
11
|
+
declare const listSkillsSchema: _harness_kernel_core.ObjectSchema<{
|
|
12
|
+
includeTools: _harness_kernel_core.DefaultSchema<unknown, boolean>;
|
|
13
|
+
includeInactive: _harness_kernel_core.DefaultSchema<unknown, boolean>;
|
|
14
|
+
}>;
|
|
15
|
+
type SkillKeyInput = InferInput<typeof skillKeySchema>;
|
|
16
|
+
type ListSkillsInput = InferInput<typeof listSkillsSchema>;
|
|
17
|
+
interface SkillGateOptions extends SkillToolOptions {
|
|
18
|
+
skillKeys?: string[];
|
|
19
|
+
}
|
|
20
|
+
interface SkillListResult {
|
|
21
|
+
ok: true;
|
|
22
|
+
available: ReturnType<typeof listAvailableSkills>;
|
|
23
|
+
active: ReturnType<typeof listActiveSkills>;
|
|
24
|
+
inactive?: ReturnType<typeof listInactiveSkills>;
|
|
25
|
+
}
|
|
26
|
+
declare class SkillActivationTool extends HarnessTool<SkillKeyInput, SkillActivationResult> {
|
|
27
|
+
private readonly registry;
|
|
28
|
+
private readonly options;
|
|
29
|
+
name: string;
|
|
30
|
+
description: string;
|
|
31
|
+
schema: _harness_kernel_core.ObjectSchema<{
|
|
32
|
+
key: _harness_kernel_core.StringSchema;
|
|
33
|
+
reason: _harness_kernel_core.OptionalSchema<unknown, string | undefined>;
|
|
34
|
+
}>;
|
|
35
|
+
risk: "safe";
|
|
36
|
+
constructor(registry: SkillRegistry, options?: SkillToolOptions);
|
|
37
|
+
execute(args: SkillKeyInput, session: AgentActionSession): Promise<AgentToolResult<SkillActivationResult>>;
|
|
38
|
+
}
|
|
39
|
+
declare class SkillDeactivationTool extends HarnessTool<SkillKeyInput, SkillDeactivationResult> {
|
|
40
|
+
private readonly registry;
|
|
41
|
+
private readonly options;
|
|
42
|
+
name: string;
|
|
43
|
+
description: string;
|
|
44
|
+
schema: _harness_kernel_core.ObjectSchema<{
|
|
45
|
+
key: _harness_kernel_core.StringSchema;
|
|
46
|
+
reason: _harness_kernel_core.OptionalSchema<unknown, string | undefined>;
|
|
47
|
+
}>;
|
|
48
|
+
risk: "safe";
|
|
49
|
+
constructor(registry: SkillRegistry, options?: SkillToolOptions);
|
|
50
|
+
execute(args: SkillKeyInput, session: AgentActionSession): Promise<AgentToolResult<SkillDeactivationResult>>;
|
|
51
|
+
}
|
|
52
|
+
declare class SkillListTool extends HarnessTool<ListSkillsInput, SkillListResult> {
|
|
53
|
+
private readonly registry;
|
|
54
|
+
private readonly options;
|
|
55
|
+
name: string;
|
|
56
|
+
description: string;
|
|
57
|
+
schema: _harness_kernel_core.ObjectSchema<{
|
|
58
|
+
includeTools: _harness_kernel_core.DefaultSchema<unknown, boolean>;
|
|
59
|
+
includeInactive: _harness_kernel_core.DefaultSchema<unknown, boolean>;
|
|
60
|
+
}>;
|
|
61
|
+
risk: "safe";
|
|
62
|
+
constructor(registry: SkillRegistry, options?: SkillToolOptions);
|
|
63
|
+
execute(args: ListSkillsInput, session: AgentActionSession): AgentToolResult<SkillListResult>;
|
|
64
|
+
}
|
|
65
|
+
declare function createSkillActivationTool(registry: SkillRegistry | HarnessSkill[], options?: SkillToolOptions): HarnessTool;
|
|
66
|
+
declare function createSkillDeactivationTool(registry: SkillRegistry | HarnessSkill[], options?: SkillToolOptions): HarnessTool;
|
|
67
|
+
declare function createSkillListTool(registry: SkillRegistry | HarnessSkill[], options?: SkillToolOptions): HarnessTool;
|
|
68
|
+
declare function createSkillGatedTools(registry: SkillRegistry | HarnessSkill[], options?: SkillGateOptions): HarnessTool[];
|
|
69
|
+
|
|
70
|
+
export { SkillActivationTool, SkillDeactivationTool, type SkillGateOptions, type SkillListResult, SkillListTool, createSkillActivationTool, createSkillDeactivationTool, createSkillGatedTools, createSkillListTool };
|
package/dist/tools.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {
|
|
2
|
+
SkillActivationTool,
|
|
3
|
+
SkillDeactivationTool,
|
|
4
|
+
SkillListTool,
|
|
5
|
+
createSkillActivationTool,
|
|
6
|
+
createSkillDeactivationTool,
|
|
7
|
+
createSkillGatedTools,
|
|
8
|
+
createSkillListTool
|
|
9
|
+
} from "./chunk-6XTSIVQV.js";
|
|
10
|
+
import "./chunk-SIAWNALF.js";
|
|
11
|
+
import "./chunk-FUZYYJJU.js";
|
|
12
|
+
import "./chunk-TC7PNGST.js";
|
|
13
|
+
import "./chunk-BF5PYWY6.js";
|
|
14
|
+
export {
|
|
15
|
+
SkillActivationTool,
|
|
16
|
+
SkillDeactivationTool,
|
|
17
|
+
SkillListTool,
|
|
18
|
+
createSkillActivationTool,
|
|
19
|
+
createSkillDeactivationTool,
|
|
20
|
+
createSkillGatedTools,
|
|
21
|
+
createSkillListTool
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=tools.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harness-kernel/skills",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Package-only skill registry, prompts, gated tools, and audit events for Harness Kernel agents.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/Ducks-Software-AI-Infrastructure/harness-kernel.git"
|
|
10
|
-
"directory": "packages/skills"
|
|
9
|
+
"url": "git+https://github.com/Ducks-Software-AI-Infrastructure/harness-kernel.git"
|
|
11
10
|
},
|
|
12
11
|
"homepage": "https://ducks-software-ai-infrastructure.github.io/harness-kernel/docs/packages/skills/",
|
|
13
12
|
"bugs": {
|
|
@@ -16,6 +15,7 @@
|
|
|
16
15
|
"keywords": [
|
|
17
16
|
"ai",
|
|
18
17
|
"agents",
|
|
18
|
+
"runtime",
|
|
19
19
|
"skills",
|
|
20
20
|
"harness-kernel"
|
|
21
21
|
],
|
|
@@ -24,15 +24,53 @@
|
|
|
24
24
|
},
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
-
"
|
|
28
|
-
"
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./events": {
|
|
31
|
+
"types": "./dist/events.d.ts",
|
|
32
|
+
"import": "./dist/events.js"
|
|
33
|
+
},
|
|
34
|
+
"./logs": {
|
|
35
|
+
"types": "./dist/logs.d.ts",
|
|
36
|
+
"import": "./dist/logs.js"
|
|
37
|
+
},
|
|
38
|
+
"./provider": {
|
|
39
|
+
"types": "./dist/provider.d.ts",
|
|
40
|
+
"import": "./dist/provider.js"
|
|
41
|
+
},
|
|
42
|
+
"./registry": {
|
|
43
|
+
"types": "./dist/registry.d.ts",
|
|
44
|
+
"import": "./dist/registry.js"
|
|
45
|
+
},
|
|
46
|
+
"./skill": {
|
|
47
|
+
"types": "./dist/skill.d.ts",
|
|
48
|
+
"import": "./dist/skill.js"
|
|
49
|
+
},
|
|
50
|
+
"./state": {
|
|
51
|
+
"types": "./dist/state.d.ts",
|
|
52
|
+
"import": "./dist/state.js"
|
|
53
|
+
},
|
|
54
|
+
"./tools": {
|
|
55
|
+
"types": "./dist/tools.d.ts",
|
|
56
|
+
"import": "./dist/tools.js"
|
|
29
57
|
},
|
|
30
58
|
"./package.json": "./package.json"
|
|
31
59
|
},
|
|
32
60
|
"files": [
|
|
33
|
-
"
|
|
34
|
-
"index.d.ts",
|
|
61
|
+
"dist",
|
|
35
62
|
"README.md",
|
|
36
63
|
"NOTICE"
|
|
37
|
-
]
|
|
38
|
-
|
|
64
|
+
],
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "tsup",
|
|
67
|
+
"typecheck": "tsc --noEmit",
|
|
68
|
+
"test": "tsx src/skill.test.ts"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@harness-kernel/core": "0.5.0"
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=18"
|
|
75
|
+
}
|
|
76
|
+
}
|
package/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const placeholder: true;
|
package/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const placeholder = true;
|