diff --git a/dist/package.json b/dist/package.json index 233ec98..e1e954a 100644 --- a/dist/package.json +++ b/dist/package.json @@ -1,14 +1,14 @@ { "name": "crc", - "version": "4.1.1", - "description": "Module for calculating Cyclic Redundancy Check (CRC) for Node.js and the Browser.", + "version": "4.2.0", + "description": "Module for calculating Cyclic Redundancy Check (CRC) for Node.js and the browser.", "author": { "name": "Alex Gorbatchev", "url": "https://github.com/alexgorbatchev" }, - "homepage": "https://github.com/alexgorbatchev/node-crc", - "bugs": "https://github.com/alexgorbatchev/node-crc/issues", - "repository": "alexgorbatchev/node-crc", + "homepage": "https://github.com/alexgorbatchev/crc", + "bugs": "https://github.com/alexgorbatchev/crc/issues", + "repository": "alexgorbatchev/crc", "license": "MIT", "keywords": [ "crc", @@ -22,6 +22,7 @@ "crc32", "crc81wire", "crc8", + "crc8dvbs2", "crcjam" ], "type": "module", @@ -134,6 +135,16 @@ "import": "./mjs/calculators/crc8.js", "require": "./cjs-default-unwrap/calculators/crc8.js" }, + "./crc8dvbs2": { + "types": "./mjs/crc8dvbs2.d.ts", + "import": "./mjs/crc8dvbs2.js", + "require": "./cjs-default-unwrap/crc8dvbs2.js" + }, + "./calculators/crc8dvbs2": { + "types": "./mjs/calculators/crc8dvbs2.d.ts", + "import": "./mjs/calculators/crc8dvbs2.js", + "require": "./cjs-default-unwrap/calculators/crc8dvbs2.js" + }, "./crcjam": { "types": "./mjs/crcjam.d.ts", "import": "./mjs/crcjam.js", diff --git a/package-lock.json b/package-lock.json index b03741f..1e3c7ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32,7 +32,8 @@ }, "peerDependencies": { "buffer": ">=6.0.3" - } + }, + "version": "4.2.0" }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", @@ -5959,5 +5960,6 @@ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true } - } + }, + "version": "4.2.0" }