saas-init 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saas-init",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "CLI scaffolding tool that generates production-ready SaaS projects with Next.js, auth, payments, database, and email — configured and ready to ship.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,18 +11,35 @@
11
11
  "dist",
12
12
  "templates"
13
13
  ],
14
+ "scripts": {
15
+ "build": "tsup",
16
+ "dev": "tsup --watch",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
19
+ "lint": "eslint src tests",
20
+ "format": "prettier --write .",
21
+ "format:check": "prettier --check .",
22
+ "typecheck": "tsc --noEmit"
23
+ },
14
24
  "dependencies": {
15
- "@clack/prompts": "^0.9.1",
16
- "commander": "^12.1.0",
25
+ "@clack/prompts": "^1.1.0",
26
+ "commander": "^14.0.3",
17
27
  "fs-extra": "^11.2.0",
18
- "zod": "^3.23.8"
28
+ "zod": "^4.3.6"
19
29
  },
20
30
  "devDependencies": {
31
+ "@semantic-release/changelog": "^6.0.3",
32
+ "@semantic-release/commit-analyzer": "^13.0.1",
33
+ "@semantic-release/git": "^10.0.1",
34
+ "@semantic-release/github": "^12.0.6",
35
+ "@semantic-release/npm": "^13.1.5",
36
+ "@semantic-release/release-notes-generator": "^14.1.0",
21
37
  "@types/fs-extra": "^11.0.4",
22
- "@types/node": "^22.0.0",
38
+ "@types/node": "^25.5.0",
23
39
  "@typescript-eslint/parser": "^8.57.1",
24
- "eslint": "^9.0.0",
40
+ "eslint": "^10.0.3",
25
41
  "prettier": "^3.3.3",
42
+ "semantic-release": "^25.0.3",
26
43
  "tsup": "^8.3.0",
27
44
  "typescript": "^5.6.3",
28
45
  "vitest": "^2.1.8"
@@ -55,14 +72,5 @@
55
72
  "engines": {
56
73
  "node": ">=18"
57
74
  },
58
- "scripts": {
59
- "build": "tsup",
60
- "dev": "tsup --watch",
61
- "test": "vitest run",
62
- "test:watch": "vitest",
63
- "lint": "eslint src tests",
64
- "format": "prettier --write .",
65
- "format:check": "prettier --check .",
66
- "typecheck": "tsc --noEmit"
67
- }
68
- }
75
+ "packageManager": "pnpm@9.0.0"
76
+ }
@@ -10,7 +10,7 @@
10
10
  "test": "echo \"No tests configured\" && exit 0"
11
11
  },
12
12
  "dependencies": {
13
- "next": "^15.0.0",
13
+ "next": "^16.2.0",
14
14
  "react": "^19.0.0",
15
15
  "react-dom": "^19.0.0"
16
16
  },