{
  "name": "@mainsail/utils",
  "version": "0.0.1-alpha.20",
  "description": "Performance oriented implementations of commonly used functions in TypeScript.",
  "license": "GPL-3.0-only",
  "contributors": [],
  "type": "module",
  "main": "distribution/index.js",
  "browser": {
    "fs": false,
    "path": false,
    "os": false
  },
  "types": "distribution/index.d.ts",
  "files": [
    "/distribution"
  ],
  "dependencies": {
    "@hapi/bourne": "^3.0.0",
    "deepmerge": "^4.3.1",
    "fast-copy": "^3.0.1",
    "fast-deep-equal": "^3.1.3",
    "fast-sort": "^3.4.0",
    "type-fest": "4.12.0"
  },
  "devDependencies": {
    "@hapi/boom": "10.0.1",
    "@hapi/hapi": "21.3.6",
    "@types/deepmerge": "^2.2.0",
    "big-number": "2.0.0",
    "bignumber.js": "^9.1.2",
    "hyperid": "3.2.0",
    "jsbi": "4.3.0",
    "lodash": "4.17.21",
    "micro-bmark": "0.3.1",
    "pluralize": "8.0.0",
    "random-object": "1.3.4",
    "uvu": "^0.5.6"
  },
  "engines": {
    "node": ">=20.x"
  },
  "scripts": {
    "bench": "pnpm run build && node benchmark/index.js",
    "build": "pnpm run clean && tsc",
    "build:watch": "pnpm run clean && tsc -w",
    "clean": "del distribution",
    "release": "pnpm publish --access public",
    "test": "pnpm run uvu source .test.ts",
    "test:coverage": "c8 pnpm run test",
    "test:coverage:html": "c8 -r html --all pnpm run test",
    "test:file": "pnpm run uvu source",
    "uvu": "tsx --tsconfig ../../tsconfig.test.json ./node_modules/uvu/bin.js"
  }
}