├── .circleci └── config.yml ├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── GamepadsContext.d.ts ├── index.d.ts ├── index.js ├── react-gamepads.cjs.development.js ├── react-gamepads.cjs.production.min.js ├── react-gamepads.esm.js └── useGamepads.d.ts ├── example ├── .npmignore ├── index.html ├── index.tsx ├── package.json └── tsconfig.json ├── package.json ├── src ├── GamepadsContext.tsx ├── global.d.ts ├── index.tsx └── useGamepads.tsx ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | .cache 5 | dist 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/README.md -------------------------------------------------------------------------------- /dist/GamepadsContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/dist/GamepadsContext.d.ts -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/react-gamepads.cjs.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/dist/react-gamepads.cjs.development.js -------------------------------------------------------------------------------- /dist/react-gamepads.cjs.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/dist/react-gamepads.cjs.production.min.js -------------------------------------------------------------------------------- /dist/react-gamepads.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/dist/react-gamepads.esm.js -------------------------------------------------------------------------------- /dist/useGamepads.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/dist/useGamepads.d.ts -------------------------------------------------------------------------------- /example/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/package.json -------------------------------------------------------------------------------- /src/GamepadsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/src/GamepadsContext.tsx -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/useGamepads.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/src/useGamepads.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whoisryosuke/react-gamepads/HEAD/yarn.lock --------------------------------------------------------------------------------