{
  "name": "u8-utils",
  "version": "0.4.2",
  "description": "Uint8Array + UTF8 string utility library for NodeJS and the Web",
  "license": "BSD-2-Clause",
  "author": "Shane Holloway <shane.holloway@ieee.org>",
  "homepage": "https://github.com/shanewholloway/js-u8-utils#readme",
  "bugs": {
    "url": "https://github.com/shanewholloway/js-u8-utils/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/shanewholloway/js-u8-utils.git"
  },
  "files": [
    "cjs/",
    "code/",
    "esm/",
    "umd/"
  ],
  "type": "module",
  "main": "./esm/index.js",
  "module": "./esm/index.js",
  "exports": {
    "./": "./esm/",
    ".": "./esm/index.js"
  },
  "imports": {
    "#test/bdd": {
      "node": "./platform/node-bdd.js",
      "web": "./platform/web-bdd-mocha.js"
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@jsy-lang/nodejs": "^0.2.3",
    "@rollup/plugin-terser": "^0.4.4",
    "rollup": "^4.30.1",
    "rollup-plugin-jsy": "^1.9.2"
  },
  "optionalDependencies": {
    "vite": "^6.0.11"
  },
  "scripts": {
    "clean": "rm -rf ./esm/*",
    "build": "rollup --config",
    "watch": "rollup --config --watch",
    "serve": "vite",
    "pretest": "npm -s run build",
    "test": "node --test esm/test/unittest.js",
    "test:watch": "node --watch --test esm/test/unittest.js"
  }
}
