Skip to content

Commit 39ad82a

Browse files
committed
refactor: Change package name to keymint-nodejs
Updates the package name from 'keymint-nodejs-sdk' to 'keymint-nodejs' for brevity and better discoverability. Changes include: - Updated 'name' field in package.json. - Updated installation and import examples in README.md.
1 parent cb46653 commit 39ad82a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ A TypeScript SDK for interacting with the KeyMint API, simplifying license key m
1616
## Installation
1717

1818
```bash
19-
npm install keymint-nodejs-sdk
19+
npm install keymint-nodejs
2020
# or
21-
yarn add keymint-nodejs-sdk
21+
yarn add keymint-nodejs
2222
```
2323

2424
## Usage
2525

2626
First, initialize the SDK with your access token:
2727

2828
```typescript
29-
import { KeyMintSDK } from "keymint-nodejs-sdk";
29+
import { KeyMintSDK } from "keymint-nodejs";
3030

3131
async function main() {
3232
const accessToken = process.env.KEYMINT_ACCESS_TOKEN;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "keymint-nodejs-sdk",
2+
"name": "keymint-nodejs",
33
"version": "0.1.0",
44
"description": "SDK for interacting with the KeyMint API",
55
"main": "dist/index.js",

0 commit comments

Comments
 (0)