Skip to content

Commit d56e204

Browse files
docs: update package name in examples\n\n- Update import statements to use @kevinmichaelchen/cel-typescript\n- Update installation command to use scoped package
1 parent eeab950 commit d56e204

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ business rule evaluation.
1717
## Installation
1818

1919
```bash
20-
npm install cel-typescript
20+
npm install @kevinmichaelchen/cel-typescript
2121
```
2222

2323
**Requirements:**
@@ -46,7 +46,7 @@ There are two ways to use CEL expressions in your code:
4646
For simple use cases where you evaluate an expression once:
4747

4848
```typescript
49-
import { evaluate } from "cel-typescript";
49+
import { evaluate } from "@kevinmichaelchen/cel-typescript";
5050

5151
// Basic string and numeric operations
5252
await evaluate(
@@ -72,7 +72,7 @@ For better performance when evaluating the same expression multiple times with
7272
different contexts:
7373

7474
```typescript
75-
import { CelProgram } from "cel-typescript";
75+
import { CelProgram } from "@kevinmichaelchen/cel-typescript";
7676

7777
// Compile the expression once
7878
const program = await CelProgram.compile(

0 commit comments

Comments
 (0)