create-daloy 0.1.22 → 0.1.23

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.
@@ -44,10 +44,10 @@ const TEMPLATE_OPTIONS = [
44
44
  ];
45
45
 
46
46
  const PACKAGE_MANAGER_OPTIONS = [
47
- { value: "pnpm", title: "pnpm", description: "Recommended for DaloyJS projects" },
48
- { value: "npm", title: "npm", description: "Use the npm client you already have" },
49
- { value: "yarn", title: "Yarn", description: "Classic create workflow" },
50
- { value: "bun", title: "Bun", description: "Fast install and runtime tooling" },
47
+ { value: "pnpm", title: "pnpm", description: "Recommended default with the hardened pnpm workspace settings" },
48
+ { value: "npm", title: "npm", description: "Use the stock npm CLI with rewritten scripts and docs" },
49
+ { value: "yarn", title: "Yarn", description: "Yarn workflow with rewritten scripts and lockfile-friendly installs" },
50
+ { value: "bun", title: "Bun", description: "Bun package manager for fast installs; runtime templates stay Bun-native" },
51
51
  ];
52
52
 
53
53
  const TEMPLATES = TEMPLATE_OPTIONS.map((option) => option.value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-daloy",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Scaffold a new DaloyJS project. Run with `pnpm create daloy`, `npm create daloy@latest`, `yarn create daloy`, or `bun create daloy`.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -16,7 +16,7 @@
16
16
  "gen": "pnpm gen:openapi && pnpm gen:client"
17
17
  },
18
18
  "dependencies": {
19
- "@daloyjs/core": "^0.5.0",
19
+ "@daloyjs/core": "^0.7.5",
20
20
  "zod": "^4.4.3"
21
21
  },
22
22
  "devDependencies": {
@@ -10,7 +10,7 @@
10
10
  "test": "node --import tsx/esm --test tests/**/*.test.ts"
11
11
  },
12
12
  "dependencies": {
13
- "@daloyjs/core": "^0.5.0",
13
+ "@daloyjs/core": "^0.7.5",
14
14
  "zod": "^4.4.3"
15
15
  },
16
16
  "devDependencies": {
@@ -8,8 +8,8 @@
8
8
  "gen:openapi": "deno run --allow-net --allow-env --allow-read --allow-write scripts/dump-openapi.ts"
9
9
  },
10
10
  "imports": {
11
- "@daloyjs/core": "npm:@daloyjs/core@^0.5.0",
12
- "@daloyjs/core/": "npm:@daloyjs/core@^0.5.0/",
11
+ "@daloyjs/core": "npm:@daloyjs/core@^0.7.5",
12
+ "@daloyjs/core/": "npm:@daloyjs/core@^0.7.5/",
13
13
  "zod": "npm:zod@^4.4.3"
14
14
  },
15
15
  "compilerOptions": {
@@ -18,7 +18,7 @@
18
18
  "audit": "pnpm audit --prod"
19
19
  },
20
20
  "dependencies": {
21
- "@daloyjs/core": "^0.5.0",
21
+ "@daloyjs/core": "^0.7.5",
22
22
  "zod": "^4.4.3"
23
23
  },
24
24
  "devDependencies": {
@@ -10,7 +10,7 @@
10
10
  "test": "node --import tsx/esm --test tests/**/*.test.ts"
11
11
  },
12
12
  "dependencies": {
13
- "@daloyjs/core": "^0.5.0",
13
+ "@daloyjs/core": "^0.7.5",
14
14
  "zod": "^4.4.3"
15
15
  },
16
16
  "devDependencies": {