@careflair/common 1.0.0 → 1.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.
Files changed (1) hide show
  1. package/package.json +15 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@careflair/common",
3
- "version": "1.0.0",
4
- "description": "A package containing multiple Zod-based validation schemas for CareFlair.",
3
+ "version": "1.0.2",
4
+ "description": "Shared assets for CareFlair",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
@@ -21,5 +21,17 @@
21
21
  },
22
22
  "files": [
23
23
  "dist"
24
- ]
24
+ ],
25
+ "exports": {
26
+ ".": "./dist/index.js",
27
+ "./*": "./dist/*"
28
+ },
29
+ "typesVersions": {
30
+ "*": {
31
+ "*": [
32
+ "dist/*"
33
+ ]
34
+ }
35
+ },
36
+ "sideEffects": false
25
37
  }