constructa-generators 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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # `constructa-generators`
2
+
3
+ Built-in generator implementations for Constructa.
4
+
5
+ The first implementation set will include integer, boolean, choice, decimal, string, date, UUID, object, array, and template generators. Each generator should own its configuration validation, metadata, implementation, and tests while conforming to the common core contract.
@@ -0,0 +1 @@
1
+ export {}
package/dist/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "constructa-generators",
3
+ "version": "0.0.1",
4
+ "description": "Built-in primitive and composite generators for Constructa.",
5
+ "private": false,
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "main": "./dist/index.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js",
17
+ "default": "./dist/index.js"
18
+ }
19
+ },
20
+ "scripts": {
21
+ "build": "tsdown",
22
+ "check-types": "tsc --noEmit"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "dependencies": {
28
+ "constructa-core": "workspace:*",
29
+ "constructa-schema": "workspace:*"
30
+ },
31
+ "devDependencies": {
32
+ "@constructa/config": "workspace:*",
33
+ "typescript": "catalog:"
34
+ }
35
+ }