diff --git a/.gitignore b/.gitignore index 16d54bb..78f4b33 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,6 @@ pnpm-debug.log* # jetbrains setting folder .idea/ + +# local files +*.local* diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..76e80fa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "npm.packageManager": "bun" +} diff --git a/package.json b/package.json index 02a9a90..bf87ca1 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,15 @@ { - "name": "tutorato", - "type": "module", - "version": "0.0.1", - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "astro": "4.15.10" - } -} \ No newline at end of file + "name": "tutorato", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "astro": "4.15.10" + } +}