From 65d71e03972fec6d40f24c8a57c9fd10ade2a6ec Mon Sep 17 00:00:00 2001 From: izure Date: Wed, 13 Nov 2024 02:40:13 +0900 Subject: [PATCH] chore: prepare for JSR distribution --- .vscode/settings.json | 3 +++ deno.json | 21 +++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 deno.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f48595f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "deno.enable": false +} \ No newline at end of file diff --git a/deno.json b/deno.json new file mode 100644 index 0000000..e1d6307 --- /dev/null +++ b/deno.json @@ -0,0 +1,21 @@ +{ + "name": "@izure/serializable-bptree", + "version": "0.0.1", + "description": "Store the B+tree flexibly, not only in-memory.", + "author": "izure1 ", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/izure1/serializable-bptree.git" + }, + "exports": { + ".": "./src/index.ts" + }, + "publish": { + "include": [ + "LICENSE", + "README.md", + "src/**/*.ts" + ] + } +}