UNPKG

get-google-suggestions

Version:
66 lines (65 loc) 1.39 kB
{ "version": "1.0.2", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=12" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test --passWithNoTests", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "get-google-suggestions", "author": "Yuvraj Seegolam", "repository": "yuvraj108c/get-google-suggestions", "description": "Get Google Search Suggestions for a given query", "keywords": [ "google", "search", "suggestions", "autocomplete", "suggest" ], "module": "dist/get-google-suggestions.esm.js", "size-limit": [ { "path": "dist/get-google-suggestions.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/get-google-suggestions.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^8.1.0", "husky": "^8.0.2", "size-limit": "^8.1.0", "tsdx": "^0.14.1", "tslib": "^2.4.1", "typescript": "^4.9.4" }, "dependencies": { "axios": "^1.2.1" } }