@baseplate-dev/project-builder-lib 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 +24 -0
  2. package/package.json +7 -7
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # @baseplate-dev/project-builder-lib
2
+
3
+ This package contains shared libraries and common logic used across the Baseplate project builder components.
4
+
5
+ ## Purpose
6
+
7
+ The project-builder-lib package provides:
8
+
9
+ - High-level JSON schema definitions for project configurations
10
+ - Common data structures and types used by both web and server components
11
+ - Validation logic for project definitions
12
+ - Shared utilities for project configuration management
13
+ - Core abstractions for the project builder ecosystem
14
+
15
+ ## Key Features
16
+
17
+ - Zod schemas for type-safe project definitions
18
+ - Model and field type definitions
19
+ - Authentication and plugin configuration schemas
20
+ - Shared business logic for project validation
21
+
22
+ ## Part of Baseplate Monorepo
23
+
24
+ This package is part of the Baseplate monorepo and serves as a shared dependency for project-builder-web and project-builder-server.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@baseplate-dev/project-builder-lib",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Library for Project Builder using Baseplate generators",
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/project-builder-lib"
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",
@@ -37,9 +37,9 @@
37
37
  "react-hook-form": "7.56.3",
38
38
  "zod": "3.24.1",
39
39
  "zustand": "5.0.3",
40
- "@baseplate-dev/sync": "0.1.1",
41
- "@baseplate-dev/ui-components": "0.1.1",
42
- "@baseplate-dev/utils": "0.1.1"
40
+ "@baseplate-dev/sync": "0.1.2",
41
+ "@baseplate-dev/ui-components": "0.1.2",
42
+ "@baseplate-dev/utils": "0.1.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@faker-js/faker": "9.8.0",
@@ -52,7 +52,7 @@
52
52
  "typescript": "5.7.3",
53
53
  "vite": "6.3.5",
54
54
  "vitest": "3.0.7",
55
- "@baseplate-dev/tools": "0.1.1"
55
+ "@baseplate-dev/tools": "0.1.2"
56
56
  },
57
57
  "engines": {
58
58
  "node": "^22.0.0"