gg-deploy 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 +3 -2
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -25,7 +25,7 @@ npx gg-deploy status example.com user/repo # Health check
25
25
  ## Requirements
26
26
 
27
27
  - **Node.js 18+** — Check with `node --version`
28
- - **GoDaddy account** with API access enabled
28
+ - **GoDaddy account** with **10+ domains** (API access requirement)
29
29
  - **GitHub account** with a Personal Access Token
30
30
  - **Domain on GoDaddy** you want to point to GitHub Pages
31
31
  - **GitHub repo** with your site content (index.html or built site)
@@ -166,6 +166,7 @@ Then tell Claude: "Deploy example.com using user/repo"
166
166
  | `403 Forbidden` | API key is for OTE (test). Create a **Production** key |
167
167
  | `404 Not Found` | Domain not in your GoDaddy account |
168
168
  | `422 Invalid` | Domain locked or has pending transfers |
169
+ | `403 Access denied` | Account needs **10+ domains** for API. Use Cloudflare (coming soon) |
169
170
  | Red status dot | Hover for error. Usually auth issue |
170
171
 
171
172
  ### GitHub API Issues
@@ -237,7 +238,7 @@ Total time: ~60 seconds. DNS propagation: 10-60 minutes.
237
238
 
238
239
  ## Limitations
239
240
 
240
- - GoDaddy only (no Cloudflare/Namecheap yet)
241
+ - GoDaddy only (10+ domains required for API; Cloudflare/Namecheap coming)
241
242
  - Public repos or GitHub Pro required for Pages
242
243
  - Only www subdomain supported
243
244
  - One domain per deployment
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "gg-deploy",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Free hosting deserves free tooling. Domain → GitHub Pages in 60 seconds.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "gg-deploy": "./dist/cli.js"
8
+ "gg-deploy": "dist/cli.js"
9
9
  },
10
10
  "scripts": {
11
11
  "build": "tsc",
@@ -31,10 +31,14 @@
31
31
  ],
32
32
  "author": "Abe Diaz",
33
33
  "license": "AGPL-3.0-only",
34
+ "homepage": "https://abe238.github.io/gg-deploy/",
34
35
  "repository": {
35
36
  "type": "git",
36
37
  "url": "git+https://github.com/abe238/gg-deploy.git"
37
38
  },
39
+ "bugs": {
40
+ "url": "https://github.com/abe238/gg-deploy/issues"
41
+ },
38
42
  "engines": {
39
43
  "node": ">=18.0.0"
40
44
  },