From 351bd046baa96d12ef8d29322b7ed5d5add51a3f Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Tue, 22 Oct 2024 01:50:21 +0200 Subject: [PATCH] Initial commit. --- .gitignore | 3 +++ package-lock.json | 13 +++++++++++++ package.json | 20 ++++++++++++++++++++ 3 files changed, 36 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..0dbe869 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +config/ +!config/default.js diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..b9dc48d --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "traxxx-utils", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "traxxx-utils", + "version": "1.0.0", + "license": "ISC" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..65efe20 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "traxxx-utils", + "version": "1.0.0", + "description": "Common utilities for traxxx core and web.", + "main": "src/app.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://gitea.unknown.name/DebaucheryLibrarian/traxxx-utils.git" + }, + "keywords": [ + "traxxx", + "database", + "adult" + ], + "author": "DebaucheryLibrarian", + "license": "ISC" +}