gitextract_acdd_gc9/ ├── .github/ │ ├── FUNDING.yml │ ├── issue_template.md │ └── workflows/ │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MIGRATING.md ├── README.md ├── biome.json ├── codecov.yml ├── examples/ │ └── react/ │ ├── public/ │ │ ├── App.css │ │ ├── defaults.css │ │ ├── index.html │ │ ├── range.css │ │ └── reset.css │ └── src/ │ ├── App.tsx │ ├── Duration.tsx │ └── index.tsx ├── package.json ├── scripts/ │ ├── builder/ │ │ ├── builder.js │ │ └── package.json │ └── tester/ │ ├── package.json │ └── tester.js ├── src/ │ ├── HtmlPlayer.tsx │ ├── Player.tsx │ ├── Preview.tsx │ ├── ReactPlayer.tsx │ ├── index.ts │ ├── patterns.ts │ ├── players.ts │ ├── props.ts │ └── types.ts ├── test/ │ ├── Player.test.tsx │ ├── Player.tsx │ ├── ReactPlayer/ │ │ ├── instanceMethods.js │ │ ├── props.tsx │ │ ├── render.js │ │ └── staticMethods.js │ ├── helpers/ │ │ ├── helpers.tsx │ │ └── server-safe-globals.js │ └── react-player-tests.tsx └── tsconfig.json