@baseplate-dev/core-generators 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +26 -0
  2. package/package.json +6 -6
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @baseplate-dev/core-generators
2
+
3
+ This package provides core code generators for TypeScript projects and base abstractions used throughout Baseplate.
4
+
5
+ ## Purpose
6
+
7
+ The core-generators package provides:
8
+
9
+ - TypeScript code generation utilities and abstractions
10
+ - Package.json generation and management
11
+ - High-level TypeScript file abstractions
12
+ - Core project structure generators
13
+ - Base configuration file generators
14
+ - Common provider definitions and scopes
15
+
16
+ ## Key Features
17
+
18
+ - TsCodeFragment system for composable TypeScript generation
19
+ - Import management and resolution
20
+ - Project-wide provider definitions
21
+ - JSON file generation with formatting
22
+ - Core package dependency management
23
+
24
+ ## Part of Baseplate Monorepo
25
+
26
+ This package is part of the Baseplate monorepo and serves as the foundation for all code generation in Baseplate projects.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@baseplate-dev/core-generators",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Core generators for Baseplate",
5
- "homepage": "https://www.halfdomelabs.com/",
5
+ "homepage": "https://www.baseplate.dev",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/halfdomelabs/baseplate",
9
9
  "directory": "packages/code-generators"
10
10
  },
11
- "license": "SEE LICENSE IN LICENSE",
11
+ "license": "MPL-2.0",
12
12
  "author": "Half Dome Labs LLC",
13
13
  "sideEffects": false,
14
14
  "type": "module",
@@ -46,8 +46,8 @@
46
46
  "sort-package-json": "2.10.1",
47
47
  "ts-morph": "25.0.0",
48
48
  "zod": "3.24.1",
49
- "@baseplate-dev/sync": "0.1.1",
50
- "@baseplate-dev/utils": "0.1.1"
49
+ "@baseplate-dev/sync": "0.1.2",
50
+ "@baseplate-dev/utils": "0.1.2"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/node": "^22.0.0",
@@ -58,7 +58,7 @@
58
58
  "eslint": "9.26.0",
59
59
  "typescript": "5.7.3",
60
60
  "vitest": "3.0.7",
61
- "@baseplate-dev/tools": "0.1.1"
61
+ "@baseplate-dev/tools": "0.1.2"
62
62
  },
63
63
  "engines": {
64
64
  "node": "^22.0.0"