Error while deploying site from Github

Team,
I’m trying to deploy website from GitHub (github.com/arskarthikeyan/floral-fusion-creations), however,i’m getting build error all the time.
11:14:46 PM: Failed during stage ‘Install dependencies’: dependency_installation script returned non-zero exit code: 1
11:14:46 PM: npm error code E404
11:14:46 PM: npm error 404 Not Found - GET https://registry.npmjs.org/@remix-run%2Fvite - Not found
11:14:46 PM: npm error 404
11:14:46 PM: npm error 404 ‘@remix-run/vite@latest’ is not in this registry.
11:14:46 PM: npm error 404
11:14:46 PM: npm error 404 Note that you can also install from a
11:14:46 PM: npm error 404 tarball, folder, http url, or git url.
11:14:46 PM: npm error A complete log of this run can be found in: /opt/buildhome/.npm/_logs/2025-03-20T17_44_35_329Z-debug-0.log
11:14:46 PM: Error during npm install
11:14:46 PM: Failing build: Failed to install dependencies

Options tried
@remix-run/vite is in package.json: We’ve verified that @remix-run/vite is present in devDependencies.
Correct Build Command: The Netlify build command is correctly set to npm run build.
vite.config.ts Configured: We’ve ensured that vite.config.ts includes the Remix Vite plugin.
.npmrc: We’ve created an .npmrc file in the root directory.
Node Engine: We’ve defined the Node.js version
Since we’ve already confirmed that @remix-run/vite is in the package.json file,

Pls check and help.
Regards,
Karthikeyan

@arskarthikeyan Where do you see the instructions to use a node package called @remix-run/vite?

As the error says, there is no package called @remix-run/vite in the npm registry.

You can confirm this by navigating to:
https://registry.npmjs.org/@remix-run/vite

This is the same response you will see when trying to load any package that does not exist.
https://registry.npmjs.org/@remix-run/unicorn

Meanwhile we know @remix-run/node exists as it’s in their documentation… and it does:
https://registry.npmjs.org/@remix-run/node
[https://www.npmjs.com/package/@remix-run/node(https://www.npmjs.com/package/@remix-run/node)

Your build cannot load things that don’t exist, so check & confirm your documentation/instructions.