random-profiles 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 +6 -2
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -11,7 +11,7 @@ npm install -g random-profiles
11
11
  Or use directly with npx:
12
12
 
13
13
  ```bash
14
- npx random-profiles --count 5
14
+ npx -y random-profiles --count 5
15
15
  ```
16
16
 
17
17
  ## Setup
@@ -25,7 +25,7 @@ export RANDOM_PROFILES_API_KEY=rp_your_key_here
25
25
  Or pass it inline:
26
26
 
27
27
  ```bash
28
- npx random-profiles --key rp_your_key --count 5
28
+ npx -y random-profiles --key rp_your_key --count 5
29
29
  ```
30
30
 
31
31
  ## Usage
@@ -59,6 +59,10 @@ random-profiles --uuid a1b2c3d4-e5f6-7890-abcd-ef1234567890
59
59
  random-profiles --usage
60
60
  ```
61
61
 
62
+ ## Field Groups
63
+
64
+ name, email, phone, identity, bio, social, physical, job, address, financial, network, documents, vehicle, contact, digital, interests, education, photo
65
+
62
66
  ## Output Formats
63
67
 
64
68
  | Format | Description |
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "random-profiles",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Generate fake user profiles from the command line",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "random-profiles": "dist/index.js"
8
8
  },
9
- "files": ["dist"],
9
+ "files": [
10
+ "dist"
11
+ ],
10
12
  "scripts": {
11
13
  "build": "bun build src/index.ts --outfile dist/index.js --target node",
12
14
  "prepublishOnly": "bun run build"