@baseplate-dev/project-builder-web 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.
- package/README.md +24 -0
- package/package.json +8 -7
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# @baseplate-dev/project-builder-web
|
|
2
|
+
|
|
3
|
+
This package contains the React-based web interface for the Baseplate project builder. It provides the graphical user interface where users configure their project's blueprint.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
The project-builder-web package provides:
|
|
8
|
+
|
|
9
|
+
- A visual interface for defining data models, relationships, and fields
|
|
10
|
+
- Configuration through plugin interfaces
|
|
11
|
+
- Project settings and configuration management
|
|
12
|
+
- Real-time preview of project structure
|
|
13
|
+
- Integration with the project-builder-server for saving and synchronizing changes
|
|
14
|
+
|
|
15
|
+
## Technology Stack
|
|
16
|
+
|
|
17
|
+
- Built with React and TypeScript
|
|
18
|
+
- Uses Vite for bundling and development
|
|
19
|
+
- Styled with Tailwind CSS
|
|
20
|
+
- Communicates with the backend via tRPC
|
|
21
|
+
|
|
22
|
+
## Part of Baseplate Monorepo
|
|
23
|
+
|
|
24
|
+
This package is part of the Baseplate monorepo and is served by the project-builder-cli when users run `pnpm baseplate serve`.
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baseplate-dev/project-builder-web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Web interface for constructing project builder JSON",
|
|
5
|
+
"homepage": "https://www.baseplate.dev",
|
|
5
6
|
"repository": "https://github.com/halfdomelabs/baseplate",
|
|
6
|
-
"license": "
|
|
7
|
+
"license": "MPL-2.0",
|
|
7
8
|
"author": "Half Dome Labs LLC",
|
|
8
9
|
"type": "module",
|
|
9
10
|
"imports": {
|
|
@@ -57,9 +58,9 @@
|
|
|
57
58
|
"semver": "^7.5.4",
|
|
58
59
|
"zod": "3.24.1",
|
|
59
60
|
"zustand": "5.0.3",
|
|
60
|
-
"@baseplate-dev/project-builder-lib": "0.1.
|
|
61
|
-
"@baseplate-dev/ui-components": "0.1.
|
|
62
|
-
"@baseplate-dev/utils": "0.1.
|
|
61
|
+
"@baseplate-dev/project-builder-lib": "0.1.2",
|
|
62
|
+
"@baseplate-dev/ui-components": "0.1.2",
|
|
63
|
+
"@baseplate-dev/utils": "0.1.2"
|
|
63
64
|
},
|
|
64
65
|
"devDependencies": {
|
|
65
66
|
"@originjs/vite-plugin-federation": "1.3.6",
|
|
@@ -77,8 +78,8 @@
|
|
|
77
78
|
"vite": "6.3.5",
|
|
78
79
|
"vite-plugin-svgr": "4.3.0",
|
|
79
80
|
"vitest": "3.0.7",
|
|
80
|
-
"@baseplate-dev/project-builder-server": "0.1.
|
|
81
|
-
"@baseplate-dev/tools": "0.1.
|
|
81
|
+
"@baseplate-dev/project-builder-server": "0.1.2",
|
|
82
|
+
"@baseplate-dev/tools": "0.1.2"
|
|
82
83
|
},
|
|
83
84
|
"engines": {
|
|
84
85
|
"node": "^22.0.0"
|