@unstoppabledomains/ud-cli 0.1.0 → 0.1.1-rc.2

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.
package/README.md CHANGED
@@ -5,20 +5,14 @@ CLI tool for managing Unstoppable Domains — domain portfolio, DNS records, mar
5
5
  ## Quick Start
6
6
 
7
7
  ```bash
8
- # Install dependencies
9
- npm install
8
+ # Install globally from npm
9
+ npm install -g @unstoppabledomains/ud-cli
10
10
 
11
11
  # Authenticate (opens browser for OAuth)
12
- npx tsx src/index.ts auth login
13
-
14
- # Check auth status
15
- npx tsx src/index.ts auth whoami
16
-
17
- # Search for domains
18
- npx tsx src/index.ts domains search mybusiness
12
+ ud auth login
19
13
 
20
- # List your portfolio
21
- npx tsx src/index.ts domains list
14
+ # You're ready — try it out
15
+ ud domains list
22
16
  ```
23
17
 
24
18
  ## Authentication
@@ -337,6 +331,16 @@ npm run build:binaries # Create standalone executables in bin/
337
331
 
338
332
  Binary targets: macOS (arm64, x64), Linux (x64), Windows (x64).
339
333
 
334
+ ## Building from Source
335
+
336
+ ```bash
337
+ git clone https://github.com/unstoppabledomains/ud-cli.git
338
+ cd ud-cli
339
+ npm install
340
+ npm run build
341
+ npm install -g .
342
+ ```
343
+
340
344
  ## Credential Storage
341
345
 
342
346
  Credentials are stored securely:
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
+ #!/usr/bin/env node
1
2
  export {};
2
3
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { program } from './program.js';
2
3
  program.parse();
3
4
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,OAAO,CAAC,KAAK,EAAE,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEvC,OAAO,CAAC,KAAK,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unstoppabledomains/ud-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1-rc.2",
4
4
  "description": "CLI tool for managing Unstoppable Domains — domain portfolio, DNS records, marketplace listings, and more.",
5
5
  "type": "module",
6
6
  "bin": {