packlyze 1.0.2 → 1.0.4

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 +4 -25
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -82,12 +82,12 @@ Packlyze can be used in two main ways: as a CLI tool and as a Node.js/TypeScript
82
82
  console.log(result.bundleStats.modules);
83
83
  ```
84
84
 
85
- ## 📁 Project Structure
85
+ ## 📁 File Structure
86
86
 
87
- Typical structure for a Packlyze-based project:
87
+ Typical structure for a Packlyze:
88
88
 
89
89
  ```
90
- Packlyze-plus/
90
+ Packlyze/
91
91
  ├── src/
92
92
  │ ├── types.ts # TypeScript interfaces
93
93
  │ ├── index.ts # Main entry point
@@ -199,21 +199,6 @@ Consider:
199
199
  - Removing unused dependencies
200
200
  - Using lighter alternatives
201
201
 
202
- ## 📦 Publishing to NPM
203
-
204
- To publish your own version of Packlyze:
205
- 1. Update the version in `package.json`.
206
- 2. Run `npm run build` to compile TypeScript.
207
- 3. Run tests with `npm run test`.
208
- 4. Login to NPM: `npm login`.
209
- 5. Publish: `npm publish`.
210
-
211
- ---
212
-
213
- ## 📄 License
214
-
215
- MIT
216
-
217
202
  ## 🤝 Contributing
218
203
 
219
204
  We welcome contributions! Please follow the steps below:
@@ -230,13 +215,7 @@ Contributions welcome! Please:
230
215
 
231
216
  For issues and questions:
232
217
  - GitHub Issues: [https://github.com/iamabhshk/Packlyze/issues](https://github.com/iamabhshk/Packlyze/issues)
233
- - Email: [your-email]
234
- - Twitter: [@yourhandle]
235
-
236
- For issues and questions:
237
- - GitHub Issues: [link]
238
- - Email: [your-email]
239
- - Twitter: [@yourhandle]
218
+ - Email: [abhisheksrinivasan5@gmail.com]
240
219
 
241
220
  ## 🙏 Acknowledgments
242
221
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "packlyze",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Advanced bundle analyzer with insights, recommendations, and historical tracking",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",