query-selector-shadow-dom-modern 1.0.1 → 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 +2 -0
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # query-selector-shadow-dom-modern
2
2
 
3
+ [![Release](https://github.com/kaixinol/query-selector-shadow-dom-modern/actions/workflows/release.yml/badge.svg)](https://github.com/kaixinol/query-selector-shadow-dom-modern/actions/workflows/release.yml)
4
+
3
5
  Modern drop-in replacement for [query-selector-shadow-dom](https://www.npmjs.com/package/query-selector-shadow-dom). Zero dependencies, full TypeScript support.
4
6
 
5
7
  querySelector that can pierce Shadow DOM roots without knowing the path through nested shadow roots. Useful for automated testing of Web Components (Selenium, Puppeteer, Playwright, etc.).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "query-selector-shadow-dom-modern",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Modern drop-in replacement for query-selector-shadow-dom — querySelector that pierces Shadow DOM roots without knowing the path",
5
5
  "type": "module",
6
6
  "main": "dist/umd/index.cjs",
@@ -28,6 +28,14 @@
28
28
  "testing"
29
29
  ],
30
30
  "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/kaixinol/query-selector-shadow-dom-modern.git"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/kaixinol/query-selector-shadow-dom-modern/issues"
37
+ },
38
+ "homepage": "https://github.com/kaixinol/query-selector-shadow-dom-modern#readme",
31
39
  "devDependencies": {
32
40
  "@rollup/plugin-typescript": "^12.1.2",
33
41
  "@types/jsdom": "^30.0.0",