From 87ff952f8ec2d7227f100a0b63578fef41703ce2 Mon Sep 17 00:00:00 2001 From: The Magician Date: Sat, 2 Dec 2023 17:27:55 +0000 Subject: [PATCH] Add dependency on tarotcard.css library --- .gitignore | 1 + package-lock.json | 17 +++++++++++++++++ package.json | 5 +++++ 3 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 package-lock.json create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2658d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..8ef450e --- /dev/null +++ b/package-lock.json @@ -0,0 +1,17 @@ +{ + "name": "themagician.cc", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "@themagician23/tarotcard.css": "^0.0.1" + } + }, + "node_modules/@themagician23/tarotcard.css": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@themagician23/tarotcard.css/-/tarotcard.css-0.0.1.tgz", + "integrity": "sha512-upnP7AKasrk35xa2g3VIwzY3KDOpJaN1d0bfBw3WkdMhgx/t0WOdwIvjMSIio4XmLFgxmErJAvgaDFZr35TEuA==" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..fbd3d78 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "@themagician23/tarotcard.css": "^0.0.1" + } +}