UNPKG

react-input-suggestions

Version:

A React input component with pluggable suggestions and autocomplete

75 lines (74 loc) 2.06 kB
{ "name": "react-input-suggestions", "version": "2.3.4", "description": "A React input component with pluggable suggestions and autocomplete", "keywords": [ "react", "autocomplete", "search", "suggestions", "typescript", "arrow key navigation", "esbuild", "input" ], "repository": { "type": "git", "url": "https://github.com/adhamu/react-input-suggestions" }, "license": "MIT", "author": "Amit Dhamu <dev@amitd.co>", "main": "./dist/index.js", "module": "./dist/index.esm.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "scripts": { "prebuild": "npx rimraf dist", "build": "node esbuild.config.js build", "postbuild": "tsc --project tsconfig.build.json", "predeploy": "node esbuild.config.js dev", "deploy": "gh-pages -d public", "dev": "node esbuild.config.js dev --watch", "lint": "yarn lint:scripts && yarn lint:styles", "lint:scripts": "eslint .", "lint:styles": "stylelint 'src/**/*.ts*'", "test": "jest --colors", "test:coverage": "yarn test --coverage", "type": "tsc --noEmit" }, "dependencies": { "@emotion/react": "^11.10.5", "@emotion/styled": "^11.10.5", "react": "^18.2.0", "react-dom": "^18.2.0", "react-string-replace": "^1.1.0" }, "devDependencies": { "@adhamu/zero": "^5.1.2", "@emotion/jest": "^11.10.5", "@stylelint/postcss-css-in-js": "^0.38.0", "@swc/core": "^1.3.25", "@swc/jest": "^0.2.24", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^14.4.3", "@types/jest": "^29.2.5", "@types/react": "^18.0.26", "@types/react-dom": "^18.0.10", "arge": "^1.2.0", "chokidar": "^3.5.3", "esbuild": "^0.16.15", "gh-pages": "^4.0.0", "jest": "^29.3.1", "jest-environment-jsdom": "^29.3.1", "live-server": "^1.2.2", "postcss-syntax": "^0.36.2", "typescript": "^4.9.4" }, "peerDependencies": { "react": "^18.1.0", "react-dom": "^18.1.0" } }