@gjsify/web-polyfills 0.4.42 → 0.4.44

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 +27 -0
  2. package/package.json +19 -19
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @gjsify/web-polyfills
2
+
3
+ Meta package that pulls every `@gjsify` Web API polyfill as a single dependency — fetch, streams, webcrypto, websocket, XMLHttpRequest, WebAssembly, Web Audio, WebRTC, EventSource, WebStorage, and more. Contains no runtime code of its own; used by `create-app` templates and CLI scaffolds.
4
+
5
+ Part of the [gjsify](https://github.com/gjsify/gjsify) project — Node.js and Web APIs for GJS (GNOME JavaScript).
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ gjsify install @gjsify/web-polyfills
11
+
12
+ # npm or yarn also work (e.g. adding it to an existing project):
13
+ npm install @gjsify/web-polyfills
14
+ yarn add @gjsify/web-polyfills
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ ```typescript
20
+ // Import once to pull all Web API polyfills into your dependency tree.
21
+ // Individual packages register their globals via --globals auto at build time.
22
+ import '@gjsify/web-polyfills';
23
+ ```
24
+
25
+ ## License
26
+
27
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gjsify/web-polyfills",
3
- "version": "0.4.42",
3
+ "version": "0.4.44",
4
4
  "description": "Meta package: all @gjsify Web API polyfill packages as dependencies",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -11,24 +11,24 @@
11
11
  "meta"
12
12
  ],
13
13
  "dependencies": {
14
- "@gjsify/abort-controller": "^0.4.42",
15
- "@gjsify/compression-streams": "^0.4.42",
16
- "@gjsify/dom-events": "^0.4.42",
17
- "@gjsify/dom-exception": "^0.4.42",
18
- "@gjsify/domparser": "^0.4.42",
19
- "@gjsify/eventsource": "^0.4.42",
20
- "@gjsify/fetch": "^0.4.42",
21
- "@gjsify/formdata": "^0.4.42",
22
- "@gjsify/gamepad": "^0.4.42",
23
- "@gjsify/message-channel": "^0.4.42",
24
- "@gjsify/web-globals": "^0.4.42",
25
- "@gjsify/web-streams": "^0.4.42",
26
- "@gjsify/webassembly": "^0.4.42",
27
- "@gjsify/webaudio": "^0.4.42",
28
- "@gjsify/webcrypto": "^0.4.42",
29
- "@gjsify/websocket": "^0.4.42",
30
- "@gjsify/webstorage": "^0.4.42",
31
- "@gjsify/xmlhttprequest": "^0.4.42"
14
+ "@gjsify/abort-controller": "^0.4.44",
15
+ "@gjsify/compression-streams": "^0.4.44",
16
+ "@gjsify/dom-events": "^0.4.44",
17
+ "@gjsify/dom-exception": "^0.4.44",
18
+ "@gjsify/domparser": "^0.4.44",
19
+ "@gjsify/eventsource": "^0.4.44",
20
+ "@gjsify/fetch": "^0.4.44",
21
+ "@gjsify/formdata": "^0.4.44",
22
+ "@gjsify/gamepad": "^0.4.44",
23
+ "@gjsify/message-channel": "^0.4.44",
24
+ "@gjsify/web-globals": "^0.4.44",
25
+ "@gjsify/web-streams": "^0.4.44",
26
+ "@gjsify/webassembly": "^0.4.44",
27
+ "@gjsify/webaudio": "^0.4.44",
28
+ "@gjsify/webcrypto": "^0.4.44",
29
+ "@gjsify/websocket": "^0.4.44",
30
+ "@gjsify/webstorage": "^0.4.44",
31
+ "@gjsify/xmlhttprequest": "^0.4.44"
32
32
  },
33
33
  "gjsify": {
34
34
  "runtimes": {