Skip to content

Commit 9f8db12

Browse files
committed
update README
1 parent 15ddedf commit 9f8db12

File tree

3 files changed

+9
-29
lines changed

3 files changed

+9
-29
lines changed

CHANGELOG.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,29 @@ This is a typescript/javascript package to sign your HTTP requests using aws4 si
55
To get started:
66
```shell
77
# Using bun.js
8-
bun add aws4-request-auth-ts
8+
bun add @sujithjr/aws4-request-auth-ts
99
```
1010
```shell
1111
# Using npm
12-
npm install aws4-request-auth-ts
12+
npm install @sujithjr/aws4-request-auth-ts
1313
```
1414
```shell
1515
# Using pnpm
16-
pnpm add aws4-request-auth-ts
16+
pnpm add @sujithjr/aws4-request-auth-ts
1717
```
1818
```shell
1919
# Using yarn
20-
yarn add aws4-request-auth-ts
20+
yarn add @sujithjr/aws4-request-auth-ts
2121
```
2222

2323
Common JS require,
2424
```js
25-
const awsSign = require('@sujith/aws4-request-auth-ts');
25+
const awsSign = require('@sujithjr/aws4-request-auth-ts');
2626
```
2727

2828
ES module import,
2929
```js
30-
import awsSign from '@sujith/aws4-request-auth-ts';
30+
import awsSign from '@sujithjr/aws4-request-auth-ts';
3131
```
3232

3333
Supports all the HTTP request methods. Example on how to pass required fields to sign the headers,

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@sujith/aws4-request-auth-ts",
3-
"version": "1.0.1",
2+
"name": "@sujithjr/aws4-request-auth-ts",
3+
"version": "1.0.0",
44
"author": "Sujithkumar Sundaran <hi@iamsujith.in> (https://iamsujith.in)",
55
"repository": {
66
"type": "git",
@@ -34,9 +34,7 @@
3434
"url": "https://github.com/SujithJr/aws4-request-auth-ts/issues"
3535
},
3636
"description": "A javascript/typescript package to authenticate requests with aws4 signature.",
37-
"files": [
38-
"dist"
39-
],
37+
"files": ["dist"],
4038
"homepage": "https://github.com/SujithJr/aws4-request-auth-ts",
4139
"keywords": [
4240
"aws",

0 commit comments

Comments
 (0)