@exanderal/stackcraft 0.8.1 → 0.8.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schema.json +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exanderal/stackcraft",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Opinionated full-stack project scaffolding CLI",
5
5
  "type": "module",
6
6
  "bin": {
package/schema.json CHANGED
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "name": {
14
14
  "type": "string",
15
- "description": "Project name (used as the root directory name)"
15
+ "description": "Project name (used as the monorepo package name)"
16
16
  },
17
17
  "backend": {
18
18
  "type": "string",
@@ -55,6 +55,11 @@
55
55
  "enum": ["eslint", "biome"],
56
56
  "default": "eslint",
57
57
  "description": "Linter and formatter"
58
+ },
59
+ "here": {
60
+ "type": "boolean",
61
+ "default": false,
62
+ "description": "Scaffold into the current directory instead of creating a new subdirectory"
58
63
  }
59
64
  }
60
65
  }