blocket.js 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 (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -107,3 +107,11 @@ Searches for ads on Blocket based on the provided query parameters.
107
107
  - `include` (string, optional): Additional filters or fields to include (e.g., 'image,description').
108
108
  - `fetchOptions` (optional): Additional options to pass to the underlying fetch request.
109
109
  - Returns: A promise that resolves to an array of `BlocketAd` objects.
110
+
111
+ ## License
112
+
113
+ This project is licensed under a license that allows free use provided that proper credit is given to the original author, Philip Rutberg. See the LICENSE file for details.
114
+
115
+ ## Star History
116
+
117
+ [![Star History Chart](https://api.star-history.com/svg?repos=rutbergphilip/blocket.js&type=Date)](https://star-history.com/#rutbergphilip/blocket.js&Date)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blocket.js",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A user-friendly js wrapper for blocket.se",
5
5
  "keywords": [
6
6
  "blocket",
@@ -13,6 +13,7 @@
13
13
  "author": "Philip Rutberg <philiprutberg00@gmail.com> (https://philiprutberg.com/)",
14
14
  "homepage": "https://github.com/rutbergphilip/blocket.js#readme",
15
15
  "main": "dist/index.js",
16
+ "types": "dist/index.d.ts",
16
17
  "directories": {
17
18
  "lib": "lib"
18
19
  },