feat: Implement comprehensive repository improvements
- Set up ESLint and Prettier for code quality
- Split large script.js into modular architecture (DOM, animations, effects, easter-eggs, sound, interactions)
- Organize assets into proper directory structure (assets/css, assets/js/modules, assets/images)
- Add semantic HTML5 landmarks (header, main, nav, footer)
- Implement ARIA labels and keyboard navigation for accessibility
- Set up Vite build system with minification and optimization
- Add CSS custom properties for design tokens
- Create sitemap.xml and robots.txt for SEO
- Add MIT LICENSE
- Expand README with comprehensive documentation
- Set up GitHub Actions CI/CD workflow
- Optimize build output: ~59KB total (30KB image + 13KB CSS + 16KB JS gzipped)
Co-authored-by: ZaneThePython <102631678+ZaneThePython@users.noreply.github.com>
2025-11-09 00:09:48 +00:00
|
|
|
{
|
|
|
|
|
"name": "zanepersonal",
|
|
|
|
|
"version": "2.0.0",
|
|
|
|
|
"description": "Modern, interactive personal website with creative visual effects and animations",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite",
|
|
|
|
|
"build": "vite build",
|
|
|
|
|
"preview": "vite preview",
|
2025-11-09 00:14:31 +00:00
|
|
|
"test": "vitest",
|
|
|
|
|
"test:ui": "vitest --ui",
|
|
|
|
|
"test:run": "vitest run",
|
|
|
|
|
"coverage": "vitest run --coverage",
|
feat: Implement comprehensive repository improvements
- Set up ESLint and Prettier for code quality
- Split large script.js into modular architecture (DOM, animations, effects, easter-eggs, sound, interactions)
- Organize assets into proper directory structure (assets/css, assets/js/modules, assets/images)
- Add semantic HTML5 landmarks (header, main, nav, footer)
- Implement ARIA labels and keyboard navigation for accessibility
- Set up Vite build system with minification and optimization
- Add CSS custom properties for design tokens
- Create sitemap.xml and robots.txt for SEO
- Add MIT LICENSE
- Expand README with comprehensive documentation
- Set up GitHub Actions CI/CD workflow
- Optimize build output: ~59KB total (30KB image + 13KB CSS + 16KB JS gzipped)
Co-authored-by: ZaneThePython <102631678+ZaneThePython@users.noreply.github.com>
2025-11-09 00:09:48 +00:00
|
|
|
"lint": "eslint . --ext .js,.html",
|
|
|
|
|
"lint:fix": "eslint . --ext .js,.html --fix",
|
|
|
|
|
"format": "prettier --write \"**/*.{js,html,css,json,md}\"",
|
|
|
|
|
"format:check": "prettier --check \"**/*.{js,html,css,json,md}\""
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"personal-website",
|
|
|
|
|
"portfolio",
|
|
|
|
|
"interactive",
|
|
|
|
|
"web-animations",
|
|
|
|
|
"particle-effects",
|
|
|
|
|
"creative-coding"
|
|
|
|
|
],
|
|
|
|
|
"author": "ZaneDev <contact@zane.org>",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/ZaneThePython/ZanePersonal.git"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://zane.org",
|
|
|
|
|
"devDependencies": {
|
2025-11-09 00:14:31 +00:00
|
|
|
"@vitest/ui": "^4.0.8",
|
feat: Implement comprehensive repository improvements
- Set up ESLint and Prettier for code quality
- Split large script.js into modular architecture (DOM, animations, effects, easter-eggs, sound, interactions)
- Organize assets into proper directory structure (assets/css, assets/js/modules, assets/images)
- Add semantic HTML5 landmarks (header, main, nav, footer)
- Implement ARIA labels and keyboard navigation for accessibility
- Set up Vite build system with minification and optimization
- Add CSS custom properties for design tokens
- Create sitemap.xml and robots.txt for SEO
- Add MIT LICENSE
- Expand README with comprehensive documentation
- Set up GitHub Actions CI/CD workflow
- Optimize build output: ~59KB total (30KB image + 13KB CSS + 16KB JS gzipped)
Co-authored-by: ZaneThePython <102631678+ZaneThePython@users.noreply.github.com>
2025-11-09 00:09:48 +00:00
|
|
|
"eslint": "^9.39.1",
|
|
|
|
|
"eslint-config-prettier": "^10.1.8",
|
|
|
|
|
"eslint-plugin-html": "^8.1.3",
|
|
|
|
|
"imagemin": "^9.0.1",
|
|
|
|
|
"imagemin-mozjpeg": "^10.0.0",
|
|
|
|
|
"imagemin-pngquant": "^10.0.0",
|
2025-11-09 00:14:31 +00:00
|
|
|
"jsdom": "^27.1.0",
|
feat: Implement comprehensive repository improvements
- Set up ESLint and Prettier for code quality
- Split large script.js into modular architecture (DOM, animations, effects, easter-eggs, sound, interactions)
- Organize assets into proper directory structure (assets/css, assets/js/modules, assets/images)
- Add semantic HTML5 landmarks (header, main, nav, footer)
- Implement ARIA labels and keyboard navigation for accessibility
- Set up Vite build system with minification and optimization
- Add CSS custom properties for design tokens
- Create sitemap.xml and robots.txt for SEO
- Add MIT LICENSE
- Expand README with comprehensive documentation
- Set up GitHub Actions CI/CD workflow
- Optimize build output: ~59KB total (30KB image + 13KB CSS + 16KB JS gzipped)
Co-authored-by: ZaneThePython <102631678+ZaneThePython@users.noreply.github.com>
2025-11-09 00:09:48 +00:00
|
|
|
"prettier": "^3.6.2",
|
|
|
|
|
"terser": "^5.44.1",
|
2025-11-09 00:14:31 +00:00
|
|
|
"vite": "^7.2.2",
|
|
|
|
|
"vitest": "^4.0.8"
|
feat: Implement comprehensive repository improvements
- Set up ESLint and Prettier for code quality
- Split large script.js into modular architecture (DOM, animations, effects, easter-eggs, sound, interactions)
- Organize assets into proper directory structure (assets/css, assets/js/modules, assets/images)
- Add semantic HTML5 landmarks (header, main, nav, footer)
- Implement ARIA labels and keyboard navigation for accessibility
- Set up Vite build system with minification and optimization
- Add CSS custom properties for design tokens
- Create sitemap.xml and robots.txt for SEO
- Add MIT LICENSE
- Expand README with comprehensive documentation
- Set up GitHub Actions CI/CD workflow
- Optimize build output: ~59KB total (30KB image + 13KB CSS + 16KB JS gzipped)
Co-authored-by: ZaneThePython <102631678+ZaneThePython@users.noreply.github.com>
2025-11-09 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
}
|