{
  "name": "lodash-updated",
  "version": "1.0.1",
  "description": "A modern, comprehensive utility library with complete Lodash parity plus advanced features",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "type": "module",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
    "build:cjs": "tsc --project tsconfig.json",
    "build:esm": "tsc --project tsconfig.esm.json",
    "build:types": "tsc --project tsconfig.types.json",
    "clean": "rm -rf dist",
    "test": "node --test test/*.test.js",
    "test:coverage": "c8 npm test",
    "test:smoke": "node smoke-test.js",
    "test:all": "npm run build && npm run test:smoke && npm test",
    "lint": "eslint",
    "lint:fix": "eslint --fix",
    "prepublishOnly": "npm run build && npm test",
    "dev": "tsc --watch",
    "format": "prettier --write \"src/**/*.ts\"",
    "type-check": "tsc --noEmit"
  },
  "keywords": [
    "utility",
    "lodash",
    "functional",
    "typescript",
    "array",
    "object",
    "string",
    "collection",
    "performance"
  ],
  "author": "Noor Mohammad",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/noorjsdivs/lodash-updated.git"
  },
  "bugs": {
    "url": "https://github.com/noorjsdivs/lodash-updated/issues"
  },
  "homepage": "https://github.com/noorjsdivs/lodash-updated#readme",
  "devDependencies": {
    "@types/node": "^22.10.0",
    "typescript": "^5.7.2",
    "eslint": "^9.17.0",
    "@typescript-eslint/eslint-plugin": "^8.18.0",
    "@typescript-eslint/parser": "^8.18.0",
    "@eslint/js": "^9.17.0",
    "typedoc": "^0.27.0",
    "c8": "^10.1.3",
    "prettier": "^3.4.2"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "sideEffects": false
}
