@jphil/bookwhen-client 0.2.4 → 0.2.6

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 +10 -4
package/README.md CHANGED
@@ -69,7 +69,7 @@ Valid filters and includes for each method are detailed in the [API v2 docs](htt
69
69
 
70
70
  Services for the other models in the API are in the pipeline.
71
71
 
72
- N.B. This library is still a pre-1.0.0 WIP, please use accordingly!
72
+ N.B. This library is still a pre-1.0.0 WIP, please use accordingly, and pls make issues for any bugs!
73
73
 
74
74
  ## Configuration
75
75
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@jphil/bookwhen-client",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "TypeScript client for the Bookwhen API (v2)",
5
5
  "private": false,
6
- "main": "dist/index.js",
7
- "module": "dist/index.mjs",
8
- "types": "dist/index.d.ts",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
9
  "keywords": [
10
10
  "bookwhen",
11
11
  "booking",
@@ -63,6 +63,12 @@
63
63
  "axios": "^1.7.7",
64
64
  "zod": "^3.23.8"
65
65
  },
66
+ "exports": {
67
+ ".": {
68
+ "types": "./dist/index.d.ts",
69
+ "import": "./dist/index.js"
70
+ }
71
+ },
66
72
  "scripts": {
67
73
  "dev": "vitest",
68
74
  "build": "tsc",