@tailor-cms/ce-sequence-server 0.0.1

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.cjs ADDED
@@ -0,0 +1,19 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let _tailor_cms_ce_sequence_manifest = require("@tailor-cms/ce-sequence-manifest");
6
+ //#region src/index.ts
7
+ const hookMap = /* @__PURE__ */ new Map();
8
+ const serverModule = {
9
+ type: _tailor_cms_ce_sequence_manifest.type,
10
+ initState: _tailor_cms_ce_sequence_manifest.initState,
11
+ hookMap,
12
+ ai: _tailor_cms_ce_sequence_manifest.ai
13
+ };
14
+ //#endregion
15
+ exports.ai = _tailor_cms_ce_sequence_manifest.ai;
16
+ exports.default = serverModule;
17
+ exports.hookMap = hookMap;
18
+ exports.initState = _tailor_cms_ce_sequence_manifest.initState;
19
+ exports.type = _tailor_cms_ce_sequence_manifest.type;
@@ -0,0 +1,8 @@
1
+ import { Element, ai, initState, type } from "@tailor-cms/ce-sequence-manifest";
2
+ import { HookMap, ServerModule } from "@tailor-cms/cek-common";
3
+
4
+ //#region src/index.d.ts
5
+ declare const hookMap: HookMap<Element>;
6
+ declare const serverModule: ServerModule<Element>;
7
+ //#endregion
8
+ export { ai, serverModule as default, hookMap, initState, type };
@@ -0,0 +1,8 @@
1
+ import { Element, ai, initState, type } from "@tailor-cms/ce-sequence-manifest";
2
+ import { HookMap, ServerModule } from "@tailor-cms/cek-common";
3
+
4
+ //#region src/index.d.ts
5
+ declare const hookMap: HookMap<Element>;
6
+ declare const serverModule: ServerModule<Element>;
7
+ //#endregion
8
+ export { ai, serverModule as default, hookMap, initState, type };
package/dist/index.mjs ADDED
@@ -0,0 +1,11 @@
1
+ import { ai, initState, type } from "@tailor-cms/ce-sequence-manifest";
2
+ //#region src/index.ts
3
+ const hookMap = /* @__PURE__ */ new Map();
4
+ const serverModule = {
5
+ type,
6
+ initState,
7
+ hookMap,
8
+ ai
9
+ };
10
+ //#endregion
11
+ export { ai, serverModule as default, hookMap, initState, type };
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@tailor-cms/ce-sequence-server",
3
+ "description": "Tailor CMS sequence element server component",
4
+ "author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
5
+ "type": "module",
6
+ "version": "0.0.1",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.mjs",
10
+ "require": "./dist/index.cjs"
11
+ }
12
+ },
13
+ "main": "./dist/index.cjs",
14
+ "types": "./dist/index.d.mts",
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "dependencies": {
19
+ "@tailor-cms/cek-common": "^2.0.1",
20
+ "@tailor-cms/ce-sequence-manifest": "0.0.1"
21
+ },
22
+ "devDependencies": {
23
+ "@tailor-cms/eslint-config": "^2.0.1",
24
+ "tsdown": "^0.21.10",
25
+ "typescript": "^6.0.3"
26
+ },
27
+ "tsdown": {
28
+ "target": "node24",
29
+ "format": [
30
+ "cjs",
31
+ "esm"
32
+ ]
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "engines": {
38
+ "node": ">=24"
39
+ },
40
+ "scripts": {
41
+ "dev": "tsdown --watch src --watch ../manifest/dist",
42
+ "build": "tsdown",
43
+ "lint": "eslint .",
44
+ "lint:fix": "pnpm lint --fix",
45
+ "nuke": "pnpm dlx del-cli dist node_modules",
46
+ "nuke:dist": "pnpm dlx del-cli dist",
47
+ "prepublish": "pnpm build"
48
+ }
49
+ }