chore: initialize project with package.json and tsconfig.json

- Added package.json for project dependencies and scripts
- Included tsconfig.json for TypeScript configuration
This commit is contained in:
LOUIS POTEVIN
2026-06-24 14:00:13 +02:00
parent f2a155c947
commit 15bc86b5a6
6 changed files with 4857 additions and 135 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "louis-potevin-dev",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "Portfolio Louis Potevin — louis-potevin.dev. Astro + Nova Design System.",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.3",
"@lucide/astro": "^1.21.0",
"@unkn0wndo3s/nova-design-system": "^1.2.1",
"astro": "^7.0.2",
"simple-icons-astro": "^16.1.0",
"three": "^0.184.0"
},
"devDependencies": {
"@types/three": "^0.184.0",
"sass": "^1.101.0"
}
}