Files
artchat/package.json
Arthur DANJOU 5dadb20607 feat(infinite-canvas): add infinite canvas component with drag and zoom functionality
- Implemented InfiniteCanvas.vue for rendering an infinite canvas with drag and zoom capabilities.
- Created useInfiniteCanvas composable for managing canvas state and interactions.
- Added useImagePreloader composable for preloading images and videos.
- Introduced constants for physics, touch interactions, viewport settings, and zoom defaults.
- Developed utility functions for touch handling and media type detection.
- Defined TypeScript types for canvas items, grid items, and composables.
- Registered components and composables in the Nuxt module.
- Added screenshot generation functionality for content files.
- Updated package.json to include capture-website dependency.
2025-09-05 11:01:11 +02:00

51 lines
1.4 KiB
JSON

{
"name": "artsite",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --host",
"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/ph": "^1.2.2",
"@iconify-json/simple-icons": "^1.2.50",
"@iconify-json/twemoji": "^1.2.4",
"@iconify-json/vscode-icons": "^1.2.30",
"@nuxt/content": "3.6.3",
"@nuxt/eslint": "1.9.0",
"@nuxt/image": "^1.11.0",
"@nuxt/ui": "^4.0.0-alpha.1",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/i18n": "10.0.6",
"@pinia/nuxt": "^0.11.2",
"@tailwindcss/typography": "^0.5.16",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"@vueuse/motion": "^3.0.3",
"better-sqlite3": "^12.2.0",
"capture-website": "^4.2.0",
"eslint": "^9.0.0",
"nuxt": "^4.1.0",
"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/nuxt": "^13.9.0",
"vue-tsc": "^3.0.6"
}
}