fugu-api-data 1.22.0 → 1.23.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fugu-api-data",
3
- "version": "1.22.0",
3
+ "version": "1.23.0",
4
4
  "description": "Data about Project Fugu 🐡 APIs.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,6 +24,6 @@
24
24
  "homepage": "https://github.com/tomayac/fugu-api-data#readme",
25
25
  "devDependencies": {
26
26
  "node-fetch": "^3.3.2",
27
- "prettier": "^3.6.0"
27
+ "prettier": "^3.6.2"
28
28
  }
29
29
  }
package/patterns.js CHANGED
@@ -809,4 +809,14 @@ const patterns = {
809
809
  blinkFeatureID: 5401,
810
810
  chromeStatusID: 6494349985841152,
811
811
  },
812
+ 'Web Install': {
813
+ regEx: /\bnavigator\.install\s*\(/g,
814
+ where: 'JavaScript',
815
+ supported: (async () => 'install' in navigator)(),
816
+ featureDetection: `(async () => 'install' in navigator)()`,
817
+ documentation:
818
+ 'https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/WebInstall/explainer.md',
819
+ blinkFeatureID: undefined,
820
+ chromeStatusID: 5183481574850560,
821
+ },
812
822
  };
package/patterns.mjs CHANGED
@@ -809,4 +809,14 @@ export default {
809
809
  blinkFeatureID: 5401,
810
810
  chromeStatusID: 6494349985841152,
811
811
  },
812
+ 'Web Install': {
813
+ regEx: /\bnavigator\.install\s*\(/g,
814
+ where: 'JavaScript',
815
+ supported: (async () => 'install' in navigator)(),
816
+ featureDetection: `(async () => 'install' in navigator)()`,
817
+ documentation:
818
+ 'https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/WebInstall/explainer.md',
819
+ blinkFeatureID: undefined,
820
+ chromeStatusID: 5183481574850560,
821
+ },
812
822
  };