├── .gitignore ├── .prettierrc.json ├── README.md ├── eslint.config.mjs ├── index.html ├── index.tsx ├── package.json ├── pnpm-lock.yaml ├── rollup.config.js ├── setupTests.ts ├── src ├── confetti.spec.tsx ├── confetti.tsx ├── index.ts ├── styles.ts └── utils.ts ├── tsconfig.json ├── vite.config.ts └── vitest.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/index.html -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/index.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/rollup.config.js -------------------------------------------------------------------------------- /setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/setupTests.ts -------------------------------------------------------------------------------- /src/confetti.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/src/confetti.spec.tsx -------------------------------------------------------------------------------- /src/confetti.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/src/confetti.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/src/styles.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herrethan/react-confetti-explosion/HEAD/vitest.config.ts --------------------------------------------------------------------------------