Version 1.0.4

This commit is contained in:
2026-03-12 21:02:16 +01:00
parent 2a5e4b1052
commit a5acb5ed03
4 changed files with 128 additions and 59 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "@hamradio/packet",
"type": "module",
"version": "1.0.3",
"version": "1.0.4",
"description": "Low level packet parsing library (for radio protocols)",
"keywords": [
"HAM radio",
@@ -18,7 +18,7 @@
"license": "MIT",
"author": "Wijnand Modderman-Lenstra",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
@@ -26,7 +26,7 @@
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
@@ -40,12 +40,12 @@
"lint": "eslint .",
"prepare": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"prettier": "3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",