commit 351bd046baa96d12ef8d29322b7ed5d5add51a3f Author: DebaucheryLibrarian Date: Tue Oct 22 01:50:21 2024 +0200 Initial commit. 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" +}