@bbearai/core 0.1.0 → 0.1.2

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 +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,19 +1,19 @@
1
- # @bugbearai/core
1
+ # @bbearai/core
2
2
 
3
3
  Core client and utilities for BugBear QA platform.
4
4
 
5
- > **Note:** Most users should install `@bugbearai/react` instead, which includes this package automatically.
5
+ > **Note:** Most users should install `@bbearai/react` instead, which includes this package automatically.
6
6
 
7
7
  ## Installation
8
8
 
9
9
  ```bash
10
- npm install @bugbearai/core
10
+ npm install @bbearai/core
11
11
  ```
12
12
 
13
13
  ## Usage
14
14
 
15
15
  ```typescript
16
- import { createBugBear } from '@bugbearai/core';
16
+ import { createBugBear } from '@bbearai/core';
17
17
 
18
18
  const bugbear = createBugBear({
19
19
  projectId: 'your-project-id',
@@ -96,7 +96,7 @@ interface TestAssignment {
96
96
  If you're building a BugBear integration for a different framework (Vue, Svelte, etc.), use this package as the foundation:
97
97
 
98
98
  ```typescript
99
- import { BugBearClient, createBugBear, BugBearConfig } from '@bugbearai/core';
99
+ import { BugBearClient, createBugBear, BugBearConfig } from '@bbearai/core';
100
100
 
101
101
  // Create your framework-specific wrapper around the client
102
102
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbearai/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Core utilities and types for BugBear QA platform",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",