gitextract_8tmwua8y/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── nodejs.yml ├── .gitignore ├── .husky/ │ ├── .gitignore │ └── commit-msg ├── CHANGELOG.md ├── LICENSE ├── README.md ├── apps/ │ ├── nextjs/ │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages/ │ │ │ ├── _app.js │ │ │ ├── api/ │ │ │ │ └── hello.js │ │ │ └── index.js │ │ └── styles/ │ │ ├── Home.module.css │ │ └── globals.css │ ├── nextjs-beta/ │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── app/ │ │ │ ├── globals.css │ │ │ ├── head.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.module.css │ │ │ ├── page.tsx │ │ │ └── particles.tsx │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages/ │ │ │ └── api/ │ │ │ └── hello.ts │ │ └── tsconfig.json │ └── react/ │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ └── setupTests.js ├── components/ │ └── react/ │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── index.html │ ├── lib/ │ │ ├── IParticlesProps.ts │ │ ├── Particles.tsx │ │ └── index.ts │ ├── package.json │ ├── src/ │ │ ├── App.css │ │ ├── App.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── lerna.json ├── package.json ├── pnpm-workspace.yaml ├── renovate.json └── templates/ ├── react/ │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── scripts/ │ │ └── prebuild.js │ ├── template/ │ │ ├── README.md │ │ ├── gitignore │ │ ├── public/ │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── index.css │ │ ├── index.js │ │ ├── particles.json │ │ ├── serviceWorker.js │ │ └── setupTests.js │ └── template.json └── react-ts/ ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── scripts/ │ └── prebuild.js ├── template/ │ ├── README.md │ ├── gitignore │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── particles.json │ │ ├── reportWebVitals.ts │ │ ├── serviceWorker.ts │ │ └── setupTests.ts │ └── tsconfig.json └── template.json