heatspot 0.2.0 → 0.2.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.
package/README.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # heatspot
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/heatspot.svg)](https://www.npmjs.com/package/heatspot)
4
+ [![npm downloads](https://img.shields.io/npm/dm/heatspot.svg)](https://www.npmjs.com/package/heatspot)
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-%233178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
6
+ [![license](https://img.shields.io/github/license/Davidhanson90/heatspot.svg)](LICENSE)
7
+ [![verify](https://github.com/Davidhanson90/heatspot/actions/workflows/verify-main.yml/badge.svg)](https://github.com/Davidhanson90/heatspot/actions/workflows/verify-main.yml)
8
+ [![publish](https://github.com/Davidhanson90/heatspot/actions/workflows/publish-npm.yml/badge.svg)](https://github.com/Davidhanson90/heatspot/actions/workflows/publish-npm.yml)
9
+
3
10
  `heatspot` is an ESM TypeScript library for capturing pointer heat data and rendering an embeddable heatmap web component.
4
11
 
5
12
  ## Features
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heatspot",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A tiny ESM TypeScript library.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,7 +12,8 @@
12
12
  }
13
13
  },
14
14
  "files": [
15
- "dist"
15
+ "dist",
16
+ "assets/example.jpg"
16
17
  ],
17
18
  "scripts": {
18
19
  "prebuild": "rimraf dist",