@sv443-network/userutils 8.0.1 → 8.0.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @sv443-network/userutils
2
2
 
3
+ ## 8.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a8bca8f: Added `exports.types` in addition to just `types` in package.json
8
+
3
9
  ## 8.0.1
4
10
 
5
11
  ### Patch Changes
@@ -8,7 +8,7 @@
8
8
  // ==UserLibrary==
9
9
  // @name UserUtils
10
10
  // @description Library with various utilities for userscripts - register listeners for when CSS selectors exist, intercept events, create persistent & synchronous data stores, modify the DOM more easily and more
11
- // @version 8.0.1
11
+ // @version 8.0.2
12
12
  // @license MIT
13
13
  // @copyright Sv443 (https://github.com/Sv443)
14
14
 
package/package.json CHANGED
@@ -1,18 +1,19 @@
1
1
  {
2
2
  "name": "@sv443-network/userutils",
3
3
  "libName": "UserUtils",
4
- "version": "8.0.1",
4
+ "version": "8.0.2",
5
5
  "description": "Library with various utilities for userscripts - register listeners for when CSS selectors exist, intercept events, create persistent & synchronous data stores, modify the DOM more easily and more",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
8
+ "types": "dist/lib/index.d.ts",
8
9
  "exports": {
9
10
  ".": {
10
11
  "import": "./dist/index.js",
11
12
  "require": "./dist/index.cjs",
12
- "browser": "./dist/index.global.js"
13
+ "browser": "./dist/index.global.js",
14
+ "types": "./dist/lib/index.d.ts"
13
15
  }
14
16
  },
15
- "types": "dist/lib/index.d.ts",
16
17
  "type": "module",
17
18
  "scripts": {
18
19
  "lint": "tsc --noEmit && eslint .",