create-peachy 0.0.1 → 0.0.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/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import { dirname, resolve } from "node:path";
4
4
  import h from "handlebars";
5
5
 
6
6
  //#region package.json
7
- var version = "0.0.1";
7
+ var version = "0.0.2";
8
8
 
9
9
  //#endregion
10
10
  //#region src/index.ts
@@ -32,7 +32,9 @@ for (const file of files) {
32
32
  await writeFile(outputPath, h.compile(fileContent)({
33
33
  name,
34
34
  safeName,
35
- peachyVersion
35
+ peachyVersion,
36
+ reactVersion: "^19.2.0",
37
+ reactTypesVersion: "^19.2.7"
36
38
  }));
37
39
  }
38
40
  s.stop("Copied files");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-peachy",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "description": "Bootstrap a peachy application",
6
6
  "bin": "./dist/index.mjs",
@@ -16,11 +16,12 @@
16
16
  ],
17
17
  "devDependencies": {
18
18
  "@types/node": "^25.0.9",
19
+ "rolldown": "1.0.0-beta.58",
19
20
  "tsdown": "0.20.0-beta.3",
20
21
  "tsx": "^4.21.0",
21
22
  "typescript": "^5.9.3"
22
23
  },
23
24
  "scripts": {
24
- "build": "tsdown src/index.ts"
25
+ "build": "tsdown"
25
26
  }
26
27
  }
@@ -9,7 +9,11 @@
9
9
  "keywords": [],
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "@peachy/core": "{{peachyVersion}}",
13
- "@peachy/react": "{{peachyVersion}}"
12
+ "@peachy/core": "~{{peachyVersion}}",
13
+ "@peachy/react": "~{{peachyVersion}}",
14
+ "react": "{{reactVersion}}"
15
+ },
16
+ "devDependencies": {
17
+ "@types/react": "{{reactTypesVersion}}"
14
18
  }
15
19
  }