From 574de217cca23842e91cca0e5db0500b70aa78a7 Mon Sep 17 00:00:00 2001 From: Tommaso Allevi Date: Wed, 8 Nov 2023 10:40:50 +0100 Subject: [PATCH] Put license & keywords --- README.md | 3 +++ package.json | 10 +++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 85b3a71..8ebedf7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # SeqProto +[![Nodejs](https://github.com/oramasearch/seqproto/actions/workflows/nodejs.yml/badge.svg)](https://github.com/oramasearch/seqproto/actions/workflows/nodejs.yml) +![npm package minimized gzipped size (select exports)](https://img.shields.io/bundlejs/size/seqproto) + This library provides a simple way to serialize and deserialize objects in binary format. Install with: diff --git a/package.json b/package.json index d64a1a2..cdcbb83 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "description": "More than fast serialization / deserialization utility for your structured data", "main": "./dist/cjs/index.js", "types": "./dist/cjs/index.d.ts", + "license": "Apache-2.0", "exports": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs" @@ -23,7 +24,14 @@ "benchmark:serdes": "node --import tsx tests/serdes.benchmark.ts", "test": "node --import tsx tests/*.test.ts" }, - "keywords": [], + "keywords": [ + "serialization", + "deserialization", + "performance", + "structured", + "protocol", + "json" + ], "author": { "name": "Tommaso Allevi", "email": "tomallevi@gmail.com",