AK-21/Graphite-Industrial-Intelligence
0
1{2 "name": "wouter",3 "version": "3.10.0",4 "description": "Minimalist-friendly ~1.5KB router for React",5 "type": "module",6 "keywords": [7 "react",8 "preact",9 "router",10 "tiny",11 "routing",12 "hooks",13 "useLocation"14 ],15 "files": [16 "src",17 "types/**/*.d.ts",18 "types/*.d.ts"19 ],20 "main": "src/index.js",21 "exports": {22 ".": {23 "types": "./types/index.d.ts",24 "default": "./src/index.js"25 },26 "./use-browser-location": {27 "types": "./types/use-browser-location.d.ts",28 "default": "./src/use-browser-location.js"29 },30 "./use-hash-location": {31 "types": "./types/use-hash-location.d.ts",32 "default": "./src/use-hash-location.js"33 },34 "./memory-location": {35 "types": "./types/memory-location.d.ts",36 "default": "./src/memory-location.js"37 }38 },39 "types": "types/index.d.ts",40 "typesVersions": {41 ">=4.1": {42 "types/index.d.ts": [43 "types/index.d.ts"44 ],45 "use-browser-location": [46 "types/use-browser-location.d.ts"47 ],48 "use-hash-location": [49 "types/use-hash-location.d.ts"50 ],51 "memory-location": [52 "types/memory-location.d.ts"53 ]54 }55 },56 "scripts": {57 "prepublishOnly": "cp ../../README.md ."58 },59 "author": "Alexey Taktarov <molefrog@gmail.com>",60 "repository": {61 "type": "git",62 "url": "git+https://github.com/molefrog/wouter.git"63 },64 "license": "Unlicense",65 "peerDependencies": {66 "react": ">=16.8.0"67 },68 "dependencies": {69 "mitt": "^3.0.1",70 "regexparam": "^3.0.0",71 "use-sync-external-store": "^1.0.0"72 }73}74 