Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Canonical Dependabot config for the wyre-technology *-mcp / node-* fleet.
# Canonical Dependabot config for the WYRE-AI *-mcp / node-* fleet.
#
# Goal: keep PR volume manageable for a small team. Updates are GROUPED so a
# repo gets a handful of PRs per week instead of one-per-package, and the
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
node-version: 22
# CRITICAL: registry-url tells npm publish to push to GitHub Packages
registry-url: 'https://npm.pkg.github.com'
scope: '@wyre-technology'
scope: '@wyre-ai'
cache: npm
- run: npm ci && npm run build
- run: npx semantic-release
Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@wyre-technology:registry=https://npm.pkg.github.com
@wyre-ai:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @wyre-technology/node-rootly
# @wyre-ai/node-rootly

Node.js client library for the [Rootly](https://rootly.com) incident management API.

Expand All @@ -7,20 +7,20 @@ Zero production dependencies. Uses native `fetch` (Node 18+).
## Installation

```bash
npm install @wyre-technology/node-rootly
npm install @wyre-ai/node-rootly
```

For GitHub Packages authentication, add to your `.npmrc`:

```
@wyre-technology:registry=https://npm.pkg.github.com
@wyre-ai:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN
```

## Usage

```typescript
import { RootlyClient } from '@wyre-technology/node-rootly';
import { RootlyClient } from '@wyre-ai/node-rootly';

const client = new RootlyClient({ apiToken: process.env.ROOTLY_API_TOKEN });

Expand Down Expand Up @@ -84,7 +84,7 @@ const client = new RootlyClient({ apiToken?: string });
## Development

```bash
git clone https://github.com/wyre-technology/node-rootly.git
git clone https://github.com/WYRE-AI/node-rootly.git
cd node-rootly
npm install
npm run build
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@wyre-technology/node-rootly",
"name": "@wyre-ai/node-rootly",
"version": "1.0.2",
"description": "Node.js client library for the Rootly incident management API",
"type": "module",
Expand Down Expand Up @@ -36,13 +36,13 @@
"on-call",
"api-client",
"msp",
"wyre-technology"
"wyre-ai"
],
"author": "WYRE Technology",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wyre-technology/node-rootly.git"
"url": "https://github.com/WYRE-AI/node-rootly.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
Expand Down