@squeditor/squeditor-framework 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -54,9 +54,9 @@ git clone https://github.com/unistudioco/squeditor-framework.git
54
54
  ### 2. Scaffold a New Project
55
55
  Squeditor includes a robust CLI scaffolding tool. It generates a completely clean, minimalist `project-template/` instance next to the core framework, fully pre-configured to utilize the advanced GSAP and UIKit engines without demo bloat.
56
56
 
57
- To scaffold your new project as a sibling to the framework directory, run the following command from your workspace root (outside `squeditor-framework`):
57
+ To scaffold your new project, run the following command from your workspace root (outside `squeditor-framework`):
58
58
  ```bash
59
- npx squeditor-framework your-project-name
59
+ npx @squeditor/squeditor-framework your-project-name
60
60
  ```
61
61
 
62
62
  ### 3. Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squeditor/squeditor-framework",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Squeditor Framework is a high-performance, developer-first framework for building lightning-fast, static websites. It combines the power of PHP-style templating with the modern performance of Tailwind CSS, the interactivity of UIKit 3, and the speed of Vite.",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -31,6 +31,6 @@
31
31
  },
32
32
  "homepage": "https://github.com/unistudioco/squeditor-framework#readme",
33
33
  "bin": {
34
- "squeditor": "./scripts/scaffold.js"
34
+ "@squeditor/squeditor-framework": "./scripts/scaffold.js"
35
35
  }
36
36
  }