From a0a607d5bcb273b522d116fb455fe29a103c6c40 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Thu, 22 Aug 2024 17:44:44 +0100 Subject: [PATCH] feat: update version and add publish config - Bump version from 0.0.0 to 0.1.0 - Add publish configuration to include necessary files - Include .ts files, LICENSE, README.md, and deno.json --- deno.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 2802555..c520764 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@ryoppippi/curxy", - "version": "0.0.0", + "version": "0.1.0", "exports": "./main.ts", "tasks": { "dev": "deno run --watch main.ts", @@ -18,5 +18,13 @@ "ufo": "npm:ufo@^1.5.3", "untun": "npm:untun@^0.1.3", "yoctocolors": "npm:yoctocolors@^2.1.1" + }, + "publish": { + "include": [ + "./*.ts", + "LICENSE", + "README.md", + "deno.json" + ] } }