@wexample/js-helpers 0.0.21 → 0.0.22

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 +1 -1
  2. package/package.json +18 -14
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @wexample/js-helpers
2
2
 
3
- Version: 0.0.21
3
+ Version: 0.0.22
4
4
 
5
5
  Modern, type-safe helper utilities for Wexample projects.
6
6
 
package/package.json CHANGED
@@ -1,25 +1,13 @@
1
1
  {
2
2
  "name": "@wexample/js-helpers",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "Modern, type-safe helper utilities for Wexample projects.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "exports": {
8
- "./*": {
9
- "types": "./dist/*.d.ts",
10
- "import": "./dist/*.js",
11
- "require": "./dist/*.cjs"
12
- },
13
- "./package.json": "./package.json"
14
- },
15
- "files": [
16
- "dist"
17
- ],
18
7
  "sideEffects": false,
19
8
  "scripts": {
20
9
  "clean": "rm -rf dist",
21
10
  "build": "tsup",
22
- "typecheck": "tsc --noEmit",
23
11
  "lint": "npm run typecheck",
24
12
  "prepublishOnly": "npm run build"
25
13
  },
@@ -39,5 +27,21 @@
39
27
  "tsup": "^8.5.1",
40
28
  "typescript": "^5.9.3"
41
29
  },
42
- "repository": "https://github.com/wexample/js-helpers"
30
+ "repository": "https://github.com/wexample/js-helpers",
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "exports": {
35
+ "./*": {
36
+ "types": "./dist/*.d.ts",
37
+ "default": "./dist/*.js"
38
+ }
39
+ },
40
+ "typesVersions": {
41
+ "*": {
42
+ "*": [
43
+ "dist/*"
44
+ ]
45
+ }
46
+ }
43
47
  }