argorant 0.3.0 → 0.5.0

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 (3) hide show
  1. package/README.md +126 -10
  2. package/bin/argorant.js +1016 -53
  3. package/package.json +10 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "argorant",
3
- "version": "0.3.0",
4
- "description": "Search, count, reveal, export, and verify B2B contacts from the Argorant database \u2014 from your terminal, scripts, or coding agent.",
3
+ "version": "0.5.0",
4
+ "description": "Search, count, reveal, export, and verify B2B contacts from the Argorant database from your terminal, scripts, or coding agent.",
5
5
  "bin": {
6
6
  "argorant": "bin/argorant.js"
7
7
  },
@@ -26,7 +26,13 @@
26
26
  "homepage": "https://argorant.com/docs/cli",
27
27
  "repository": {
28
28
  "type": "git",
29
+ "url": "git+https://github.com/argorant/argorant-cli.git"
30
+ },
31
+ "license": "MIT",
32
+ "bugs": {
29
33
  "url": "https://argorant.com/docs/cli"
30
34
  },
31
- "license": "MIT"
32
- }
35
+ "scripts": {
36
+ "prepublishOnly": "node scripts/prepublish-guard.js"
37
+ }
38
+ }