UNPKG

react-fusejs-fuzzy-search

Version:

Fuzzy search by keeping the UI layer as abstract as possible.

57 lines (56 loc) 1.71 kB
{ "name": "react-fusejs-fuzzy-search", "version": "1.0.0", "description": "Fuzzy search by keeping the UI layer as abstract as possible.", "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "types": "./lib/esm/index.d.ts", "scripts": { "lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"", "lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix", "build": "npm run lint:fix && npm run build:esm && npm run build:commonjs", "build:esm": "tsc", "publish": "npm run build && npm publish", "build:commonjs": "tsc --module commonjs --outDir lib/cjs" }, "repository": { "type": "git", "url": "git+https://github.com/briosheje/react-fusejs-fuzzy-search.git" }, "keywords": [ "react", "fusejs", "fuse.js" ], "author": "Marco Iamonte <uaesbriosheje@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/briosheje/react-fusejs-fuzzy-search/issues" }, "homepage": "https://github.com/briosheje/react-fusejs-fuzzy-search#readme", "devDependencies": { "@types/react": "^18.0.9", "@types/react-dom": "^18.0.5", "@typescript-eslint/eslint-plugin": "^5.26.0", "@typescript-eslint/parser": "^5.26.0", "eslint": "^7.32.0", "eslint-config-airbnb": "^18.2.1", "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-typescript": "^2.5.0", "eslint-plugin-import": "^2.25.2", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-react": "^7.26.1", "eslint-plugin-react-hooks": "^4.2.0", "typescript": "^4.4.4" }, "dependencies": { "fuse.js": "^6.6.2" }, "peerDependencies": { "react": ">= 17.0.0", "react-dom": ">= 17.0.0" }, "files": [ "/lib" ] }