shadow-dom-selector 5.0.0 → 5.0.1

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 +3 -5
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -197,24 +197,22 @@ Either the async methods or the async dot notation allow you to to specify the a
197
197
 
198
198
  ## Install
199
199
 
200
- The package needs the [get-promisable-result](https://github.com/elchininet/get-promisable-result) package as a peer dependency.
201
-
202
200
  #### npm
203
201
 
204
202
  ```bash
205
- npm install get-promisable-result shadow-dom-selector
203
+ npm install shadow-dom-selector
206
204
  ```
207
205
 
208
206
  #### yarn
209
207
 
210
208
  ```bash
211
- yarn add get-promisable-result shadow-dom-selector
209
+ yarn add shadow-dom-selector
212
210
  ```
213
211
 
214
212
  #### PNPM
215
213
 
216
214
  ```bash
217
- pnpm add get-promisable-result shadow-dom-selector
215
+ pnpm add shadow-dom-selector
218
216
  ```
219
217
 
220
218
  #### In the browser
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shadow-dom-selector",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "A very small JavaScript utility to query DOM elements through the Shadow Dom subtrees in a sync or an async way",
5
5
  "keywords": [
6
6
  "query-selector",
@@ -62,7 +62,6 @@
62
62
  "@types/eslint": "^9.6.1",
63
63
  "@types/node": "^22.8.7",
64
64
  "eslint": "^9.14.0",
65
- "get-promisable-result": "^1.0.1",
66
65
  "globals": "^15.11.0",
67
66
  "nyc": "^17.1.0",
68
67
  "playwright-test-coverage": "^1.2.12",
@@ -74,7 +73,7 @@
74
73
  "typescript": "^5.6.3",
75
74
  "typescript-eslint": "^8.12.2"
76
75
  },
77
- "peerDependencies": {
78
- "get-promisable-result": "^1.0.0"
76
+ "dependencies": {
77
+ "get-promisable-result": "^1.0.1"
79
78
  }
80
79
  }