@audio/effect-exciter 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
|
-
//
|
|
1
|
+
// atom manifest — wraps the exciter atom; SVF filter state, no sizing params —
|
|
2
2
|
// every param stays live, per-channel state is just the running filter integrators.
|
|
3
3
|
|
|
4
4
|
import exciterFn from './exciter.js'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@audio/effect-exciter",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Exciter — psychoacoustic harmonic synthesis for presence/air",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./exciter.js",
|
|
10
10
|
"./package.json": "./package.json",
|
|
11
|
-
"./
|
|
11
|
+
"./atom": "./atom.js"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"exciter.js",
|
|
15
|
-
"
|
|
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
|
-
"
|
|
40
|
+
"atom": "./atom.js"
|
|
41
41
|
}
|