@shardworks/nexus-stdlib 0.1.27 → 0.1.28
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/index.d.ts +37 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -0
- package/package.json +5 -9
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export { default as commission } from './tools/commission.ts';
|
|
2
|
+
export { default as signal } from './tools/signal.ts';
|
|
3
|
+
export { default as install } from './tools/install.ts';
|
|
4
|
+
export { default as remove } from './tools/remove.ts';
|
|
5
|
+
export { default as instantiate } from './tools/instantiate.ts';
|
|
6
|
+
export { default as nexusVersion } from './tools/nexus-version.ts';
|
|
7
|
+
export { default as workshopPrepare } from './engines/workshop-prepare.ts';
|
|
8
|
+
export { default as workshopMerge } from './engines/workshop-merge.ts';
|
|
9
|
+
declare const _default: (import("@shardworks/nexus-core").EngineDefinition | import("@shardworks/nexus-core").ToolDefinition<{
|
|
10
|
+
spec: import("zod").ZodString;
|
|
11
|
+
workshop: import("zod").ZodString;
|
|
12
|
+
}> | import("@shardworks/nexus-core").ToolDefinition<{
|
|
13
|
+
name: import("zod").ZodString;
|
|
14
|
+
payload: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
15
|
+
}> | import("@shardworks/nexus-core").ToolDefinition<{
|
|
16
|
+
source: import("zod").ZodString;
|
|
17
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
18
|
+
roles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
19
|
+
link: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
20
|
+
}> | import("@shardworks/nexus-core").ToolDefinition<{
|
|
21
|
+
name: import("zod").ZodString;
|
|
22
|
+
category: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
23
|
+
tools: "tools";
|
|
24
|
+
engines: "engines";
|
|
25
|
+
curricula: "curricula";
|
|
26
|
+
temperaments: "temperaments";
|
|
27
|
+
}>>;
|
|
28
|
+
}> | import("@shardworks/nexus-core").ToolDefinition<{
|
|
29
|
+
name: import("zod").ZodString;
|
|
30
|
+
roles: import("zod").ZodArray<import("zod").ZodString>;
|
|
31
|
+
curriculum: import("zod").ZodOptional<import("zod").ZodString>;
|
|
32
|
+
temperament: import("zod").ZodOptional<import("zod").ZodString>;
|
|
33
|
+
}> | import("@shardworks/nexus-core").ToolDefinition<{
|
|
34
|
+
verbose: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
35
|
+
}>)[];
|
|
36
|
+
export default _default;
|
|
37
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,6BAA6B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAWvE,wBAAgH"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export { default as commission } from "./tools/commission.js";
|
|
2
|
+
export { default as signal } from "./tools/signal.js";
|
|
3
|
+
export { default as install } from "./tools/install.js";
|
|
4
|
+
export { default as remove } from "./tools/remove.js";
|
|
5
|
+
export { default as instantiate } from "./tools/instantiate.js";
|
|
6
|
+
export { default as nexusVersion } from "./tools/nexus-version.js";
|
|
7
|
+
export { default as workshopPrepare } from "./engines/workshop-prepare.js";
|
|
8
|
+
export { default as workshopMerge } from "./engines/workshop-merge.js";
|
|
9
|
+
import commission from "./tools/commission.js";
|
|
10
|
+
import signal from "./tools/signal.js";
|
|
11
|
+
import install from "./tools/install.js";
|
|
12
|
+
import remove from "./tools/remove.js";
|
|
13
|
+
import instantiate from "./tools/instantiate.js";
|
|
14
|
+
import nexusVersion from "./tools/nexus-version.js";
|
|
15
|
+
import workshopPrepare from "./engines/workshop-prepare.js";
|
|
16
|
+
import workshopMerge from "./engines/workshop-merge.js";
|
|
17
|
+
export default [commission, signal, install, remove, instantiate, nexusVersion, workshopPrepare, workshopMerge];
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAEvE,OAAO,UAAU,MAAM,uBAAuB,CAAC;AAC/C,OAAO,MAAM,MAAM,mBAAmB,CAAC;AACvC,OAAO,OAAO,MAAM,oBAAoB,CAAC;AACzC,OAAO,MAAM,MAAM,mBAAmB,CAAC;AACvC,OAAO,WAAW,MAAM,wBAAwB,CAAC;AACjD,OAAO,YAAY,MAAM,0BAA0B,CAAC;AACpD,OAAO,eAAe,MAAM,+BAA+B,CAAC;AAC5D,OAAO,aAAa,MAAM,6BAA6B,CAAC;AAExD,eAAe,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,eAAe,EAAE,aAAa,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shardworks/nexus-stdlib",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.28",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,18 +10,14 @@
|
|
|
10
10
|
"description": "Standard tools and engines for the Nexus guild system",
|
|
11
11
|
"type": "module",
|
|
12
12
|
"exports": {
|
|
13
|
-
"
|
|
14
|
-
"types": "./dist/
|
|
15
|
-
"import": "./dist/
|
|
16
|
-
},
|
|
17
|
-
"./engines": {
|
|
18
|
-
"types": "./dist/engines.d.ts",
|
|
19
|
-
"import": "./dist/engines.js"
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js"
|
|
20
16
|
}
|
|
21
17
|
},
|
|
22
18
|
"dependencies": {
|
|
23
19
|
"zod": "^4.0.0",
|
|
24
|
-
"@shardworks/nexus-core": "0.1.
|
|
20
|
+
"@shardworks/nexus-core": "0.1.28"
|
|
25
21
|
},
|
|
26
22
|
"devDependencies": {
|
|
27
23
|
"@types/node": "25.5.0"
|