Skip to content

Commit 890fb43

Browse files
fix: rename npm package to @adriandmitroca/relay
relayd was rejected by npm as too similar to existing packages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5525853 commit 890fb43

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ Optional Telegram integration with forum topics — each task gets its own threa
7676

7777
```sh
7878
# Try without installing
79-
bunx relayd
79+
bunx @adriandmitroca/relay
8080

8181
# Install globally
82-
bun install -g relayd
82+
bun install -g @adriandmitroca/relay
8383
# or
84-
npm install -g relayd
84+
npm install -g @adriandmitroca/relay
8585
```
8686

8787
Your browser opens to `localhost:7842/setup`. Connect your integrations, point Relay at a project, and you're live.

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "relayd",
2+
"name": "@adriandmitroca/relay",
33
"version": "0.0.1",
44
"description": "Autonomous SWE agent — triage and fix issues from Sentry, Asana, Linear, and Jira with Claude",
55
"module": "src/cli.ts",
@@ -40,5 +40,8 @@
4040
},
4141
"dependencies": {
4242
"hono": "^4.12.5"
43+
},
44+
"publishConfig": {
45+
"access": "public"
4346
}
4447
}

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { unlinkSync } from "node:fs";
77
import pkg from "../package.json" with { type: "json" };
88

99
const VERSION = pkg.version;
10-
const NPM_PACKAGE = pkg.name; // "relayd"
10+
const NPM_PACKAGE = pkg.name; // "@adriandmitroca/relay"
1111
const BOLD = "\x1b[1m";
1212
const RESET = "\x1b[0m";
1313
const GREEN = "\x1b[32m";

0 commit comments

Comments
 (0)