Spell-Whisperer
Spell whisperer is a prompt injection challenges platform based on Grok API.
File Explorer
- file.svg
- globe.svg
- kjh.png
- next.svg
- PlaywriteAUVIC-Regular.ttf
- vercel.svg
- VictorMono-Regular.ttf
- window.svg
- page.tsx
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- page.tsx
- page.tsx
- Section1.tsx
- Section2.tsx
- Section3.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- favicon.ico
- globals.css
- layout.tsx
- not-found.tsx
- opengraph-image.png
- page.tsx
- Aurora.tsx
- BlurText.tsx
- CircularText.tsx
- CountUp.tsx
- FlowingMenu.tsx
- GlitchText.tsx
- RotatingText.tsx
- ScrollReveal.tsx
- ShinyText.tsx
- SplashCursor.tsx
- SplitText.tsx
- SpotlightCard.tsx
- Threads.tsx
- alert-dialog.tsx
- alert.tsx
- avatar.tsx
- button.tsx
- card.tsx
- chart.tsx
- checkbox.tsx
- dialog.tsx
- dropdown-menu.tsx
- form.tsx
- input.tsx
- label.tsx
- sonner.tsx
- table.tsx
- textarea.tsx
- ChallengesList.tsx
- ChallengeTable.tsx
- Chat.tsx
- Confetti.tsx
- Divider.tsx
- Footer.tsx
- GitHubCorner.tsx
- HintButton.tsx
- LevelChart.tsx
- Loading.tsx
- LoginButton.tsx
- MarkdownRenderer.tsx
- MyNavbar.tsx
- Options.tsx
- ScrollDownHint.tsx
- SessionProviderWrapper.tsx
- Switch.tsx
- ThemeChecker.tsx
- ThemeProvider.tsx
- ThemeToggle.tsx
- Title.tsx
- TutorialButton.tsx
- ChallengeNameContext.tsx
- PostHogContext.tsx
- ProgressBarProvider.tsx
- authOptions.ts
- supabase.ts
- utils.ts
- .gitignore
- components.json
- LICENSE
- next-auth.d.ts
- next-env.d.ts
- next-sitemap.config.js
- next.config.ts
- package-lock.json
- package.json
- postcss.config.mjs
- README.md
- tailwind.config.ts
- tsconfig.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
