@theholocron/postman-client 0.11.4 → 1.0.0

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 -2
package/README.md CHANGED
@@ -67,4 +67,4 @@ await postman.specs.updateFile(
67
67
 
68
68
  ## Status
69
69
 
70
- `v0.8.0` — published on npm. APIs may shift before v1.
70
+ `v0.11.3` — published on npm. APIs may shift before v1.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/postman-client",
3
- "version": "0.11.4",
3
+ "version": "1.0.0",
4
4
  "description": "A TypeScript client for the Postman API",
5
5
  "homepage": "https://github.com/theholocron/clients/tree/main/packages/postman-client#readme",
6
6
  "bugs": "https://github.com/theholocron/clients/issues",
@@ -11,7 +11,15 @@
11
11
  },
12
12
  "license": "GPL-3.0",
13
13
  "author": "Newton Koumantzelis",
14
+ "keywords": [
15
+ "postman",
16
+ "collections",
17
+ "typescript",
18
+ "http-client",
19
+ "api"
20
+ ],
14
21
  "type": "module",
22
+ "sideEffects": false,
15
23
  "main": "./dist/index.mjs",
16
24
  "exports": {
17
25
  ".": {
@@ -21,7 +29,7 @@
21
29
  }
22
30
  },
23
31
  "dependencies": {
24
- "@theholocron/http-client": "^0.8.0"
32
+ "@theholocron/http-client": "^0.11.5"
25
33
  },
26
34
  "devDependencies": {
27
35
  "@types/node": "^26.1.1",