{
  "name": "orderby-ts",
  "version": "2.0.1",
  "description": "A TypeScript utility for sorting arrays with ease",
  "main": "dist/index.js",
  "types": "dist/order-by.extension.d.ts",
  "scripts": {
    "build": "npx webpack",
    "test": "jest",
    "lint": "eslint \"src/**/*.{ts,tsx}\"",
    "format": "prettier --write .",
    "format-check": "npx prettier --check .",
    "prepare": "husky",
    "demo": "http-server -p 2345 -o  /demo",
    "publish": "npm publish",
    "test-pack": "npm pack"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mr-samani/orderby.git"
  },
  "keywords": [
    "orderby",
    "typescript",
    "sorting",
    "utility"
  ],
  "author": "Mohammadreza Samani",
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^9.15.0",
    "@types/jest": "^29.5.14",
    "eslint": "^9.15.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "globals": "^15.12.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.10",
    "prettier": "^3.4.1",
    "ts-jest": "^29.2.5",
    "typescript-eslint": "^8.16.0",
    "webpack": "^5.96.1",
    "webpack-cli": "^5.1.4",
    "css-loader": "^7.1.2",
    "style-loader": "^4.0.0",
    "ts-loader": "^9.5.1"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write"
    ]
  },
  "dependencies": {}
}
