mirror of
https://github.com/acedanger/pokemon.git
synced 2025-12-05 22:50:13 -08:00
- Added Font Awesome and Annyang for enhanced UI and voice recognition capabilities. - Updated package.json to include new dependencies: @fortawesome/fontawesome-free, annyang, and wrangler. - Modified postcss.config.js for proper syntax. - Updated style.css to include Font Awesome styles and added new styles for voice search button and footer. - Adjusted tailwind.config.js to scan all relevant files for dynamic classes. - Added VSCode settings to ignore unknown at-rules in CSS, SCSS, and LESS. - Created a Caddyfile for server configuration with basic settings.
34 lines
792 B
JSON
34 lines
792 B
JSON
{
|
|
"name": "pokemon",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Pokemon for Margot",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"pokemon",
|
|
"margot"
|
|
],
|
|
"author": "Peter Wood <peter@peterwood.dev>",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-free": "^6.7.2",
|
|
"annyang": "^2.6.1",
|
|
"pokedex-promise-v2": "^4.2.1",
|
|
"wrangler": "^4.12.1"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.52.0",
|
|
"autoprefixer": "^10.4.21",
|
|
"postcss": "^8.5.3",
|
|
"tailwindcss": "^3.4.17",
|
|
"vite": "^6.3.2",
|
|
"vite-plugin-node-polyfills": "^0.23.0"
|
|
}
|
|
} |