@tamtamchik/app-store-receipt-parser 1.0.0-pre.2 → 1.0.0

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 +10 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,19 +17,19 @@ A lightweight TypeScript library for extracting transaction IDs from Apple's ASN
17
17
  Using npm:
18
18
 
19
19
  ```shell
20
- npm install @tamtamchik/apple-receipt-parser
20
+ npm install @tamtamchik/app-store-receipt-parser
21
21
  ```
22
22
 
23
23
  Using yarn:
24
24
 
25
25
  ```shell
26
- yarn add @tamtamchik/apple-receipt-parser
26
+ yarn add @tamtamchik/app-store-receipt-parser
27
27
  ```
28
28
 
29
29
  ## Usage
30
30
 
31
31
  ```typescript
32
- import { ReceiptParser } from '@tamtamchik/apple-receipt-parser';
32
+ import { ReceiptParser } from '@tamtamchik/app-store-receipt-parser';
33
33
 
34
34
  // Unified Receipt string
35
35
  const receiptString = "MII...";
@@ -61,12 +61,12 @@ Pull requests are always welcome. If you have bigger changes in mind, please ope
61
61
  Apple Receipt Parser is [MIT licensed](./LICENSE).
62
62
 
63
63
  [ico-coffee]: https://img.shields.io/badge/Buy%20Me%20A-Coffee-%236F4E37.svg?style=flat-square
64
- [ico-version]: https://img.shields.io/npm/v/@tamtamchik/apple-receipt-parser.svg?style=flat-square
65
- [ico-license]: https://img.shields.io/npm/l/@tamtamchik/apple-receipt-parser.svg?style=flat-square
66
- [ico-downloads]: https://img.shields.io/npm/dt/@tamtamchik/apple-receipt-parser.svg?style=flat-square
67
- [ico-circleci]: https://img.shields.io/circleci/build/github/tamtamchik/apple-receipt-parser.svg?style=flat-square
64
+ [ico-version]: https://img.shields.io/npm/v/@tamtamchik/app-store-receipt-parser.svg?style=flat-square
65
+ [ico-license]: https://img.shields.io/npm/l/@tamtamchik/app-store-receipt-parser.svg?style=flat-square
66
+ [ico-downloads]: https://img.shields.io/npm/dt/@tamtamchik/app-store-receipt-parser.svg?style=flat-square
67
+ [ico-circleci]: https://img.shields.io/circleci/build/github/tamtamchik/app-store-receipt-parser.svg?style=flat-square
68
68
 
69
69
  [link-coffee]: https://www.buymeacoffee.com/tamtamchik
70
- [link-npm]: https://www.npmjs.com/package/@tamtamchik/apple-receipt-parser
71
- [link-downloads]: https://www.npmjs.com/package/@tamtamchik/apple-receipt-parser
72
- [link-circleci]: https://app.circleci.com/pipelines/github/tamtamchik/apple-receipt-parser?branch=main
70
+ [link-npm]: https://www.npmjs.com/package/@tamtamchik/app-store-receipt-parser
71
+ [link-downloads]: https://www.npmjs.com/package/@tamtamchik/app-store-receipt-parser
72
+ [link-circleci]: https://app.circleci.com/pipelines/github/tamtamchik/app-store-receipt-parser?branch=main
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamtamchik/app-store-receipt-parser",
3
- "version": "1.0.0-pre.2",
3
+ "version": "1.0.0",
4
4
  "description": "A lightweight TypeScript library for extracting transaction IDs from Apple's ASN.1 encoded receipts.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",