├── .ci ├── .env.example └── Taskfile.yaml ├── .dev ├── .env.example ├── Taskfile.yaml ├── UnitTestUi.Dockerfile └── docker-compose.yaml ├── .github ├── README.md ├── images │ └── performance.png └── workflows │ ├── deploy.yml │ └── test-and-build.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── bartholomeow.html ├── e2e.html ├── e2e │ ├── ScreenShot.test.ts │ └── ScreenShot.test.ts-snapshots │ │ ├── 0-1-chromium-linux.png │ │ ├── 0-1-firefox-linux.png │ │ ├── 0-1-webkit-linux.png │ │ ├── 1000-1-chromium-linux.png │ │ ├── 1000-1-firefox-linux.png │ │ ├── 1000-1-webkit-linux.png │ │ ├── 3000-1-chromium-linux.png │ │ ├── 3000-1-firefox-linux.png │ │ ├── 3000-1-webkit-linux.png │ │ ├── 500-1-chromium-linux.png │ │ ├── 500-1-firefox-linux.png │ │ └── 500-1-webkit-linux.png ├── env.d.ts ├── gsap.html ├── index.html ├── package.json ├── playwright.config.ts ├── postcss.config.cjs ├── public │ ├── bartholomeow.png │ ├── example.glb │ ├── vite.svg │ ├── worm-ball.png │ └── worm-bg.png ├── src │ ├── bartholomeow.css │ ├── bartholomeow.ts │ ├── e2e.ts │ ├── gsap.css │ └── gsap.ts ├── tests.html ├── tsconfig.json ├── types.html ├── vite.config.ts └── yarn.lock ├── eslint.config.js ├── lib ├── .gitignore ├── dist │ ├── Animation.d.ts │ ├── Animation.types.d.ts │ ├── Driver.d.ts │ ├── Driver.types.d.ts │ ├── Observer.d.ts │ ├── Observer.types.d.ts │ ├── TheSupersonicPlugin.d.ts │ ├── TheSupersonicPlugin.types.d.ts │ ├── index.d.ts │ ├── the-supersonic-plugin-for-scroll-based-animation.iife.js │ └── the-supersonic-plugin-for-scroll-based-animation.js ├── env.d.ts ├── package.json ├── src │ ├── Animation.test.ts │ ├── Animation.ts │ ├── Animation.types.ts │ ├── Driver.test.ts │ ├── Driver.ts │ ├── Driver.types.ts │ ├── Observer.ts │ ├── Observer.types.ts │ ├── TheSupersonicPlugin.test.ts │ ├── TheSupersonicPlugin.ts │ ├── TheSupersonicPlugin.types.ts │ ├── index.ts │ └── utils.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock ├── package.json └── yarn.lock /.ci/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.ci/.env.example -------------------------------------------------------------------------------- /.ci/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.ci/Taskfile.yaml -------------------------------------------------------------------------------- /.dev/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.dev/.env.example -------------------------------------------------------------------------------- /.dev/Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.dev/Taskfile.yaml -------------------------------------------------------------------------------- /.dev/UnitTestUi.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.dev/UnitTestUi.Dockerfile -------------------------------------------------------------------------------- /.dev/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.dev/docker-compose.yaml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/images/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.github/images/performance.png -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.github/workflows/test-and-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | _old 4 | notes -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/bartholomeow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/bartholomeow.html -------------------------------------------------------------------------------- /docs/e2e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e.html -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/0-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/0-1-chromium-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/0-1-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/0-1-firefox-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/0-1-webkit-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/0-1-webkit-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/1000-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/1000-1-chromium-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/1000-1-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/1000-1-firefox-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/1000-1-webkit-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/1000-1-webkit-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/3000-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/3000-1-chromium-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/3000-1-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/3000-1-firefox-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/3000-1-webkit-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/3000-1-webkit-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/500-1-chromium-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/500-1-chromium-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/500-1-firefox-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/500-1-firefox-linux.png -------------------------------------------------------------------------------- /docs/e2e/ScreenShot.test.ts-snapshots/500-1-webkit-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/e2e/ScreenShot.test.ts-snapshots/500-1-webkit-linux.png -------------------------------------------------------------------------------- /docs/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/gsap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/gsap.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/playwright.config.ts -------------------------------------------------------------------------------- /docs/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/postcss.config.cjs -------------------------------------------------------------------------------- /docs/public/bartholomeow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/public/bartholomeow.png -------------------------------------------------------------------------------- /docs/public/example.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/public/example.glb -------------------------------------------------------------------------------- /docs/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/public/vite.svg -------------------------------------------------------------------------------- /docs/public/worm-ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/public/worm-ball.png -------------------------------------------------------------------------------- /docs/public/worm-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/public/worm-bg.png -------------------------------------------------------------------------------- /docs/src/bartholomeow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/src/bartholomeow.css -------------------------------------------------------------------------------- /docs/src/bartholomeow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/src/bartholomeow.ts -------------------------------------------------------------------------------- /docs/src/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/src/e2e.ts -------------------------------------------------------------------------------- /docs/src/gsap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/src/gsap.css -------------------------------------------------------------------------------- /docs/src/gsap.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/tests.html -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/types.html -------------------------------------------------------------------------------- /docs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/vite.config.ts -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/eslint.config.js -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/dist/Animation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/Animation.d.ts -------------------------------------------------------------------------------- /lib/dist/Animation.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/Animation.types.d.ts -------------------------------------------------------------------------------- /lib/dist/Driver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/Driver.d.ts -------------------------------------------------------------------------------- /lib/dist/Driver.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/Driver.types.d.ts -------------------------------------------------------------------------------- /lib/dist/Observer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/Observer.d.ts -------------------------------------------------------------------------------- /lib/dist/Observer.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/Observer.types.d.ts -------------------------------------------------------------------------------- /lib/dist/TheSupersonicPlugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/TheSupersonicPlugin.d.ts -------------------------------------------------------------------------------- /lib/dist/TheSupersonicPlugin.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/TheSupersonicPlugin.types.d.ts -------------------------------------------------------------------------------- /lib/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/index.d.ts -------------------------------------------------------------------------------- /lib/dist/the-supersonic-plugin-for-scroll-based-animation.iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/the-supersonic-plugin-for-scroll-based-animation.iife.js -------------------------------------------------------------------------------- /lib/dist/the-supersonic-plugin-for-scroll-based-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/dist/the-supersonic-plugin-for-scroll-based-animation.js -------------------------------------------------------------------------------- /lib/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/package.json -------------------------------------------------------------------------------- /lib/src/Animation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/Animation.test.ts -------------------------------------------------------------------------------- /lib/src/Animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/Animation.ts -------------------------------------------------------------------------------- /lib/src/Animation.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/Animation.types.ts -------------------------------------------------------------------------------- /lib/src/Driver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/Driver.test.ts -------------------------------------------------------------------------------- /lib/src/Driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/Driver.ts -------------------------------------------------------------------------------- /lib/src/Driver.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/Driver.types.ts -------------------------------------------------------------------------------- /lib/src/Observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/Observer.ts -------------------------------------------------------------------------------- /lib/src/Observer.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/Observer.types.ts -------------------------------------------------------------------------------- /lib/src/TheSupersonicPlugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/TheSupersonicPlugin.test.ts -------------------------------------------------------------------------------- /lib/src/TheSupersonicPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/TheSupersonicPlugin.ts -------------------------------------------------------------------------------- /lib/src/TheSupersonicPlugin.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/TheSupersonicPlugin.types.ts -------------------------------------------------------------------------------- /lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/index.ts -------------------------------------------------------------------------------- /lib/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/src/utils.ts -------------------------------------------------------------------------------- /lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/tsconfig.json -------------------------------------------------------------------------------- /lib/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/vite.config.ts -------------------------------------------------------------------------------- /lib/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/lib/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-illarionov/the-supersonic-plugin-for-scroll-based-animation/HEAD/yarn.lock --------------------------------------------------------------------------------