Features: - Zalgo text generator with adjustable intensity (1-10) - Real-time text corruption as you type - Click-to-copy functionality with visual feedback - Progressive Web App with offline support - Responsive design for mobile and desktop - Dark theme with glitch-inspired aesthetics Technical implementation: - Pure JavaScript implementation (no frameworks) - Service Worker for offline functionality - PWA manifest for installability - Python development server - Comprehensive linting setup (ESLint, Prettier, Black, Pylint) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
No EOL
441 B
JSON
17 lines
No EOL
441 B
JSON
{
|
|
"name": "text-corruptor",
|
|
"version": "1.0.0",
|
|
"description": "Zalgo text generator PWA",
|
|
"scripts": {
|
|
"serve": "python3 server.py",
|
|
"lint:js": "eslint app/*.js",
|
|
"lint:js:fix": "eslint app/*.js --fix",
|
|
"format": "prettier --write app/*.{js,html,css}",
|
|
"check": "prettier --check app/*.{js,html,css}"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.57.0",
|
|
"prettier": "^3.2.5",
|
|
"vnu-jar": "^24.10.17"
|
|
}
|
|
} |