@deftai/directive-types 0.55.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.
@@ -0,0 +1,15 @@
1
+ /**
2
+ * `@deftai/directive-types` — shared types for the deft directive TypeScript engine.
3
+ *
4
+ * Wave-1 skeleton (#1717): carries only the identity constant and a
5
+ * placeholder metadata shape needed to prove the cross-package dependency
6
+ * graph (types → core → cli). The real ported domain types arrive with the
7
+ * `verify:encoding` tracer bullet and parity harness (#1718).
8
+ */
9
+ export declare const TYPES_PACKAGE: "@deftai/directive-types";
10
+ /** Identifying metadata for a deft engine package. */
11
+ export interface EngineInfo {
12
+ readonly name: string;
13
+ readonly version: string;
14
+ }
15
+ //# sourceMappingURL=index.d.ts.map
package/dist/index.js ADDED
@@ -0,0 +1,10 @@
1
+ /**
2
+ * `@deftai/directive-types` — shared types for the deft directive TypeScript engine.
3
+ *
4
+ * Wave-1 skeleton (#1717): carries only the identity constant and a
5
+ * placeholder metadata shape needed to prove the cross-package dependency
6
+ * graph (types → core → cli). The real ported domain types arrive with the
7
+ * `verify:encoding` tracer bullet and parity harness (#1718).
8
+ */
9
+ export const TYPES_PACKAGE = "@deftai/directive-types";
10
+ //# sourceMappingURL=index.js.map
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@deftai/directive-types",
3
+ "version": "0.55.0",
4
+ "description": "Shared TypeScript types for the Directive framework engine.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "default": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist/**/*.js",
16
+ "dist/**/*.d.ts"
17
+ ],
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/deftai/directive.git",
21
+ "directory": "packages/types"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "provenance": true
26
+ },
27
+ "scripts": {
28
+ "build": "tsc -b"
29
+ }
30
+ }