@audio/effect-bitcrusher 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 bitcrusher atom; stateful hold/phase but no sizing
1
+ // atom manifest — wraps the bitcrusher atom; stateful hold/phase but no sizing
2
2
  // params — every param stays live, per-channel state is just the held sample + phase.
3
3
 
4
4
  import bitcrusherFn from './bitcrusher.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@audio/effect-bitcrusher",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Bitcrusher — sample-rate reduction + bit-depth quantization",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -8,11 +8,11 @@
8
8
  "exports": {
9
9
  ".": "./bitcrusher.js",
10
10
  "./package.json": "./package.json",
11
- "./audio-module": "./audio-module.js"
11
+ "./atom": "./atom.js"
12
12
  },
13
13
  "files": [
14
14
  "bitcrusher.js",
15
- "audio-module.js"
15
+ "atom.js"
16
16
  ],
17
17
  "keywords": [
18
18
  "audio",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "audio-module": "./audio-module.js"
40
+ "atom": "./atom.js"
41
41
  }