From eee7f3281de1bacb172f17d504c158355afa021c Mon Sep 17 00:00:00 2001 From: z0x Date: Sun, 17 Nov 2024 01:13:36 -0500 Subject: [PATCH] snowflake rewrite --- astro.config.mjs | 10 ++++------ package-lock.json | 43 ------------------------------------------- package.json | 3 --- 3 files changed, 4 insertions(+), 52 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 74e6db3..ef40c49 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,11 +1,9 @@ // @ts-check -import { defineConfig } from 'astro/config'; +import { defineConfig } from "astro/config"; -import tailwind from '@astrojs/tailwind'; - -import alpinejs from '@astrojs/alpinejs'; +import tailwind from "@astrojs/tailwind"; // https://astro.build/config export default defineConfig({ - integrations: [tailwind(), alpinejs()] -}); \ No newline at end of file + integrations: [tailwind()], +}); diff --git a/package-lock.json b/package-lock.json index 4641c55..6e039a6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,11 +8,8 @@ "name": "z0x.ca", "version": "0.0.1", "dependencies": { - "@astrojs/alpinejs": "^0.4.0", "@astrojs/check": "^0.9.4", "@astrojs/tailwind": "^5.1.2", - "@types/alpinejs": "^3.13.10", - "alpinejs": "^3.14.3", "astro": "^4.16.13", "motion": "^11.11.17", "tailwindcss": "^3.4.14", @@ -49,16 +46,6 @@ "node": ">=6.0.0" } }, - "node_modules/@astrojs/alpinejs": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@astrojs/alpinejs/-/alpinejs-0.4.0.tgz", - "integrity": "sha512-68BY1CA0XuielLW3WdX2sfh9F4sSTnFqQ//IE9AditbiYJ77HJDb4uZx07pTFDtr1jOMU7lCvH+iS9gmNafM1g==", - "license": "MIT", - "peerDependencies": { - "@types/alpinejs": "^3.0.0", - "alpinejs": "^3.0.0" - } - }, "node_modules/@astrojs/check": { "version": "0.9.4", "resolved": "https://registry.npmjs.org/@astrojs/check/-/check-0.9.4.tgz", @@ -1767,12 +1754,6 @@ "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==", "license": "MIT" }, - "node_modules/@types/alpinejs": { - "version": "3.13.10", - "resolved": "https://registry.npmjs.org/@types/alpinejs/-/alpinejs-3.13.10.tgz", - "integrity": "sha512-ah53tF6mWuuwerpDE7EHwbZErNDJQlsLISPqJhYj2RZ9nuTYbRknSkqebUd3igkhLIZKkPa7IiXjSn9qsU9O2w==", - "license": "MIT" - }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", @@ -1976,21 +1957,6 @@ "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==", "license": "MIT" }, - "node_modules/@vue/reactivity": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", - "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", - "license": "MIT", - "dependencies": { - "@vue/shared": "3.1.5" - } - }, - "node_modules/@vue/shared": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", - "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==", - "license": "MIT" - }, "node_modules/acorn": { "version": "8.14.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", @@ -2019,15 +1985,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/alpinejs": { - "version": "3.14.3", - "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.14.3.tgz", - "integrity": "sha512-cL8JBEDAm4UeVjTN5QnFl8QgMGUwxFn1GvQvu3RtfAHUrAPRahGihrsWpKnEK9L0QMqsAPk/R8MylMWKHaK33A==", - "license": "MIT", - "dependencies": { - "@vue/reactivity": "~3.1.1" - } - }, "node_modules/ansi-align": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", diff --git a/package.json b/package.json index ad86f2a..368c897 100644 --- a/package.json +++ b/package.json @@ -10,11 +10,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/alpinejs": "^0.4.0", "@astrojs/check": "^0.9.4", "@astrojs/tailwind": "^5.1.2", - "@types/alpinejs": "^3.13.10", - "alpinejs": "^3.14.3", "astro": "^4.16.13", "motion": "^11.11.17", "tailwindcss": "^3.4.14",