@maykonpaulo/maestro-server 0.1.0 → 0.1.1-rc.0

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 +2 -0
  2. package/package.json +10 -4
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @maykonpaulo/maestro-server
2
2
 
3
+ > 📖 **[Guia completo — criar o admin de qualquer sistema com o Maestro](https://github.com/maykonpaulo/maestro/blob/main/docs/guia-criar-admin.md)** — passo a passo, do zero ao admin no ar, para qualquer banco.
4
+
3
5
  The **turnkey HTTP server** for [`@maykonpaulo/maestro-core`](https://www.npmjs.com/package/@maykonpaulo/maestro-core), per [ADR 0008 — Camada Turnkey](../../docs/adr/0008-turnkey-server-and-admin-ui.md).
4
6
 
5
7
  The core is deliberately server-free and framework-agnostic: it exposes `createMaestroHttpHandlers` (handlers you mount on *your* Express/Fastify/Lambda), never an actual server. This sibling package is the batteries-included layer that boots a real HTTP server, and — combined with a live datasource provider — turns **any database into a complete, governed admin over every collection, without writing a line of per-entity code**.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maykonpaulo/maestro-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1-rc.0",
4
4
  "description": "Turnkey HTTP server for @maykonpaulo/maestro-core — mounts the framework-agnostic Maestro HTTP handlers on a real Express server and turns any live datasource provider into a full, governed admin over the whole database (ADR 0008). The core stays server-free; this sibling package is the batteries-included layer.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,7 +20,7 @@
20
20
  "access": "public"
21
21
  },
22
22
  "peerDependencies": {
23
- "@maykonpaulo/maestro-core": "0.7.0"
23
+ "@maykonpaulo/maestro-core": "0.7.1-rc.0"
24
24
  },
25
25
  "dependencies": {
26
26
  "express": "^4.19.2"
@@ -34,9 +34,15 @@
34
34
  "tsup": "^8.0.0",
35
35
  "typescript": "^5.6.0",
36
36
  "vitest": "^2.0.0",
37
- "@maykonpaulo/maestro-core": "0.7.0",
38
- "@maykonpaulo/maestro-provider-mongodb": "1.0.0"
37
+ "@maykonpaulo/maestro-core": "0.7.1-rc.0",
38
+ "@maykonpaulo/maestro-provider-mongodb": "1.0.1-rc.0"
39
39
  },
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/maykonpaulo/maestro.git",
43
+ "directory": "packages/server"
44
+ },
45
+ "homepage": "https://github.com/maykonpaulo/maestro#readme",
40
46
  "scripts": {
41
47
  "build": "tsup",
42
48
  "test": "vitest run",