create-apiagex 0.6.1 → 0.6.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 CHANGED
@@ -28,7 +28,7 @@ Generated starter files:
28
28
 
29
29
  The generated `.env.example` documents `APIAGEX_DATABASE_PATH=.apiagex/apiagex.sqlite` and `APIAGEX_UPLOADS_PATH=.apiagex/uploads` for local persistence.
30
30
 
31
- The generated `package.json` depends on `apiagex-server` and exposes `npm run dev`, `npm run start`, `npm run smoke`, and `npm run build`.
31
+ The generated `package.json` depends on `@apiagex/server` and exposes `npm run dev`, `npm run start`, `npm run smoke`, and `npm run build`.
32
32
 
33
33
  The generated starter README points users to `/doc`, `/readme`, and `/adminui`, includes practical owner/schema/entry/role/webhook/realtime flow, and explains common errors.
34
34
 
@@ -91,7 +91,7 @@ Generated starter files:
91
91
 
92
92
  Generated `.env.example` local persistence ke liye `APIAGEX_DATABASE_PATH=.apiagex/apiagex.sqlite` aur `APIAGEX_UPLOADS_PATH=.apiagex/uploads` document karta hai.
93
93
 
94
- Generated `package.json` `apiagex-server` par depend karta hai aur `npm run dev`, `npm run start`, `npm run smoke`, aur `npm run build` expose karta hai.
94
+ Generated `package.json` `@apiagex/server` par depend karta hai aur `npm run dev`, `npm run start`, `npm run smoke`, aur `npm run build` expose karta hai.
95
95
 
96
96
  Generated starter README users ko `/doc`, `/readme`, aur `/adminui` par point karta hai, practical owner/schema/entry/role/webhook/realtime flow include karta hai, aur common errors explain karta hai.
97
97
 
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import { fileURLToPath } from "node:url";
7
7
  import { parseArgs, validateProjectSlug } from "./args.js";
8
8
  import { resolveAnswers } from "./prompts.js";
9
9
  import { createScaffoldFiles, renderPlan } from "./scaffold.js";
10
- const packageVersion = "0.6.1";
10
+ const packageVersion = "0.6.2";
11
11
  export async function runCli(args, cwd = process.cwd(), io = {}) {
12
12
  const parsed = parseArgs(args);
13
13
  if (typeof parsed === "string")
package/dist/scaffold.js CHANGED
@@ -14,7 +14,7 @@ export function createScaffoldFiles(answers) {
14
14
  smoke: "apiagex smoke",
15
15
  },
16
16
  dependencies: {
17
- "apiagex-server": "^0.6.1",
17
+ "@apiagex/server": "^0.6.2",
18
18
  },
19
19
  }, null, 2)}\n`,
20
20
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-apiagex",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Installer CLI for creating Apiagex CMS projects.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -29,7 +29,7 @@
29
29
  "LICENSE"
30
30
  ],
31
31
  "bin": {
32
- "create-apiagex": "./dist/index.js"
32
+ "create-apiagex": "dist/index.js"
33
33
  },
34
34
  "exports": {
35
35
  ".": "./dist/index.js"