{
  "name": "use-searchable-list",
  "version": "1.0.0",
  "description": "A hook to filter an array/list of objects.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jacoobia/useSearchableList.git"
  },
  "bugs": {
    "url": "https://github.com/jacoobia/useSearchableList/issues"
  },
  "homepage": "https://github.com/jacoobia/useSearchableList#readme",
  "keywords": [
    "Array",
    "Filter",
    "React",
    "Hook"
  ],
  "author": "(Jacoobia) Anthony Jacob Hampton",
  "license": "MIT",
  "dependencies": {
    "@jest/types": "^29.6.3",
    "react": "^18.2.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.27.1",
    "@testing-library/react": "^14.0.0",
    "@types/jest": "^29.5.1",
    "@types/react": "^18.2.0",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "eslint": "^8.56.0",
    "eslint-config-standard-with-typescript": "^43.0.0",
    "eslint-plugin-import": "^2.25.2",
    "eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
    "eslint-plugin-promise": "^6.0.0",
    "jest": "^29.5.0",
    "jest-environment-jsdom": "^29.5.0",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.2",
    "tsup": "^8.0.1",
    "typescript": "^5.0.4"
  },
  "scripts": {
    "test": "jest",
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "release": "pnpm run build && changeset publish",
    "quality": "prettier --write ./src/ && eslint . --fix --ext .ts",
    "clean": "eslint . --fix --ext .ts",
    "lint": "tsc"
  }
}