@audio/effect-lofi 1.1.0 → 1.1.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.
@@ -1,4 +1,4 @@
1
- // audio-module manifest — wraps the lofi atom; buffer size is fs-only (not param-
1
+ // atom manifest — wraps the lofi atom; buffer size is fs-only (not param-
2
2
  // dependent, safe at any wow/flutter setting), so every param stays live. Each channel
3
3
  // gets a distinct noise seed so stereo material isn't crushed to a mono-identical
4
4
  // hiss/crackle bed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@audio/effect-lofi",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Lo-fi character — wow/flutter, vinyl noise, crackle, bandwidth ceiling (RC-20 class)",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -19,14 +19,14 @@
19
19
  "exports": {
20
20
  ".": "./lofi.js",
21
21
  "./package.json": "./package.json",
22
- "./audio-module": "./audio-module.js"
22
+ "./atom": "./atom.js"
23
23
  },
24
24
  "files": [
25
25
  "lofi.js",
26
- "audio-module.js"
26
+ "atom.js"
27
27
  ],
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
- "audio-module": "./audio-module.js"
31
+ "atom": "./atom.js"
32
32
  }