├── .changeset ├── README.md └── config.json ├── .github ├── CODE_OF_CONDUCT.md ├── assets │ ├── airbnb-logo.png │ ├── demo.gif │ ├── faire-logo.svg │ ├── github.mp4 │ ├── instagram.mp4 │ ├── logo.svg │ ├── perplexity-logo.png │ ├── shopify-logo.png │ └── twitter.mp4 └── workflows │ ├── build-extension.yml │ └── pkg-pr-new.yaml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── BROWSER_EXTENSION_GUIDE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin ├── generate-certs.sh └── serve-scan.sh ├── biome.json ├── docs └── installation │ ├── astro.md │ ├── cdn.md │ ├── create-react-app.md │ ├── next-js-app-router.md │ ├── next-js-page-router.md │ ├── parcel.md │ ├── react-router.md │ ├── remix.md │ ├── rsbuild.md │ ├── tanstack-start.md │ └── vite.md ├── kitchen-sink ├── index.html ├── package.json ├── postcss.config.mjs ├── src │ ├── examples │ │ ├── sierpinski │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ └── todo-list │ │ │ ├── index.tsx │ │ │ └── styles.css │ ├── index.css │ ├── index.tsx │ ├── main.css │ └── main.tsx ├── tailwind.config.mjs ├── tsconfig.json └── vite.config.ts ├── package.json ├── packages ├── extension │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── brave-extension-v1.1.4.zip │ │ ├── chrome-extension-v1.1.4.zip │ │ └── firefox-extension-v1.1.4.zip │ ├── package.json │ ├── public │ │ └── icons │ │ │ ├── disabled │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 32.png │ │ │ └── 48.png │ │ │ └── enabled │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 32.png │ │ │ └── 48.png │ ├── src │ │ ├── assets │ │ │ └── css │ │ │ │ └── no-react.css │ │ ├── background │ │ │ ├── icon.ts │ │ │ └── index.ts │ │ ├── content │ │ │ └── index.ts │ │ ├── inject │ │ │ ├── index.ts │ │ │ ├── notification.ts │ │ │ └── react-scan.ts │ │ ├── manifest.chrome.json │ │ ├── manifest.firefox.json │ │ ├── types │ │ │ ├── global.d.ts │ │ │ └── messages.ts │ │ ├── utils │ │ │ ├── constants.ts │ │ │ └── helpers.ts │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── scan │ ├── .gitignore │ ├── README.md │ ├── auto.d.ts │ ├── bin │ │ └── cli.js │ ├── global.d.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── postcss.rem2px.mjs │ ├── scripts │ │ └── bump-version.js │ ├── src │ │ ├── auto.ts │ │ ├── cli.mts │ │ ├── core │ │ │ ├── all-environments.ts │ │ │ ├── fast-serialize.test.ts │ │ │ ├── index.ts │ │ │ ├── instrumentation.ts │ │ │ ├── monitor │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── network.ts │ │ │ │ ├── params │ │ │ │ │ ├── astro │ │ │ │ │ │ ├── Monitoring.astro │ │ │ │ │ │ ├── component.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── next.ts │ │ │ │ │ ├── react-router-v5.ts │ │ │ │ │ ├── react-router-v6.ts │ │ │ │ │ ├── remix.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── performance.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── notifications │ │ │ │ ├── event-tracking.ts │ │ │ │ ├── interaction-store.ts │ │ │ │ ├── outline-overlay.ts │ │ │ │ ├── performance-store.ts │ │ │ │ ├── performance-utils.ts │ │ │ │ ├── performance.ts │ │ │ │ └── types.ts │ │ │ └── utils.ts │ │ ├── index.ts │ │ ├── install-hook.ts │ │ ├── monitoring │ │ │ └── next.ts │ │ ├── new-outlines │ │ │ ├── canvas.ts │ │ │ ├── index.ts │ │ │ ├── offscreen-canvas.worker.ts │ │ │ └── types.ts │ │ ├── polyfills.ts │ │ ├── react-component-name │ │ │ ├── __tests__ │ │ │ │ ├── arrow-function.test.ts │ │ │ │ ├── complex-patterns.test.ts │ │ │ │ ├── function-declarations.test.ts │ │ │ │ ├── general-cases.test.ts │ │ │ │ ├── react-patterns.test.ts │ │ │ │ ├── ts-patterns.test.ts │ │ │ │ └── utils.ts │ │ │ ├── astro.ts │ │ │ ├── babel │ │ │ │ ├── get-descriptive-name.ts │ │ │ │ ├── get-root-statement-path.ts │ │ │ │ ├── index.ts │ │ │ │ ├── is-componentish-name.ts │ │ │ │ ├── is-nested-expression.ts │ │ │ │ ├── is-path-valid.ts │ │ │ │ ├── is-statement-top-level.ts │ │ │ │ ├── path-references-import.ts │ │ │ │ └── unwrap.ts │ │ │ ├── core │ │ │ │ └── options.ts │ │ │ ├── esbuild.ts │ │ │ ├── index.ts │ │ │ ├── loader.ts │ │ │ ├── rolldown.ts │ │ │ ├── rollup.ts │ │ │ ├── rspack.ts │ │ │ ├── tsconfig.json │ │ │ ├── vite.ts │ │ │ └── webpack.ts │ │ ├── types.d.ts │ │ ├── types.ts │ │ ├── web │ │ │ ├── assets │ │ │ │ └── css │ │ │ │ │ └── styles.tailwind.css │ │ │ ├── components │ │ │ │ ├── copy-to-clipboard │ │ │ │ │ └── index.tsx │ │ │ │ ├── icon │ │ │ │ │ └── index.tsx │ │ │ │ ├── slider │ │ │ │ │ └── index.tsx │ │ │ │ ├── sticky-section │ │ │ │ │ └── index.tsx │ │ │ │ ├── svg-sprite │ │ │ │ │ └── index.tsx │ │ │ │ └── toggle │ │ │ │ │ └── index.tsx │ │ │ ├── constants.ts │ │ │ ├── hooks │ │ │ │ ├── use-delayed-value.ts │ │ │ │ ├── use-merged-refs.ts │ │ │ │ └── use-virtual-list.ts │ │ │ ├── state.ts │ │ │ ├── toolbar.tsx │ │ │ ├── utils │ │ │ │ ├── constants.ts │ │ │ │ ├── create-store.ts │ │ │ │ ├── geiger.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── lerp.ts │ │ │ │ ├── log.ts │ │ │ │ ├── lru.ts │ │ │ │ ├── outline.ts │ │ │ │ ├── pin.ts │ │ │ │ └── preact │ │ │ │ │ ├── constant.ts │ │ │ │ │ ├── use-constant.ts │ │ │ │ │ └── use-lazy-ref.ts │ │ │ ├── views │ │ │ │ ├── index.tsx │ │ │ │ ├── inspector │ │ │ │ │ ├── components-tree │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── state.ts │ │ │ │ │ ├── diff-value.tsx │ │ │ │ │ ├── flash-overlay.ts │ │ │ │ │ ├── header.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── logging.ts │ │ │ │ │ ├── overlay │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── properties.tsx │ │ │ │ │ ├── states.ts │ │ │ │ │ ├── timeline │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── utils.ts │ │ │ │ │ ├── what-changed.tsx │ │ │ │ │ └── whats-changed │ │ │ │ │ │ └── use-change-store.ts │ │ │ │ ├── notifications │ │ │ │ │ ├── collapsed-event.tsx │ │ │ │ │ ├── data.ts │ │ │ │ │ ├── details-routes.tsx │ │ │ │ │ ├── icons.tsx │ │ │ │ │ ├── notification-header.tsx │ │ │ │ │ ├── notification-tabs.tsx │ │ │ │ │ ├── notifications.tsx │ │ │ │ │ ├── optimize.tsx │ │ │ │ │ ├── other-visualization.tsx │ │ │ │ │ ├── popover.tsx │ │ │ │ │ ├── render-bar-chart.tsx │ │ │ │ │ ├── render-explanation.tsx │ │ │ │ │ └── slowdown-history.tsx │ │ │ │ ├── settings │ │ │ │ │ └── header.tsx │ │ │ │ └── toolbar │ │ │ │ │ └── index.tsx │ │ │ └── widget │ │ │ │ ├── fps-meter.tsx │ │ │ │ ├── header.tsx │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── resize-handle.tsx │ │ │ │ └── types.ts │ │ └── worker-shim.ts │ ├── tailwind.config.mjs │ ├── tsconfig.json │ ├── tsup.config.ts │ ├── vite.config.mts │ └── worker-plugin.ts ├── vite-plugin-react-scan │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── global.d.ts │ │ └── index.ts │ └── tsconfig.json └── website │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── api │ │ └── waitlist │ │ │ └── route.ts │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ ├── monitoring │ │ ├── (components) │ │ │ └── waitlist.tsx │ │ └── page.tsx │ ├── page.tsx │ ├── react-scan.ts │ └── replay │ │ └── page.tsx │ ├── components │ ├── cli.tsx │ ├── code.tsx │ ├── companies.tsx │ ├── counter.tsx │ ├── footer.tsx │ ├── header.tsx │ ├── install-guide.tsx │ ├── test-data-types.tsx │ └── todo-demo.tsx │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── after.png │ ├── airbnb-logo.png │ ├── banner.png │ ├── discord.svg │ ├── faire-logo.svg │ ├── logo.svg │ ├── monitoring.png │ ├── perplexity-logo.png │ ├── player-video.mp4 │ ├── profiler.svg │ ├── shopify-logo.png │ └── thumbnail.png │ ├── tailwind.config.ts │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── build-worker.ts ├── bump-version.js ├── version-warning.mjs └── workspace.mjs └── tsconfig.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/assets/airbnb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/airbnb-logo.png -------------------------------------------------------------------------------- /.github/assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/demo.gif -------------------------------------------------------------------------------- /.github/assets/faire-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/faire-logo.svg -------------------------------------------------------------------------------- /.github/assets/github.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/github.mp4 -------------------------------------------------------------------------------- /.github/assets/instagram.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/instagram.mp4 -------------------------------------------------------------------------------- /.github/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/logo.svg -------------------------------------------------------------------------------- /.github/assets/perplexity-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/perplexity-logo.png -------------------------------------------------------------------------------- /.github/assets/shopify-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/shopify-logo.png -------------------------------------------------------------------------------- /.github/assets/twitter.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/assets/twitter.mp4 -------------------------------------------------------------------------------- /.github/workflows/build-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/workflows/build-extension.yml -------------------------------------------------------------------------------- /.github/workflows/pkg-pr-new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.github/workflows/pkg-pr-new.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /BROWSER_EXTENSION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/BROWSER_EXTENSION_GUIDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/README.md -------------------------------------------------------------------------------- /bin/generate-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/bin/generate-certs.sh -------------------------------------------------------------------------------- /bin/serve-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/bin/serve-scan.sh -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/biome.json -------------------------------------------------------------------------------- /docs/installation/astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/astro.md -------------------------------------------------------------------------------- /docs/installation/cdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/cdn.md -------------------------------------------------------------------------------- /docs/installation/create-react-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/create-react-app.md -------------------------------------------------------------------------------- /docs/installation/next-js-app-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/next-js-app-router.md -------------------------------------------------------------------------------- /docs/installation/next-js-page-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/next-js-page-router.md -------------------------------------------------------------------------------- /docs/installation/parcel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/parcel.md -------------------------------------------------------------------------------- /docs/installation/react-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/react-router.md -------------------------------------------------------------------------------- /docs/installation/remix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/remix.md -------------------------------------------------------------------------------- /docs/installation/rsbuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/rsbuild.md -------------------------------------------------------------------------------- /docs/installation/tanstack-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/tanstack-start.md -------------------------------------------------------------------------------- /docs/installation/vite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/docs/installation/vite.md -------------------------------------------------------------------------------- /kitchen-sink/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/index.html -------------------------------------------------------------------------------- /kitchen-sink/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/package.json -------------------------------------------------------------------------------- /kitchen-sink/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/postcss.config.mjs -------------------------------------------------------------------------------- /kitchen-sink/src/examples/sierpinski/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/src/examples/sierpinski/index.tsx -------------------------------------------------------------------------------- /kitchen-sink/src/examples/sierpinski/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/src/examples/sierpinski/styles.css -------------------------------------------------------------------------------- /kitchen-sink/src/examples/todo-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/src/examples/todo-list/index.tsx -------------------------------------------------------------------------------- /kitchen-sink/src/examples/todo-list/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/src/examples/todo-list/styles.css -------------------------------------------------------------------------------- /kitchen-sink/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | } 4 | -------------------------------------------------------------------------------- /kitchen-sink/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/src/index.tsx -------------------------------------------------------------------------------- /kitchen-sink/src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/src/main.css -------------------------------------------------------------------------------- /kitchen-sink/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/src/main.tsx -------------------------------------------------------------------------------- /kitchen-sink/tailwind.config.mjs: -------------------------------------------------------------------------------- 1 | export default { 2 | content: ['./src/**/*.{js,jsx,ts,tsx}'], 3 | }; 4 | -------------------------------------------------------------------------------- /kitchen-sink/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/tsconfig.json -------------------------------------------------------------------------------- /kitchen-sink/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/kitchen-sink/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/package.json -------------------------------------------------------------------------------- /packages/extension/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/.env.example -------------------------------------------------------------------------------- /packages/extension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/.gitignore -------------------------------------------------------------------------------- /packages/extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/README.md -------------------------------------------------------------------------------- /packages/extension/build/brave-extension-v1.1.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/build/brave-extension-v1.1.4.zip -------------------------------------------------------------------------------- /packages/extension/build/chrome-extension-v1.1.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/build/chrome-extension-v1.1.4.zip -------------------------------------------------------------------------------- /packages/extension/build/firefox-extension-v1.1.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/build/firefox-extension-v1.1.4.zip -------------------------------------------------------------------------------- /packages/extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/package.json -------------------------------------------------------------------------------- /packages/extension/public/icons/disabled/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/public/icons/disabled/128.png -------------------------------------------------------------------------------- /packages/extension/public/icons/disabled/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/public/icons/disabled/16.png -------------------------------------------------------------------------------- /packages/extension/public/icons/disabled/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/public/icons/disabled/32.png -------------------------------------------------------------------------------- /packages/extension/public/icons/disabled/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/public/icons/disabled/48.png -------------------------------------------------------------------------------- /packages/extension/public/icons/enabled/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/public/icons/enabled/128.png -------------------------------------------------------------------------------- /packages/extension/public/icons/enabled/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/public/icons/enabled/16.png -------------------------------------------------------------------------------- /packages/extension/public/icons/enabled/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/public/icons/enabled/32.png -------------------------------------------------------------------------------- /packages/extension/public/icons/enabled/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/public/icons/enabled/48.png -------------------------------------------------------------------------------- /packages/extension/src/assets/css/no-react.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/assets/css/no-react.css -------------------------------------------------------------------------------- /packages/extension/src/background/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/background/icon.ts -------------------------------------------------------------------------------- /packages/extension/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/background/index.ts -------------------------------------------------------------------------------- /packages/extension/src/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/content/index.ts -------------------------------------------------------------------------------- /packages/extension/src/inject/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/inject/index.ts -------------------------------------------------------------------------------- /packages/extension/src/inject/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/inject/notification.ts -------------------------------------------------------------------------------- /packages/extension/src/inject/react-scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/inject/react-scan.ts -------------------------------------------------------------------------------- /packages/extension/src/manifest.chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/manifest.chrome.json -------------------------------------------------------------------------------- /packages/extension/src/manifest.firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/manifest.firefox.json -------------------------------------------------------------------------------- /packages/extension/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/types/global.d.ts -------------------------------------------------------------------------------- /packages/extension/src/types/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/types/messages.ts -------------------------------------------------------------------------------- /packages/extension/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/utils/constants.ts -------------------------------------------------------------------------------- /packages/extension/src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/src/utils/helpers.ts -------------------------------------------------------------------------------- /packages/extension/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/tsconfig.json -------------------------------------------------------------------------------- /packages/extension/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/tsconfig.node.json -------------------------------------------------------------------------------- /packages/extension/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/extension/vite.config.ts -------------------------------------------------------------------------------- /packages/scan/.gitignore: -------------------------------------------------------------------------------- 1 | src/web/assets/css/styles.css 2 | -------------------------------------------------------------------------------- /packages/scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/README.md -------------------------------------------------------------------------------- /packages/scan/auto.d.ts: -------------------------------------------------------------------------------- 1 | export * from './dist/auto'; 2 | -------------------------------------------------------------------------------- /packages/scan/bin/cli.js: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | require('../dist/cli'); 3 | -------------------------------------------------------------------------------- /packages/scan/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/global.d.ts -------------------------------------------------------------------------------- /packages/scan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/package.json -------------------------------------------------------------------------------- /packages/scan/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/postcss.config.mjs -------------------------------------------------------------------------------- /packages/scan/postcss.rem2px.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/postcss.rem2px.mjs -------------------------------------------------------------------------------- /packages/scan/scripts/bump-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/scripts/bump-version.js -------------------------------------------------------------------------------- /packages/scan/src/auto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/auto.ts -------------------------------------------------------------------------------- /packages/scan/src/cli.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/cli.mts -------------------------------------------------------------------------------- /packages/scan/src/core/all-environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/all-environments.ts -------------------------------------------------------------------------------- /packages/scan/src/core/fast-serialize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/fast-serialize.test.ts -------------------------------------------------------------------------------- /packages/scan/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/index.ts -------------------------------------------------------------------------------- /packages/scan/src/core/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/instrumentation.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/constants.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/index.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/network.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/astro/Monitoring.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/astro/Monitoring.astro -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/astro/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/astro/component.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/astro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/astro/index.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/next.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/react-router-v5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/react-router-v5.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/react-router-v6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/react-router-v6.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/remix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/remix.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/types.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/params/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/params/utils.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/performance.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/types.ts -------------------------------------------------------------------------------- /packages/scan/src/core/monitor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/monitor/utils.ts -------------------------------------------------------------------------------- /packages/scan/src/core/notifications/event-tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/notifications/event-tracking.ts -------------------------------------------------------------------------------- /packages/scan/src/core/notifications/interaction-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/notifications/interaction-store.ts -------------------------------------------------------------------------------- /packages/scan/src/core/notifications/outline-overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/notifications/outline-overlay.ts -------------------------------------------------------------------------------- /packages/scan/src/core/notifications/performance-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/notifications/performance-store.ts -------------------------------------------------------------------------------- /packages/scan/src/core/notifications/performance-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/notifications/performance-utils.ts -------------------------------------------------------------------------------- /packages/scan/src/core/notifications/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/notifications/performance.ts -------------------------------------------------------------------------------- /packages/scan/src/core/notifications/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/notifications/types.ts -------------------------------------------------------------------------------- /packages/scan/src/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/core/utils.ts -------------------------------------------------------------------------------- /packages/scan/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/index.ts -------------------------------------------------------------------------------- /packages/scan/src/install-hook.ts: -------------------------------------------------------------------------------- 1 | export { getRDTHook as init } from 'bippy'; 2 | -------------------------------------------------------------------------------- /packages/scan/src/monitoring/next.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/scan/src/new-outlines/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/new-outlines/canvas.ts -------------------------------------------------------------------------------- /packages/scan/src/new-outlines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/new-outlines/index.ts -------------------------------------------------------------------------------- /packages/scan/src/new-outlines/offscreen-canvas.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/new-outlines/offscreen-canvas.worker.ts -------------------------------------------------------------------------------- /packages/scan/src/new-outlines/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/new-outlines/types.ts -------------------------------------------------------------------------------- /packages/scan/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/polyfills.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/__tests__/arrow-function.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/__tests__/arrow-function.test.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/__tests__/complex-patterns.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/__tests__/complex-patterns.test.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/__tests__/function-declarations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/__tests__/function-declarations.test.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/__tests__/general-cases.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/__tests__/general-cases.test.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/__tests__/react-patterns.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/__tests__/react-patterns.test.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/__tests__/ts-patterns.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/__tests__/ts-patterns.test.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/__tests__/utils.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/astro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/astro.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/get-descriptive-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/get-descriptive-name.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/get-root-statement-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/get-root-statement-path.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/index.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/is-componentish-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/is-componentish-name.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/is-nested-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/is-nested-expression.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/is-path-valid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/is-path-valid.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/is-statement-top-level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/is-statement-top-level.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/path-references-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/path-references-import.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/babel/unwrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/babel/unwrap.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/core/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/core/options.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/esbuild.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/index.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/loader.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/rolldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/rolldown.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/rollup.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/rspack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/rspack.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/tsconfig.json -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/vite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/vite.ts -------------------------------------------------------------------------------- /packages/scan/src/react-component-name/webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/react-component-name/webpack.ts -------------------------------------------------------------------------------- /packages/scan/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/types.d.ts -------------------------------------------------------------------------------- /packages/scan/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/types.ts -------------------------------------------------------------------------------- /packages/scan/src/web/assets/css/styles.tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/assets/css/styles.tailwind.css -------------------------------------------------------------------------------- /packages/scan/src/web/components/copy-to-clipboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/components/copy-to-clipboard/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/components/icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/components/icon/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/components/slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/components/slider/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/components/sticky-section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/components/sticky-section/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/components/svg-sprite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/components/svg-sprite/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/components/toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/components/toggle/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/constants.ts -------------------------------------------------------------------------------- /packages/scan/src/web/hooks/use-delayed-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/hooks/use-delayed-value.ts -------------------------------------------------------------------------------- /packages/scan/src/web/hooks/use-merged-refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/hooks/use-merged-refs.ts -------------------------------------------------------------------------------- /packages/scan/src/web/hooks/use-virtual-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/hooks/use-virtual-list.ts -------------------------------------------------------------------------------- /packages/scan/src/web/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/state.ts -------------------------------------------------------------------------------- /packages/scan/src/web/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/toolbar.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/utils/constants.ts: -------------------------------------------------------------------------------- 1 | export const IS_CLIENT = typeof window !== 'undefined'; 2 | -------------------------------------------------------------------------------- /packages/scan/src/web/utils/create-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/create-store.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/geiger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/geiger.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/helpers.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/lerp.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/log.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/lru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/lru.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/outline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/outline.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/pin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/pin.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/preact/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/preact/constant.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/preact/use-constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/preact/use-constant.ts -------------------------------------------------------------------------------- /packages/scan/src/web/utils/preact/use-lazy-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/utils/preact/use-lazy-ref.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/components-tree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/components-tree/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/components-tree/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/components-tree/state.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/diff-value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/diff-value.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/flash-overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/flash-overlay.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/header.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/logging.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/overlay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/overlay/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/properties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/properties.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/states.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/states.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/timeline/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/timeline/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/timeline/utils.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/utils.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/what-changed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/what-changed.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/inspector/whats-changed/use-change-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/inspector/whats-changed/use-change-store.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/collapsed-event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/collapsed-event.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/data.ts -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/details-routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/details-routes.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/icons.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/notification-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/notification-header.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/notification-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/notification-tabs.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/notifications.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/optimize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/optimize.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/other-visualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/other-visualization.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/popover.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/render-bar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/render-bar-chart.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/render-explanation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/render-explanation.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/notifications/slowdown-history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/notifications/slowdown-history.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/settings/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/settings/header.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/views/toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/views/toolbar/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/widget/fps-meter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/widget/fps-meter.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/widget/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/widget/header.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/widget/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/widget/helpers.ts -------------------------------------------------------------------------------- /packages/scan/src/web/widget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/widget/index.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/widget/resize-handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/widget/resize-handle.tsx -------------------------------------------------------------------------------- /packages/scan/src/web/widget/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/web/widget/types.ts -------------------------------------------------------------------------------- /packages/scan/src/worker-shim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/src/worker-shim.ts -------------------------------------------------------------------------------- /packages/scan/tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/tailwind.config.mjs -------------------------------------------------------------------------------- /packages/scan/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/tsconfig.json -------------------------------------------------------------------------------- /packages/scan/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/tsup.config.ts -------------------------------------------------------------------------------- /packages/scan/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/vite.config.mts -------------------------------------------------------------------------------- /packages/scan/worker-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/scan/worker-plugin.ts -------------------------------------------------------------------------------- /packages/vite-plugin-react-scan/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/vite-plugin-react-scan/.npmignore -------------------------------------------------------------------------------- /packages/vite-plugin-react-scan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/vite-plugin-react-scan/LICENSE -------------------------------------------------------------------------------- /packages/vite-plugin-react-scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/vite-plugin-react-scan/README.md -------------------------------------------------------------------------------- /packages/vite-plugin-react-scan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/vite-plugin-react-scan/package.json -------------------------------------------------------------------------------- /packages/vite-plugin-react-scan/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'babel-plugin-add-react-displayname/index.js'; 2 | -------------------------------------------------------------------------------- /packages/vite-plugin-react-scan/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/vite-plugin-react-scan/src/index.ts -------------------------------------------------------------------------------- /packages/vite-plugin-react-scan/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/vite-plugin-react-scan/tsconfig.json -------------------------------------------------------------------------------- /packages/website/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/.eslintrc.json -------------------------------------------------------------------------------- /packages/website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/.gitignore -------------------------------------------------------------------------------- /packages/website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/README.md -------------------------------------------------------------------------------- /packages/website/app/api/waitlist/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/api/waitlist/route.ts -------------------------------------------------------------------------------- /packages/website/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/favicon.ico -------------------------------------------------------------------------------- /packages/website/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /packages/website/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /packages/website/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/globals.css -------------------------------------------------------------------------------- /packages/website/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/layout.tsx -------------------------------------------------------------------------------- /packages/website/app/monitoring/(components)/waitlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/monitoring/(components)/waitlist.tsx -------------------------------------------------------------------------------- /packages/website/app/monitoring/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/monitoring/page.tsx -------------------------------------------------------------------------------- /packages/website/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/page.tsx -------------------------------------------------------------------------------- /packages/website/app/react-scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/react-scan.ts -------------------------------------------------------------------------------- /packages/website/app/replay/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/app/replay/page.tsx -------------------------------------------------------------------------------- /packages/website/components/cli.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/cli.tsx -------------------------------------------------------------------------------- /packages/website/components/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/code.tsx -------------------------------------------------------------------------------- /packages/website/components/companies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/companies.tsx -------------------------------------------------------------------------------- /packages/website/components/counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/counter.tsx -------------------------------------------------------------------------------- /packages/website/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/footer.tsx -------------------------------------------------------------------------------- /packages/website/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/header.tsx -------------------------------------------------------------------------------- /packages/website/components/install-guide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/install-guide.tsx -------------------------------------------------------------------------------- /packages/website/components/test-data-types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/test-data-types.tsx -------------------------------------------------------------------------------- /packages/website/components/todo-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/components/todo-demo.tsx -------------------------------------------------------------------------------- /packages/website/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/next.config.ts -------------------------------------------------------------------------------- /packages/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/package.json -------------------------------------------------------------------------------- /packages/website/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/postcss.config.mjs -------------------------------------------------------------------------------- /packages/website/public/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/after.png -------------------------------------------------------------------------------- /packages/website/public/airbnb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/airbnb-logo.png -------------------------------------------------------------------------------- /packages/website/public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/banner.png -------------------------------------------------------------------------------- /packages/website/public/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/discord.svg -------------------------------------------------------------------------------- /packages/website/public/faire-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/faire-logo.svg -------------------------------------------------------------------------------- /packages/website/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/logo.svg -------------------------------------------------------------------------------- /packages/website/public/monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/monitoring.png -------------------------------------------------------------------------------- /packages/website/public/perplexity-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/perplexity-logo.png -------------------------------------------------------------------------------- /packages/website/public/player-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/player-video.mp4 -------------------------------------------------------------------------------- /packages/website/public/profiler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/profiler.svg -------------------------------------------------------------------------------- /packages/website/public/shopify-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/shopify-logo.png -------------------------------------------------------------------------------- /packages/website/public/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/public/thumbnail.png -------------------------------------------------------------------------------- /packages/website/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/tailwind.config.ts -------------------------------------------------------------------------------- /packages/website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/packages/website/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/build-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/scripts/build-worker.ts -------------------------------------------------------------------------------- /scripts/bump-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/scripts/bump-version.js -------------------------------------------------------------------------------- /scripts/version-warning.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/scripts/version-warning.mjs -------------------------------------------------------------------------------- /scripts/workspace.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/scripts/workspace.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aidenybai/react-scan/HEAD/tsconfig.json --------------------------------------------------------------------------------