{
  "name": "isutf8",
  "description": "Check if a Node.js Buffer or Uint8Array is UTF-8",
  "version": "4.0.1",
  "author": {
    "name": "Denis Seleznev",
    "email": "hcodes@yandex.ru",
    "url": "https://github.com/hcodes"
  },
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "homepage": "https://github.com/hcodes/isutf8",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/hcodes/isutf8.git"
  },
  "keywords": [
    "charset",
    "utf-8",
    "is utf",
    "is utf-8",
    "is utf8",
    "utf8",
    "unicode",
    "is unicode",
    "text",
    "check",
    "validate",
    "encoding",
    "Buffer",
    "Uint8Array"
  ],
  "engines": {
    "node": ">= 12"
  },
  "devDependencies": {
    "@rollup/plugin-typescript": "^11.1.6",
    "@types/jest": "^29.5.12",
    "@typescript-eslint/eslint-plugin": "^8.3.0",
    "@typescript-eslint/parser": "^8.3.0",
    "del-cli": "^5.1.0",
    "eslint": "^8.3.0",
    "jest": "^29.7.0",
    "rollup": "^4.21.1",
    "ts-jest": "^29.2.5",
    "tslib": "^2.7.0",
    "typescript": "^5.5.4"
  },
  "scripts": {
    "test": "npm run eslint && npm run unit",
    "eslint": "eslint --ext .ts",
    "clean": "del-cli dist/*",
    "unit": "jest --config ./jest.config.js",
    "build": "npm run clean && rollup --config rollup.config.mjs",
    "typecheck": "tsc --noEmit"
  },
  "typings": "dist/index.d.ts",
  "files": [
    "LICENSE",
    "README.md",
    "dist"
  ]
}
