@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.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @bbearai/core
|
|
2
2
|
|
|
3
3
|
Core client and utilities for BugBear QA platform.
|
|
4
4
|
|
|
5
|
-
> **Note:** Most users should install `@
|
|
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 @
|
|
10
|
+
npm install @bbearai/core
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
15
15
|
```typescript
|
|
16
|
-
import { createBugBear } from '@
|
|
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 '@
|
|
99
|
+
import { BugBearClient, createBugBear, BugBearConfig } from '@bbearai/core';
|
|
100
100
|
|
|
101
101
|
// Create your framework-specific wrapper around the client
|
|
102
102
|
```
|