{
  "name": "super-utils-plus",
  "version": "1.1.0",
  "description": "A superior alternative to Lodash with improved performance, TypeScript support, and developer experience",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./array": {
      "types": "./dist/array/index.d.ts",
      "default": "./dist/array/index.js"
    },
    "./object": {
      "types": "./dist/object/index.d.ts",
      "default": "./dist/object/index.js"
    },
    "./string": {
      "types": "./dist/string/index.d.ts",
      "default": "./dist/string/index.js"
    },
    "./function": {
      "types": "./dist/function/index.d.ts",
      "default": "./dist/function/index.js"
    },
    "./utils": {
      "types": "./dist/utils/index.d.ts",
      "default": "./dist/utils/index.js"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "demo": "node demo.js"
  },
  "keywords": [
    "utility",
    "utilities",
    "functional",
    "lodash",
    "lodash-alternative",
    "typescript",
    "javascript",
    "node",
    "array",
    "object",
    "string",
    "function",
    "debounce",
    "throttle",
    "range",
    "clamp",
    "performance"
  ],
  "author": "",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.3",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.45.0",
    "jest": "^29.6.1",
    "prettier": "^3.0.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.1.6"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=14.0.0"
  },
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/dhaxor/super-utils-plus.git"
  },
  "bugs": {
    "url": "https://github.com/dhaxor/super-utils-plus/issues"
  },
  "homepage": "https://github.com/Dhaxor/super-utils-plus/blob/master/README.md"
}
