kiahk 0.1.2 → 0.1.3

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 +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,10 +4,16 @@
4
4
 
5
5
  # kiahk (JavaScript / TypeScript)
6
6
 
7
+ [![npm version](https://img.shields.io/npm/v/kiahk.svg)](https://www.npmjs.com/package/kiahk)
8
+ [![npm downloads](https://img.shields.io/npm/dm/kiahk.svg)](https://www.npmjs.com/package/kiahk)
9
+ [![bundle size](https://img.shields.io/bundlephobia/minzip/kiahk?label=min%2Bgzip)](https://bundlephobia.com/package/kiahk)
10
+ [![license](https://img.shields.io/npm/l/kiahk.svg)](../LICENSE)
11
+
7
12
  Coptic calendar arithmetic — date conversion, Easter, and feast days. The reference port of [kiahk](https://github.com/amir-magdy-of-wizardlabz/kiahk). Identical results to all other ports against `core/test-vectors.json`.
8
13
 
9
14
  Works in **Node.js and the browser** — no Node-only APIs at runtime.
10
15
 
16
+ **Package:** <https://www.npmjs.com/package/kiahk>
11
17
  **Live demo:** <https://raw.githack.com/amir-magdy-of-wizardlabz/kiahk/master/demo/index.html>
12
18
 
13
19
  ## Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kiahk",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Coptic calendar arithmetic — date conversion, Easter, and feast days. Works in Node and the browser.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",