Add packaging
authorNick Downing <nick@ndcode.org>
Fri, 7 Jan 2022 05:31:14 +0000 (16:31 +1100)
committerNick Downing <nick@ndcode.org>
Fri, 7 Jan 2022 05:48:13 +0000 (16:48 +1100)
link.sh [new file with mode: 0755]
package.json [new file with mode: 0644]

diff --git a/link.sh b/link.sh
new file mode 100755 (executable)
index 0000000..41f600e
--- /dev/null
+++ b/link.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+rm -rf node_modules package-lock.json
+npm install
+npm link
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..57585e3
--- /dev/null
@@ -0,0 +1,26 @@
+{
+  "name": "@ndcode/logjson",
+  "version": "0.1.0",
+  "description": "JSON-structured database with caching and transaction ability",
+  "keywords": [
+    "JSON",
+    "database",
+    "cache",
+    "caching",
+    "transaction"
+  ],
+  "homepage": "https://www.ndcode.org",
+  "author": "Nick Downing <nick@ndcode.org>",
+  "license": "MIT",
+  "repository": {
+    "type": "git",
+    "url": "https://git.ndcode.org/public/logjson.git"
+  },
+  "bugs": {
+    "email": "nick@ndcode.org"
+  },
+  "main": "index.mjs",
+  "directories": {},
+  "dependencies": {},
+  "devDependencies": {}
+}