create-z3 0.0.18 → 0.0.19

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": "create-z3",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "type": "module",
5
5
  "description": "CLI for scaffolding Z3 Stack applications (TanStack/Next.js + Convex + Better Auth)",
6
6
  "bin": {
@@ -0,0 +1,26 @@
1
+ # Dependencies
2
+ node_modules
3
+ .pnp
4
+ .pnp.*
5
+
6
+ # Build outputs
7
+ .next
8
+ out
9
+ dist
10
+ build
11
+
12
+ # Generated files
13
+ convex/_generated
14
+
15
+ # Package manager
16
+ pnpm-lock.yaml
17
+ package-lock.json
18
+ yarn.lock
19
+
20
+ # Environment
21
+ .env*
22
+ !.env.example
23
+
24
+ # Misc
25
+ .DS_Store
26
+ *.pem
@@ -0,0 +1,7 @@
1
+ {
2
+ "semi": false,
3
+ "singleQuote": true,
4
+ "trailingComma": "es5",
5
+ "tabWidth": 2,
6
+ "printWidth": 100
7
+ }
@@ -6,7 +6,9 @@
6
6
  "dev": "next dev --port=3001",
7
7
  "build": "next build",
8
8
  "start": "next start",
9
- "lint": "eslint",
9
+ "lint": "eslint .",
10
+ "format": "prettier --write .",
11
+ "typecheck": "tsc --noEmit",
10
12
  "secret:create": "openssl rand -base64 32 | tr -d '\\n' | tee /dev/stderr | pbcopy && echo '\\n✓ Secret copied to clipboard'"
11
13
  },
12
14
  "dependencies": {
@@ -46,6 +48,7 @@
46
48
  "eslint-plugin-import-x": "^4.16.1",
47
49
  "eslint-plugin-perfectionist": "^5.3.1",
48
50
  "eslint-plugin-react-hooks": "^7.0.1",
51
+ "prettier": "^3.4.2",
49
52
  "tailwindcss": "^4",
50
53
  "typescript": "^5",
51
54
  "typescript-eslint": "^8.53.0"