diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 258673c..8555bf5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4959f1a..1d6188b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/.npmrc b/.npmrc index 7bd939c..a2b5821 100644 --- a/.npmrc +++ b/.npmrc @@ -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} diff --git a/README.md b/README.md index 0fac7bc..31b9d1a 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 }); @@ -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 diff --git a/package-lock.json b/package-lock.json index 5661932..d537ae2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@wyre-technology/node-rootly", + "name": "@wyre-ai/node-rootly", "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@wyre-technology/node-rootly", + "name": "@wyre-ai/node-rootly", "version": "1.0.2", "license": "Apache-2.0", "devDependencies": { diff --git a/package.json b/package.json index fc9fb70..9f8a5b0 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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"