{
  "name": "@novastar/codec",
  "version": "2.2.3",
  "description": "Core API for communication with devices using NovaStar protocol",
  "author": "Andrei Sarakeev <sarakusha@gmail.com>",
  "main": "dist/index.cjs",
  "types": "dist/index.d.mts",
  "module": "dist/index.mjs",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.mts"
    },
    "./package.json": "./package.json"
  },
  "license": "MIT",
  "keywords": [
    "NovaStar",
    "DOOH",
    "NovaLCT",
    "Nova Mars SDK"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sarakusha/novastar.git",
    "directory": "packages/codec"
  },
  "homepage": "https://sarakusha.github.io/novastar/",
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "pump": "^3.0.0",
    "tiny-typed-emitter": "^2.0.3",
    "typed-struct": "^2.7.3"
  },
  "devDependencies": {
    "@types/debug": "^4.1.7",
    "@types/pump": "^1.1.1"
  },
  "peerDependencies": {
    "debug": "^4.3.3"
  },
  "files": [
    "dist",
    "!**/*.spec.*",
    "!**/*.tsbuildinfo",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/build/"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "gitHead": "f13c5bd88cc8c87c92f904541e5cdcbefa81b773",
  "scripts": {
    "build": "tsdown",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "pnpm exec eslint src --fix",
    "test": "run-s build test:*",
    "test:lint": "pnpm exec eslint src",
    "test:prettier": "prettier \"src/**/*.ts\" --list-different",
    "test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
    "test:unit": "jest src",
    "release": "standard-version",
    "clean": "rimraf ./dist",
    "yalc:push": "yalc push",
    "yalc:update": "pnpm build && yalc publish --push"
  }
}