json-seal 0.10.0 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,15 +1,18 @@
1
- # **jsonseal**
2
- ![npm version](https://img.shields.io/npm/v/json-seal)
3
- ![Deterministic JSON](https://img.shields.io/badge/Deterministic%20JSON-RFC%208785%20Compliant-success)
4
- ![crypto](https://img.shields.io/badge/crypto-RSA--PSS-green)
5
- ![dependencies](https://img.shields.io/badge/dependencies-0-brightgreen)
6
- ![types](https://img.shields.io/badge/types-TypeScript-blue)
7
- ![bundle size](https://img.shields.io/bundlephobia/minzip/json-seal)
8
- ![npm downloads](https://img.shields.io/npm/dm/json-seal)
9
-
10
- **A lightweight, zero‑dependency library for creating cryptographically signed, tamper‑proof JSON backups.**
11
-
12
- ---
1
+ <h1 align="center">json-seal</h1>
2
+
3
+ <p align="center">
4
+ <img src="https://github.com/cmyers/json-seal/actions/workflows/ci.yml/badge.svg?branch=main" alt="CI" />
5
+ <img src="https://img.shields.io/npm/v/json-seal" alt="npm version" />
6
+ <img src="https://img.shields.io/badge/Deterministic%20JSON-RFC%208785%20Compliant-success" alt="Deterministic JSON" />
7
+ <img src="https://img.shields.io/badge/dependencies-0-brightgreen" alt="dependencies" />
8
+ <img src="https://img.shields.io/badge/types-TypeScript-blue" alt="types" />
9
+ <img src="https://img.shields.io/bundlephobia/minzip/json-seal" alt="bundle size" />
10
+ <img src="https://img.shields.io/github/license/cmyers/json-seal" alt="license" />
11
+ </p>
12
+
13
+ <h3 align="center">
14
+ A lightweight, zero‑dependency library for creating cryptographically signed, tamper‑proof JSON backups.
15
+ </h3>
13
16
 
14
17
  ## **Why json‑seal**
15
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-seal",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "Create cryptographically signed, tamper‑proof JSON backups with zero dependencies.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",