Files
artsite/package.json
Arthur DANJOU f171be4460 feat: integrate evlog and enhance logging across API endpoints
- Added evlog and nuxthub dependencies in nuxt.config.ts and package.json.
- Implemented logging in various API endpoints (activity, contact, education, experiences, languages, projects, skills, stats, status-page, resumes) to track data retrieval and errors.
- Enhanced error handling in Wakatime fetch functions to log errors with additional context.
- Updated worker-configuration.d.ts to remove eslint-disable comments for better code quality.
2026-02-16 21:43:02 +01:00

55 lines
1.4 KiB
JSON

{
"name": "artsite",
"private": true,
"author": {
"email": "arthurdanjou@outlook.fr",
"name": "Arthur Danjou",
"url": "https://arthurdanjou.fr"
},
"packageManager": "bun@1.3.8",
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev",
"preview": "bun run build && wrangler dev",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"deploy": "bun run cf-typegen && bun run build && wrangler deploy",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@evlog/nuxthub": "^1.0.0",
"@libsql/client": "^0.17.0",
"@nuxt/content": "3.11.2",
"@nuxt/eslint": "1.15.1",
"@nuxt/ui": "^4.4.0",
"@nuxthub/core": "0.10.6",
"@nuxtjs/mdc": "0.20.1",
"@nuxtjs/seo": "3.4.0",
"@vueuse/core": "^14.2.1",
"@vueuse/math": "^14.2.1",
"better-sqlite3": "^12.6.2",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"evlog": "^1.9.0",
"nuxt": "4.3.1",
"nuxt-studio": "1.3.2",
"vue": "3.5.28",
"vue-router": "5.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@iconify-json/devicon": "1.2.58",
"@iconify-json/file-icons": "^1.2.2",
"@iconify-json/logos": "^1.2.10",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/twemoji": "1.2.5",
"@iconify-json/vscode-icons": "1.2.42",
"@types/node": "25.2.3",
"@vueuse/nuxt": "14.2.1",
"eslint": "10.0.0",
"typescript": "^5.9.3",
"vue-tsc": "3.2.4",
"wrangler": "4.65.0"
}
}