@morphllm/morphsdk 0.2.6 → 0.2.7

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 +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,12 +2,12 @@
2
2
 
3
3
  Production-ready tools for AI coding agents: Fast Apply (10,500 tokens/s)
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/@morph-llm/morphsdk.svg)](https://www.npmjs.com/package/@morph-llm/morphsdk)
5
+ [![npm version](https://img.shields.io/npm/v/@morphllm/morphsdk.svg)](https://www.npmjs.com/package/@morphllm/morphsdk)
6
6
 
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- npm install @morph-llm/morphsdk
10
+ npm install @morphllm/morphsdk
11
11
  ```
12
12
 
13
13
  Get your API key: [morphllm.com/dashboard/api-keys](https://morphllm.com/dashboard/api-keys)
@@ -19,7 +19,7 @@ export MORPH_API_KEY="sk-your-key-here"
19
19
  ## Quick Start
20
20
 
21
21
  ```typescript
22
- import { MorphClient } from '@morph-llm/morphsdk';
22
+ import { MorphClient } from '@morphllm/morphsdk';
23
23
 
24
24
  const morph = new MorphClient({
25
25
  apiKey: process.env.MORPH_API_KEY
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morphllm/morphsdk",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "TypeScript SDK and CLI for Morph Fast Apply integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",