init repository template

This commit is contained in:
Dennis Schoepf 2026-02-16 21:41:08 +01:00
parent 2c65bc585e
commit 51c42eb80d
13 changed files with 450 additions and 37 deletions

View file

@ -1,14 +1,18 @@
{
"name": "dnsc-io",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"astro": "^5.17.1"
}
}
"name": "dnsc-io",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "biome check --write ."
},
"dependencies": {
"astro": "^5.17.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.1"
}
}