Update package name to @lukehagar/arbiter in package.json and README.md for consistency and clarity.

This commit is contained in:
Luke Hagar
2025-08-13 15:36:57 -05:00
parent 19a9102ebe
commit f1dd5485eb
2 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ Arbiter is a powerful API proxy and documentation generator that automatically c
### Installation ### Installation
```bash ```bash
npm install -g arbiter npm install -g @lukehagar/arbiter
``` ```
### Basic Usage ### Basic Usage
@@ -164,8 +164,8 @@ Arbiter can also be used as middleware in your own application:
```typescript ```typescript
import express from 'express'; import express from 'express';
import { harRecorder } from 'arbiter/middleware'; import { harRecorder } from '@lukehagar/arbiter/middleware';
import { openApiStore } from 'arbiter/store'; import { openApiStore } from '@lukehagar/arbiter/store';
const app = express(); const app = express();

View File

@@ -1,5 +1,5 @@
{ {
"name": "arbiter", "name": "@lukehagar/arbiter",
"version": "1.0.0", "version": "1.0.0",
"description": "API proxy with OpenAPI generation and HAR export capabilities", "description": "API proxy with OpenAPI generation and HAR export capabilities",
"main": "dist/cli.js", "main": "dist/cli.js",