@pixpilot/scaffoldfy 0.19.0 → 0.19.1

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/scaffoldfy",
3
3
  "type": "module",
4
- "version": "0.19.0",
4
+ "version": "0.19.1",
5
5
  "author": "PixPilot <m.doaie@hotmail.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -48,10 +48,10 @@
48
48
  "tsdown": "^0.15.8",
49
49
  "typescript": "^5.9.3",
50
50
  "@internal/eslint-config": "0.3.0",
51
- "@internal/tsconfig": "0.1.0",
52
51
  "@internal/prettier-config": "0.0.1",
53
- "@internal/tsdown-config": "0.1.0",
54
- "@internal/vitest-config": "0.1.0"
52
+ "@internal/vitest-config": "0.1.0",
53
+ "@internal/tsconfig": "0.1.0",
54
+ "@internal/tsdown-config": "0.1.0"
55
55
  },
56
56
  "prettier": "@internal/prettier-config",
57
57
  "scripts": {
@@ -3,9 +3,13 @@
3
3
  "title": "Template Tasks Configuration",
4
4
  "description": "Configuration for template task automation and cleanup",
5
5
  "type": "object",
6
- "required": ["name"],
6
+ "required": ["$schema", "name"],
7
7
  "additionalProperties": false,
8
8
  "properties": {
9
+ "$schema": {
10
+ "type": "string",
11
+ "description": "JSON Schema dialect identifier"
12
+ },
9
13
  "name": {
10
14
  "type": "string",
11
15
  "description": "Unique identifier name for this template. Must contain only lowercase letters, digits, and hyphens. Cannot start or end with a hyphen.",