gitextract_evmxhh3o/ ├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .github/ │ ├── CODEOWNERS │ ├── bundlewatch.config.json │ ├── dependabot.yml │ ├── sync-repo-settings.yaml │ └── workflows/ │ ├── bundlewatch.yml │ ├── codeql.yml │ ├── dependabot.yml │ ├── docs.yml │ ├── e2e.yml │ ├── package.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .prettierrc ├── .releaserc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── e2e/ │ └── README.md ├── examples/ │ ├── anchor.ts │ ├── basic.ts │ ├── config.ts │ ├── hemispheres.ts │ ├── orientation.ts │ └── raycasting.ts ├── jest.config.js ├── package.json ├── rollup.config.examples.js ├── rollup.config.js ├── src/ │ ├── __tests__/ │ │ ├── __utils__/ │ │ │ └── createWebGlContext.ts │ │ ├── three.test.ts │ │ └── util.test.ts │ ├── index.ts │ ├── three.ts │ └── util.ts ├── tsconfig.examples.json ├── tsconfig.json └── typedoc.cjs