extension 4.1.18 → 4.1.19

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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  [discord-url]: https://discord.gg/v9h2RgeTSN
9
9
  [snyk-image]: https://snyk.io/test/github/extension-js/extension.js/badge.svg?color=0971fe
10
10
  [snyk-url]: https://snyk.io/test/github/extension-js/extension.js
11
- [scorecard-image]: https://api.scorecard.dev/projects/github.com/extension-js/extension.js/badge
11
+ [scorecard-image]: https://img.shields.io/ossf-scorecard/github.com/extension-js/extension.js?label=OpenSSF%20Scorecard&style=flat&color=0971fe
12
12
  [scorecard-url]: https://scorecard.dev/viewer/?uri=github.com/extension-js/extension.js
13
13
 
14
14
  # Extension.js [![Version][npm-version-image]][npm-version-url] [![Stars][stars-image]][stars-url] [![CI][action-image]][action-url] [![Discord][discord-image]][discord-url] [![OpenSSF Scorecard][scorecard-image]][scorecard-url]
@@ -218,6 +218,10 @@ Sponsors help the project ship faster releases, better developer experience, and
218
218
 
219
219
  Documentation is hosted by [Mintlify](https://mintlify.com/?utm_medium=infrastructure&utm_source=extensionjs) through its open source program. Tiers and placement are listed in [BACKERS.md](https://github.com/extension-js/extension.js/blob/main/BACKERS.md).
220
220
 
221
+ ## Contributing
222
+
223
+ Bug reports and pull requests are welcome. Read [docs/CONTRIBUTING.md](docs/CONTRIBUTING.md) for the dev setup, the test commands, and what a pull request needs to carry.
224
+
221
225
  ## License
222
226
 
223
227
  MIT (c) Cezar Augusto and the Extension.js authors.
package/dist/cli.cjs CHANGED
@@ -8073,8 +8073,9 @@ AI assistants
8073
8073
 
8074
8074
  Browser-specific configuration
8075
8075
  - Use browser prefixes in manifest.json for browser-specific fields:
8076
- ${messages_code('{"firefox:manifest": 2, "chrome:manifest": 3}')}
8077
- This applies manifest v2 to Firefox only, v3 to Chrome/Edge.
8076
+ ${messages_code('{"firefox:manifest_version": 2, "chromium:manifest_version": 3}')}
8077
+ This applies manifest v2 to Firefox only, v3 to every Chromium-based browser.
8078
+ ${messages_code('chrome:')} and ${messages_code('edge:')} apply only to that one browser.
8078
8079
 
8079
8080
  Centralized logger (for AI & CI)
8080
8081
  - Logs from all contexts are centralized by the manager extension and streamed to the CLI.
package/package.json CHANGED
@@ -38,7 +38,7 @@
38
38
  "extension": "./bin/extension.cjs"
39
39
  },
40
40
  "name": "extension",
41
- "version": "4.1.18",
41
+ "version": "4.1.19",
42
42
  "description": "The cross-browser extension framework. Build Chrome, Edge, Firefox, and Safari extensions with no build configuration.",
43
43
  "homepage": "https://extension.js.org/",
44
44
  "bugs": {
@@ -106,24 +106,24 @@
106
106
  "vivaldi-location2": "2.1.1",
107
107
  "waterfox-location": "2.1.1",
108
108
  "yandex-location": "2.1.1",
109
- "extension-create": "4.1.18",
110
- "extension-develop": "4.1.18",
111
- "extension-install": "4.1.18",
109
+ "extension-create": "4.1.19",
110
+ "extension-develop": "4.1.19",
111
+ "extension-install": "4.1.19",
112
112
  "commander": "^15.0.0",
113
113
  "pintor": "0.3.0",
114
114
  "semver": "^7.7.3",
115
115
  "unique-names-generator": "^4.7.1",
116
116
  "ws": "^8.20.1",
117
117
  "update-check": "^1.5.4",
118
- "wsl-support": "0.1.0"
118
+ "wsl-support": "0.1.0",
119
+ "@types/chrome": "*",
120
+ "@types/node": "*",
121
+ "@types/webextension-polyfill": "*"
119
122
  },
120
123
  "devDependencies": {
121
124
  "@rslib/core": "^1.0.0",
122
- "@types/chrome": "^0.1.33",
123
125
  "@types/cross-spawn": "^6.0.6",
124
- "@types/node": "^26",
125
126
  "@types/semver": "^7.7.1",
126
- "@types/webextension-polyfill": "0.12.4",
127
127
  "@types/ws": "^8.18.1",
128
128
  "webextension-polyfill": "^0.12.0",
129
129
  "tsconfig": "*",