@thi.ng/colored-noise 1.0.11 → 1.0.13

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-02T18:09:03Z
3
+ - **Last updated**: 2023-03-27T19:05:48Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/blue.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ColoredNoiseOpts } from "./api.js";
1
+ import { type ColoredNoiseOpts } from "./api.js";
2
2
  /**
3
3
  * High-pass filtered noise. Opposite of {@link red}.
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/colored-noise",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Customizable O(1) ES6 generators for colored noise",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -25,7 +25,7 @@
25
25
  "license": "Apache-2.0",
26
26
  "scripts": {
27
27
  "build": "yarn clean && tsc --declaration",
28
- "clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
28
+ "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
29
29
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
30
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
31
31
  "doc:readme": "yarn doc:stats && tools:readme",
@@ -34,22 +34,22 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/binary": "^3.3.20",
38
- "@thi.ng/random": "^3.3.26"
37
+ "@thi.ng/binary": "^3.3.22",
38
+ "@thi.ng/random": "^3.3.28"
39
39
  },
40
40
  "devDependencies": {
41
- "@microsoft/api-extractor": "^7.34.2",
42
- "@thi.ng/api": "^8.7.3",
43
- "@thi.ng/dsp": "^4.3.5",
44
- "@thi.ng/dsp-io-wav": "^2.1.40",
45
- "@thi.ng/testament": "^0.3.11",
46
- "@thi.ng/text-canvas": "^2.4.31",
47
- "@thi.ng/transducers": "^8.3.35",
48
- "@thi.ng/vectors": "^7.6.5",
49
- "rimraf": "^4.1.2",
41
+ "@microsoft/api-extractor": "^7.34.4",
42
+ "@thi.ng/api": "^8.7.5",
43
+ "@thi.ng/dsp": "^4.3.10",
44
+ "@thi.ng/dsp-io-wav": "^2.1.45",
45
+ "@thi.ng/testament": "^0.3.14",
46
+ "@thi.ng/text-canvas": "^2.4.40",
47
+ "@thi.ng/transducers": "^8.4.1",
48
+ "@thi.ng/vectors": "^7.6.10",
49
+ "rimraf": "^4.4.1",
50
50
  "tools": "^0.0.1",
51
- "typedoc": "^0.23.24",
52
- "typescript": "^4.9.5"
51
+ "typedoc": "^0.23.28",
52
+ "typescript": "^5.0.2"
53
53
  },
54
54
  "keywords": [
55
55
  "1d",
@@ -111,5 +111,5 @@
111
111
  ],
112
112
  "year": 2015
113
113
  },
114
- "gitHead": "a2915dee637c1b8cd2e11a78a23bd035e4f750e7\n"
114
+ "gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
115
115
  }
package/pink.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ColoredNoiseOpts } from "./api.js";
1
+ import { type ColoredNoiseOpts } from "./api.js";
2
2
  /**
3
3
  * Exponential decay (1/f) noise, based on Voss-McCarthy algorithm.
4
4
  *
package/red.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ColoredNoiseOpts } from "./api.js";
1
+ import { type ColoredNoiseOpts } from "./api.js";
2
2
  /**
3
3
  * Low-pass filtered noise (same as brown noise). Opposite of {@link blue}.
4
4
  *
package/white.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ColoredNoiseOpts } from "./api.js";
1
+ import { type ColoredNoiseOpts } from "./api.js";
2
2
  /**
3
3
  * Unfiltered noise w/ uniform distribution. Merely yields samples from
4
4
  * given PRNG.