Files
artchat/package.json
Arthur DANJOU 3fa4f574d3 refactor: update ESLint configuration and remove unused dependencies
- Replaced Nuxt ESLint configuration with Antfu's ESLint config.
- Removed 'nuxt-visitors' module from Nuxt configuration.
- Added linting scripts to package.json for easier code quality checks.
- Introduced a new API endpoint for fetching weather data from OpenWeather.
- Enhanced chat types with new enums and properties for better state management.
- Added OpenWeather response types for improved type safety.
- Updated social links in types/index.ts to include an email contact.
2025-09-02 17:45:01 +02:00

45 lines
1.2 KiB
JSON

{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@antfu/eslint-config": "^5.2.1",
"@iconify-json/devicon": "^1.2.43",
"@iconify-json/logos": "^1.2.9",
"@iconify-json/lucide": "^1.2.66",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/twemoji": "^1.2.4",
"@iconify-json/vscode-icons": "^1.2.30",
"@nuxt/content": "3.6.3",
"@nuxt/eslint": "1.9.0",
"@nuxt/ui": "^4.0.0-alpha.1",
"@nuxtjs/i18n": "10.0.6",
"@pinia/nuxt": "^0.11.2",
"@tailwindcss/typography": "^0.5.16",
"eslint": "^9.0.0",
"nuxt": "^4.0.3",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"typescript": "^5.6.3",
"vue": "^3.5.20",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@vueuse/math": "14.0.0-alpha.0",
"@vueuse/nuxt": "^13.9.0",
"vue-tsc": "^3.0.6"
}
}