@baseplate-dev/project-builder-server 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 +23 -0
- package/package.json +10 -10
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @baseplate-dev/project-builder-server
|
|
2
|
+
|
|
3
|
+
This package provides the backend API server for the Baseplate project builder. It runs on Node.js with Fastify and handles all server-side operations.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
The project-builder-server package provides:
|
|
8
|
+
|
|
9
|
+
- Backend API endpoints for the project-builder-web interface via tRPC
|
|
10
|
+
- Project definition storage and retrieval
|
|
11
|
+
- Conversion of high-level project definitions into detailed code generation instructions
|
|
12
|
+
- Orchestration of the sync engine for code generation
|
|
13
|
+
- Integration of generated code into the project codebase
|
|
14
|
+
- File system operations and project management
|
|
15
|
+
|
|
16
|
+
## Technology Stack
|
|
17
|
+
|
|
18
|
+
- Built with Fastify
|
|
19
|
+
- Uses tRPC for type-safe client-server communication
|
|
20
|
+
|
|
21
|
+
## Part of Baseplate Monorepo
|
|
22
|
+
|
|
23
|
+
This package is part of the Baseplate monorepo and is started automatically by the project-builder-cli when running `pnpm baseplate serve`.
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baseplate-dev/project-builder-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Server for Project Builder using Baseplate generators",
|
|
5
|
-
"homepage": "https://www.
|
|
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-server"
|
|
10
10
|
},
|
|
11
|
-
"license": "
|
|
11
|
+
"license": "MPL-2.0",
|
|
12
12
|
"author": "Half Dome Labs LLC",
|
|
13
13
|
"sideEffects": false,
|
|
14
14
|
"type": "module",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"open": "10.1.0",
|
|
46
46
|
"pino": "9.5.0",
|
|
47
47
|
"zod": "3.24.1",
|
|
48
|
-
"@baseplate-dev/core-generators": "0.1.
|
|
49
|
-
"@baseplate-dev/fastify-generators": "0.1.
|
|
50
|
-
"@baseplate-dev/project-builder-lib": "0.1.
|
|
51
|
-
"@baseplate-dev/react-generators": "0.1.
|
|
52
|
-
"@baseplate-dev/sync": "0.1.
|
|
53
|
-
"@baseplate-dev/utils": "0.1.
|
|
48
|
+
"@baseplate-dev/core-generators": "0.1.2",
|
|
49
|
+
"@baseplate-dev/fastify-generators": "0.1.2",
|
|
50
|
+
"@baseplate-dev/project-builder-lib": "0.1.2",
|
|
51
|
+
"@baseplate-dev/react-generators": "0.1.2",
|
|
52
|
+
"@baseplate-dev/sync": "0.1.2",
|
|
53
|
+
"@baseplate-dev/utils": "0.1.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/node": "^22.0.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"prettier": "3.5.3",
|
|
60
60
|
"typescript": "5.7.3",
|
|
61
61
|
"vitest": "3.0.7",
|
|
62
|
-
"@baseplate-dev/tools": "0.1.
|
|
62
|
+
"@baseplate-dev/tools": "0.1.2"
|
|
63
63
|
},
|
|
64
64
|
"engines": {
|
|
65
65
|
"node": "^22.0.0"
|