@audio/synth-osc 1.0.0 → 1.0.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 — oscillator as a generator: no input bus, phase in closure.
1
+ // atom manifest — oscillator as a generator: no input bus, phase in closure.
2
2
 
3
3
  import { sine, square, sawtooth, triangle } from 'periodic-function'
4
4
 
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@audio/synth-osc",
3
- "version": "1.0.0",
4
- "description": "Oscillator \u2014 sine/square/sawtooth/triangle with detune (wraps periodic-function)",
3
+ "version": "1.0.1",
4
+ "description": "Oscillator sine/square/sawtooth/triangle with detune (wraps periodic-function)",
5
5
  "type": "module",
6
6
  "sideEffects": false,
7
7
  "main": "osc.js",
8
8
  "exports": {
9
9
  ".": "./osc.js",
10
10
  "./package.json": "./package.json",
11
- "./audio-module": "./audio-module.js"
11
+ "./atom": "./atom.js"
12
12
  },
13
13
  "files": [
14
14
  "osc.js",
15
- "audio-module.js"
15
+ "atom.js"
16
16
  ],
17
17
  "dependencies": {
18
18
  "periodic-function": "^2.1.0"
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "audio-module": "./audio-module.js"
34
+ "atom": "./atom.js"
35
35
  }