create-akan-workspace 0.0.146 → 0.0.148

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 +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # 🚀 Create Akan Workspace
2
2
 
3
- The quickest way to bootstrap a new AkanJS workspace with a single command. This package provides a streamlined entry point that automatically installs the AkanJS CLI and creates your workspace in one step.
3
+ The quickest way to bootstrap a new Akan.js workspace with a single command. This package provides a streamlined entry point that automatically installs the Akan.js CLI and creates your workspace in one step.
4
4
 
5
5
  ## ⚡ Get Started
6
6
 
7
- The fastest way to create a new AkanJS workspace:
7
+ The fastest way to create a new Akan.js workspace:
8
8
 
9
9
  ```bash
10
10
  npx create-akan-workspace
@@ -41,7 +41,7 @@ npx create-akan-workspace "my-company" --app "web-app" --dir "./projects"
41
41
 
42
42
  After running `create-akan-workspace`, you'll have:
43
43
 
44
- 1. **✅ AkanJS CLI installed globally** - Access to all `akan` commands
44
+ 1. **✅ Akan.js CLI installed globally** - Access to all `akan` commands
45
45
  2. **🏗️ Workspace created** - Organized project structure
46
46
  3. **📱 Initial application** - Ready-to-run starter app
47
47
  4. **🔧 Development environment** - Configured tooling and dependencies
@@ -62,7 +62,7 @@ Navigate to http://localhost:4200 to see your app running!
62
62
 
63
63
  ## 🔗 What's Next?
64
64
 
65
- After creating your workspace, explore the full power of AkanJS CLI:
65
+ After creating your workspace, explore the full power of Akan.js CLI:
66
66
 
67
67
  ```bash
68
68
  # AI-powered module creation
@@ -81,12 +81,12 @@ akan deploy-akan
81
81
  ## 📚 Learn More
82
82
 
83
83
  - [`@akanjs/cli`](../cli) - Full CLI documentation and features
84
- - [AkanJS Documentation](https://docs.akanjs.com) - Complete development guide
84
+ - [Akan.js Documentation](https://docs.akanjs.com) - Complete development guide
85
85
  - [Examples](https://github.com/akan-team/examples) - Sample projects and tutorials
86
86
 
87
87
  ## 🤝 Contributing
88
88
 
89
- This package is part of the AkanJS ecosystem. Contributions are welcome!
89
+ This package is part of the Akan.js ecosystem. Contributions are welcome!
90
90
 
91
91
  1. Fork the repository
92
92
  2. Create your feature branch
@@ -96,11 +96,11 @@ This package is part of the AkanJS ecosystem. Contributions are welcome!
96
96
 
97
97
  ## 📄 License
98
98
 
99
- This project is part of the AkanJS ecosystem. See the main repository for license information.
99
+ This project is part of the Akan.js ecosystem. See the main repository for license information.
100
100
 
101
101
  ---
102
102
 
103
103
  <p align="center">
104
- <strong>Built with ❤️ by the AkanJS team</strong><br>
104
+ <strong>Built with ❤️ by the Akan.js team</strong><br>
105
105
  <em></em>
106
106
  </p>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sourceType": "module",
3
3
  "name": "create-akan-workspace",
4
- "version": "0.0.146",
4
+ "version": "0.0.148",
5
5
  "bin": {
6
6
  "create-akan-workspace": "cjs/index.js"
7
7
  },