init project

This commit is contained in:
Michael Czechowski
2025-05-13 18:10:40 +02:00
commit c46d6efd6b
22 changed files with 3255 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "code-crispies",
"version": "1.0.0",
"description": "An interactive platform for learning CSS through practical challenges",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest"
},
"keywords": [
"css",
"html",
"learning",
"interactive",
"education"
],
"author": "Michael Czechowski <mail@dailysh.it>",
"license": "Copyright Michael Czechowski 2025",
"devDependencies": {
"vite": "^6.3.5",
"vitest": "^3.1.3"
}
}