@thi.ng/colored-noise 1.0.110 → 1.0.114

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.
Files changed (2) hide show
  1. package/package.json +117 -117
  2. package/CHANGELOG.md +0 -47
package/package.json CHANGED
@@ -1,118 +1,118 @@
1
1
  {
2
- "name": "@thi.ng/colored-noise",
3
- "version": "1.0.110",
4
- "description": "Customizable O(1) ES6 generators for colored noise",
5
- "type": "module",
6
- "module": "./index.js",
7
- "typings": "./index.d.ts",
8
- "sideEffects": false,
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/thi-ng/umbrella.git"
12
- },
13
- "homepage": "https://thi.ng/colored-noise",
14
- "funding": [
15
- {
16
- "type": "github",
17
- "url": "https://github.com/sponsors/postspectacular"
18
- },
19
- {
20
- "type": "patreon",
21
- "url": "https://patreon.com/thing_umbrella"
22
- },
23
- {
24
- "type": "liberapay",
25
- "url": "https://liberapay.com/thi.ng"
26
- }
27
- ],
28
- "author": "Karsten Schmidt (https://thi.ng)",
29
- "license": "Apache-2.0",
30
- "scripts": {
31
- "build": "yarn build:esbuild && yarn build:decl",
32
- "build:decl": "tsc --declaration --emitDeclarationOnly",
33
- "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
34
- "clean": "bun ../../tools/src/clean-package.ts",
35
- "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
36
- "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
37
- "pub": "yarn npm publish --access public",
38
- "test": "bun test",
39
- "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
- },
41
- "dependencies": {
42
- "@thi.ng/binary": "^3.4.60",
43
- "@thi.ng/random": "^4.1.27"
44
- },
45
- "devDependencies": {
46
- "@thi.ng/api": "^8.12.2",
47
- "@thi.ng/dsp": "^4.7.88",
48
- "@thi.ng/dsp-io-wav": "^2.1.180",
49
- "@thi.ng/text-canvas": "^3.0.91",
50
- "@thi.ng/transducers": "^9.6.9",
51
- "@thi.ng/vectors": "^8.6.6",
52
- "esbuild": "^0.25.9",
53
- "typedoc": "^0.28.12",
54
- "typescript": "^5.9.2"
55
- },
56
- "keywords": [
57
- "1d",
58
- "blue",
59
- "brown",
60
- "fft",
61
- "filter",
62
- "generator",
63
- "green",
64
- "noise",
65
- "random",
66
- "red",
67
- "sample",
68
- "spectrum",
69
- "typescript",
70
- "white"
71
- ],
72
- "publishConfig": {
73
- "access": "public"
74
- },
75
- "engines": {
76
- "node": ">=18"
77
- },
78
- "files": [
79
- "./*.js",
80
- "./*.d.ts"
81
- ],
82
- "exports": {
83
- ".": {
84
- "default": "./index.js"
85
- },
86
- "./api": {
87
- "default": "./api.js"
88
- },
89
- "./blue": {
90
- "default": "./blue.js"
91
- },
92
- "./green": {
93
- "default": "./green.js"
94
- },
95
- "./pink": {
96
- "default": "./pink.js"
97
- },
98
- "./red": {
99
- "default": "./red.js"
100
- },
101
- "./violet": {
102
- "default": "./violet.js"
103
- },
104
- "./white": {
105
- "default": "./white.js"
106
- }
107
- },
108
- "thi.ng": {
109
- "alias": "cnoise",
110
- "related": [
111
- "dsp",
112
- "lowdisc",
113
- "random"
114
- ],
115
- "year": 2015
116
- },
117
- "gitHead": "e215a3e8de3809736ba0042c93bd8703a5a1a337\n"
118
- }
2
+ "name": "@thi.ng/colored-noise",
3
+ "version": "1.0.114",
4
+ "description": "Customizable O(1) ES6 generators for colored noise",
5
+ "type": "module",
6
+ "module": "./index.js",
7
+ "typings": "./index.d.ts",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/thi-ng/umbrella.git"
12
+ },
13
+ "homepage": "https://thi.ng/colored-noise",
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/postspectacular"
18
+ },
19
+ {
20
+ "type": "patreon",
21
+ "url": "https://patreon.com/thing_umbrella"
22
+ },
23
+ {
24
+ "type": "liberapay",
25
+ "url": "https://liberapay.com/thi.ng"
26
+ }
27
+ ],
28
+ "author": "Karsten Schmidt (https://thi.ng)",
29
+ "license": "Apache-2.0",
30
+ "scripts": {
31
+ "build": "yarn build:esbuild && yarn build:decl",
32
+ "build:decl": "tsc --declaration --emitDeclarationOnly",
33
+ "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
34
+ "clean": "bun ../../tools/src/clean-package.ts",
35
+ "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
36
+ "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
37
+ "pub": "npm publish --access public",
38
+ "test": "bun test",
39
+ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
+ },
41
+ "dependencies": {
42
+ "@thi.ng/binary": "^3.4.64",
43
+ "@thi.ng/random": "^4.1.31"
44
+ },
45
+ "devDependencies": {
46
+ "@thi.ng/api": "^8.12.6",
47
+ "@thi.ng/dsp": "^4.7.93",
48
+ "@thi.ng/dsp-io-wav": "^2.1.185",
49
+ "@thi.ng/text-canvas": "^3.0.96",
50
+ "@thi.ng/transducers": "^9.6.14",
51
+ "@thi.ng/vectors": "^8.6.10",
52
+ "esbuild": "^0.25.11",
53
+ "typedoc": "^0.28.14",
54
+ "typescript": "^5.9.3"
55
+ },
56
+ "keywords": [
57
+ "1d",
58
+ "blue",
59
+ "brown",
60
+ "fft",
61
+ "filter",
62
+ "generator",
63
+ "green",
64
+ "noise",
65
+ "random",
66
+ "red",
67
+ "sample",
68
+ "spectrum",
69
+ "typescript",
70
+ "white"
71
+ ],
72
+ "publishConfig": {
73
+ "access": "public"
74
+ },
75
+ "engines": {
76
+ "node": ">=18"
77
+ },
78
+ "files": [
79
+ "./*.js",
80
+ "./*.d.ts"
81
+ ],
82
+ "exports": {
83
+ ".": {
84
+ "default": "./index.js"
85
+ },
86
+ "./api": {
87
+ "default": "./api.js"
88
+ },
89
+ "./blue": {
90
+ "default": "./blue.js"
91
+ },
92
+ "./green": {
93
+ "default": "./green.js"
94
+ },
95
+ "./pink": {
96
+ "default": "./pink.js"
97
+ },
98
+ "./red": {
99
+ "default": "./red.js"
100
+ },
101
+ "./violet": {
102
+ "default": "./violet.js"
103
+ },
104
+ "./white": {
105
+ "default": "./white.js"
106
+ }
107
+ },
108
+ "thi.ng": {
109
+ "alias": "cnoise",
110
+ "related": [
111
+ "dsp",
112
+ "lowdisc",
113
+ "random"
114
+ ],
115
+ "year": 2015
116
+ },
117
+ "gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
118
+ }
package/CHANGELOG.md DELETED
@@ -1,47 +0,0 @@
1
- # Change Log
2
-
3
- - **Last updated**: 2025-09-01T16:38:35Z
4
- - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
-
6
- All notable changes to this project will be documented in this file.
7
- Only versions published since **2022-01-01** are listed here.
8
- Please consult the Git history for older version information.
9
- See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
10
-
11
- **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
12
- and/or version bumps of transitive dependencies.
13
-
14
- ### [1.0.87](https://github.com/thi-ng/umbrella/tree/@thi.ng/colored-noise@1.0.87) (2024-12-24)
15
-
16
- #### 🩹 Bug fixes
17
-
18
- - update imports ([5f8f8df](https://github.com/thi-ng/umbrella/commit/5f8f8df))
19
-
20
- ### [1.0.66](https://github.com/thi-ng/umbrella/tree/@thi.ng/colored-noise@1.0.66) (2024-04-08)
21
-
22
- #### ♻️ Refactoring
23
-
24
- - update reducer handling ([5b445a7](https://github.com/thi-ng/umbrella/commit/5b445a7))
25
-
26
- ### [1.0.56](https://github.com/thi-ng/umbrella/tree/@thi.ng/colored-noise@1.0.56) (2024-02-22)
27
-
28
- #### ♻️ Refactoring
29
-
30
- - update object destructuring in all pkgs & examples ([f36aeb0](https://github.com/thi-ng/umbrella/commit/f36aeb0))
31
-
32
- ### [1.0.35](https://github.com/thi-ng/umbrella/tree/@thi.ng/colored-noise@1.0.35) (2023-11-09)
33
-
34
- #### ♻️ Refactoring
35
-
36
- - update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
37
-
38
- # [1.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/colored-noise@1.0.0) (2022-11-23)
39
-
40
- #### 🛑 Breaking changes
41
-
42
- - [#363](https://github.com/thi-ng/umbrella/issues/363) add ColoredNoiseOpts ([b2d1d13](https://github.com/thi-ng/umbrella/commit/b2d1d13))
43
- - BREAKING CHANGE: replace generator args with uniform options object
44
- - add `ColoredNoiseOpts` config interface
45
- - update all generators
46
- - update tools/examples
47
- - update readme