smart-string-formatter 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 +10 -0
  2. package/package.json +6 -3
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # smart-string-formatter
2
+
3
+ A lightweight utility for dynamic string formatting in JavaScript.
4
+
5
+ ## Installation
6
+
7
+ Install the package via npm:
8
+
9
+ ```bash
10
+ npm install smart-string-formatter
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "smart-string-formatter",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A lightweight, zero-dependency utility to instantly convert strings into CamelCase, PascalCase, Snake_Case, Kebab-Case, and URL-friendly Slugs. Handles special characters, irregular spacing, and accents automatically.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "node test.js",
8
- "start":"node index.js"
8
+ "start": "node index.js"
9
9
  },
10
10
  "keywords": [
11
11
  "string",
@@ -17,5 +17,8 @@
17
17
  "slug"
18
18
  ],
19
19
  "author": "Gayathree",
20
- "license": "MIT"
20
+ "license": "MIT",
21
+ "dependencies": {
22
+ "smart-string-formatter": "^1.0.0"
23
+ }
21
24
  }