@thi.ng/color 4.0.8 → 4.1.2

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/package.json CHANGED
@@ -1,398 +1,403 @@
1
1
  {
2
- "name": "@thi.ng/color",
3
- "version": "4.0.8",
4
- "description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets",
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://github.com/thi-ng/umbrella/tree/develop/packages/color#readme",
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
- "author": "Karsten Schmidt <k+npm@thi.ng>",
25
- "license": "Apache-2.0",
26
- "scripts": {
27
- "build": "yarn clean && tsc --declaration",
28
- "clean": "rimraf *.js *.d.ts *.map doc api css hcy hsi hsl hsv int internal lab lch oklab rgb srgb xyy xyz ycc",
29
- "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
- "doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
31
- "doc:readme": "yarn doc:stats && ../../scripts/node-esm ../../tools/src/readme.ts",
32
- "doc:stats": "../../scripts/node-esm ../../tools/src/module-stats.ts",
33
- "pub": "yarn build && yarn publish --access public",
34
- "test": "testament test",
35
- "tool:swatches": "../../scripts/node-esm tools/index.ts"
36
- },
37
- "dependencies": {
38
- "@thi.ng/api": "^8.1.0",
39
- "@thi.ng/arrays": "^2.0.7",
40
- "@thi.ng/binary": "^3.0.7",
41
- "@thi.ng/checks": "^3.0.6",
42
- "@thi.ng/compare": "^2.0.7",
43
- "@thi.ng/compose": "^2.0.7",
44
- "@thi.ng/defmulti": "^2.0.7",
45
- "@thi.ng/errors": "^2.0.6",
46
- "@thi.ng/math": "^5.0.7",
47
- "@thi.ng/random": "^3.1.3",
48
- "@thi.ng/strings": "^3.1.3",
49
- "@thi.ng/transducers": "^8.0.7",
50
- "@thi.ng/vectors": "^7.1.0"
51
- },
52
- "devDependencies": {
53
- "@thi.ng/testament": "^0.1.6"
54
- },
55
- "keywords": [
56
- "color",
57
- "conversion",
58
- "cosine",
59
- "css",
60
- "D50",
61
- "D65",
62
- "distance",
63
- "filter",
64
- "gamma",
65
- "generator",
66
- "gradient",
67
- "hcy",
68
- "hsi",
69
- "hsl",
70
- "hsv",
71
- "interpolation",
72
- "iterator",
73
- "lab",
74
- "lch",
75
- "matrix",
76
- "oklab",
77
- "random",
78
- "rgb",
79
- "sort",
80
- "srgb",
81
- "swatches",
82
- "theme",
83
- "typescript",
84
- "xyy",
85
- "xyz",
86
- "ycbcr",
87
- "ycc"
88
- ],
89
- "publishConfig": {
90
- "access": "public"
91
- },
92
- "browser": {
93
- "process": false,
94
- "setTimeout": false
95
- },
96
- "engines": {
97
- "node": ">=12.7"
98
- },
99
- "files": [
100
- "*.js",
101
- "*.d.ts",
102
- "api",
103
- "css",
104
- "hcy",
105
- "hsi",
106
- "hsl",
107
- "hsv",
108
- "int",
109
- "internal",
110
- "lab",
111
- "lch",
112
- "oklab",
113
- "rgb",
114
- "srgb",
115
- "xyy",
116
- "xyz",
117
- "ycc"
118
- ],
119
- "exports": {
120
- ".": {
121
- "import": "./index.js"
122
- },
123
- "./alpha": {
124
- "import": "./alpha.js"
125
- },
126
- "./analog": {
127
- "import": "./analog.js"
128
- },
129
- "./api/constants": {
130
- "import": "./api/constants.js"
131
- },
132
- "./api/gradients": {
133
- "import": "./api/gradients.js"
134
- },
135
- "./api/names": {
136
- "import": "./api/names.js"
137
- },
138
- "./api/ranges": {
139
- "import": "./api/ranges.js"
140
- },
141
- "./api/system": {
142
- "import": "./api/system.js"
143
- },
144
- "./api": {
145
- "import": "./api.js"
146
- },
147
- "./clamp": {
148
- "import": "./clamp.js"
149
- },
150
- "./closest-hue": {
151
- "import": "./closest-hue.js"
152
- },
153
- "./color-range": {
154
- "import": "./color-range.js"
155
- },
156
- "./color": {
157
- "import": "./color.js"
158
- },
159
- "./convert": {
160
- "import": "./convert.js"
161
- },
162
- "./cosine-gradients": {
163
- "import": "./cosine-gradients.js"
164
- },
165
- "./css/css": {
166
- "import": "./css/css.js"
167
- },
168
- "./css/parse-css": {
169
- "import": "./css/parse-css.js"
170
- },
171
- "./defcolor": {
172
- "import": "./defcolor.js"
173
- },
174
- "./distance": {
175
- "import": "./distance.js"
176
- },
177
- "./gradients": {
178
- "import": "./gradients.js"
179
- },
180
- "./hcy/hcy-rgb": {
181
- "import": "./hcy/hcy-rgb.js"
182
- },
183
- "./hcy/hcy": {
184
- "import": "./hcy/hcy.js"
185
- },
186
- "./hsi/hsi-rgb": {
187
- "import": "./hsi/hsi-rgb.js"
188
- },
189
- "./hsi/hsi": {
190
- "import": "./hsi/hsi.js"
191
- },
192
- "./hsl/hsl-css": {
193
- "import": "./hsl/hsl-css.js"
194
- },
195
- "./hsl/hsl-hsv": {
196
- "import": "./hsl/hsl-hsv.js"
197
- },
198
- "./hsl/hsl-rgb": {
199
- "import": "./hsl/hsl-rgb.js"
200
- },
201
- "./hsl/hsl": {
202
- "import": "./hsl/hsl.js"
203
- },
204
- "./hsv/hsv-css": {
205
- "import": "./hsv/hsv-css.js"
206
- },
207
- "./hsv/hsv-hsl": {
208
- "import": "./hsv/hsv-hsl.js"
209
- },
210
- "./hsv/hsv-rgb": {
211
- "import": "./hsv/hsv-rgb.js"
212
- },
213
- "./hsv/hsv": {
214
- "import": "./hsv/hsv.js"
215
- },
216
- "./int/int-css": {
217
- "import": "./int/int-css.js"
218
- },
219
- "./int/int-int": {
220
- "import": "./int/int-int.js"
221
- },
222
- "./int/int-rgb": {
223
- "import": "./int/int-rgb.js"
224
- },
225
- "./int/int-srgb": {
226
- "import": "./int/int-srgb.js"
227
- },
228
- "./int/int": {
229
- "import": "./int/int.js"
230
- },
231
- "./invert": {
232
- "import": "./invert.js"
233
- },
234
- "./is-black": {
235
- "import": "./is-black.js"
236
- },
237
- "./is-gray": {
238
- "import": "./is-gray.js"
239
- },
240
- "./is-white": {
241
- "import": "./is-white.js"
242
- },
243
- "./lab/lab-css": {
244
- "import": "./lab/lab-css.js"
245
- },
246
- "./lab/lab-lab": {
247
- "import": "./lab/lab-lab.js"
248
- },
249
- "./lab/lab-lch": {
250
- "import": "./lab/lab-lch.js"
251
- },
252
- "./lab/lab-rgb": {
253
- "import": "./lab/lab-rgb.js"
254
- },
255
- "./lab/lab-xyz": {
256
- "import": "./lab/lab-xyz.js"
257
- },
258
- "./lab/lab50": {
259
- "import": "./lab/lab50.js"
260
- },
261
- "./lab/lab65": {
262
- "import": "./lab/lab65.js"
263
- },
264
- "./lch/lch-css": {
265
- "import": "./lch/lch-css.js"
266
- },
267
- "./lch/lch": {
268
- "import": "./lch/lch.js"
269
- },
270
- "./linear": {
271
- "import": "./linear.js"
272
- },
273
- "./luminance-rgb": {
274
- "import": "./luminance-rgb.js"
275
- },
276
- "./luminance": {
277
- "import": "./luminance.js"
278
- },
279
- "./mix": {
280
- "import": "./mix.js"
281
- },
282
- "./oklab/oklab-rgb": {
283
- "import": "./oklab/oklab-rgb.js"
284
- },
285
- "./oklab/oklab-xyz": {
286
- "import": "./oklab/oklab-xyz.js"
287
- },
288
- "./oklab/oklab": {
289
- "import": "./oklab/oklab.js"
290
- },
291
- "./rgb/hue-rgb": {
292
- "import": "./rgb/hue-rgb.js"
293
- },
294
- "./rgb/kelvin-rgba": {
295
- "import": "./rgb/kelvin-rgba.js"
296
- },
297
- "./rgb/rgb-css": {
298
- "import": "./rgb/rgb-css.js"
299
- },
300
- "./rgb/rgb-hcv": {
301
- "import": "./rgb/rgb-hcv.js"
302
- },
303
- "./rgb/rgb-hcy": {
304
- "import": "./rgb/rgb-hcy.js"
305
- },
306
- "./rgb/rgb-hsi": {
307
- "import": "./rgb/rgb-hsi.js"
308
- },
309
- "./rgb/rgb-hsl": {
310
- "import": "./rgb/rgb-hsl.js"
311
- },
312
- "./rgb/rgb-hsv": {
313
- "import": "./rgb/rgb-hsv.js"
314
- },
315
- "./rgb/rgb-lab": {
316
- "import": "./rgb/rgb-lab.js"
317
- },
318
- "./rgb/rgb-oklab": {
319
- "import": "./rgb/rgb-oklab.js"
320
- },
321
- "./rgb/rgb-srgb": {
322
- "import": "./rgb/rgb-srgb.js"
323
- },
324
- "./rgb/rgb-xyz": {
325
- "import": "./rgb/rgb-xyz.js"
326
- },
327
- "./rgb/rgb-ycc": {
328
- "import": "./rgb/rgb-ycc.js"
329
- },
330
- "./rgb/rgb": {
331
- "import": "./rgb/rgb.js"
332
- },
333
- "./sort": {
334
- "import": "./sort.js"
335
- },
336
- "./srgb/srgb-css": {
337
- "import": "./srgb/srgb-css.js"
338
- },
339
- "./srgb/srgb-int": {
340
- "import": "./srgb/srgb-int.js"
341
- },
342
- "./srgb/srgb-rgb": {
343
- "import": "./srgb/srgb-rgb.js"
344
- },
345
- "./srgb/srgb": {
346
- "import": "./srgb/srgb.js"
347
- },
348
- "./swatches": {
349
- "import": "./swatches.js"
350
- },
351
- "./transform": {
352
- "import": "./transform.js"
353
- },
354
- "./xyy/xyy-xyz": {
355
- "import": "./xyy/xyy-xyz.js"
356
- },
357
- "./xyy/xyy": {
358
- "import": "./xyy/xyy.js"
359
- },
360
- "./xyz/wavelength-xyz": {
361
- "import": "./xyz/wavelength-xyz.js"
362
- },
363
- "./xyz/xyz-lab": {
364
- "import": "./xyz/xyz-lab.js"
365
- },
366
- "./xyz/xyz-oklab": {
367
- "import": "./xyz/xyz-oklab.js"
368
- },
369
- "./xyz/xyz-rgb": {
370
- "import": "./xyz/xyz-rgb.js"
371
- },
372
- "./xyz/xyz-xyy": {
373
- "import": "./xyz/xyz-xyy.js"
374
- },
375
- "./xyz/xyz-xyz": {
376
- "import": "./xyz/xyz-xyz.js"
377
- },
378
- "./xyz/xyz50": {
379
- "import": "./xyz/xyz50.js"
380
- },
381
- "./xyz/xyz65": {
382
- "import": "./xyz/xyz65.js"
383
- },
384
- "./ycc/ycc-rgb": {
385
- "import": "./ycc/ycc-rgb.js"
386
- },
387
- "./ycc/ycc": {
388
- "import": "./ycc/ycc.js"
389
- }
390
- },
391
- "thi.ng": {
392
- "related": [
393
- "pixel",
394
- "vectors"
395
- ]
396
- },
397
- "gitHead": "d6aca4b4edb697613ed6635b1c0b12f0bf27b1f0"
398
- }
2
+ "name": "@thi.ng/color",
3
+ "version": "4.1.2",
4
+ "description": "Array-based color types, CSS parsing, conversions, transformations, declarative theme generation, gradients, presets",
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://github.com/thi-ng/umbrella/tree/develop/packages/color#readme",
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
+ "author": "Karsten Schmidt <k+npm@thi.ng>",
25
+ "license": "Apache-2.0",
26
+ "scripts": {
27
+ "build": "yarn clean && tsc --declaration",
28
+ "clean": "rimraf '*.js' '*.d.ts' '*.map' doc api css hcy hsi hsl hsv int internal lab lch oklab rgb srgb xyy xyz ycc",
29
+ "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
+ "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
31
+ "doc:readme": "yarn doc:stats && tools:readme",
32
+ "doc:stats": "tools:module-stats",
33
+ "pub": "yarn npm publish --access public",
34
+ "test": "testament test",
35
+ "tool:swatches": "tools:node-esm tools/index.ts"
36
+ },
37
+ "dependencies": {
38
+ "@thi.ng/api": "^8.3.2",
39
+ "@thi.ng/arrays": "^2.1.2",
40
+ "@thi.ng/binary": "^3.1.2",
41
+ "@thi.ng/checks": "^3.1.2",
42
+ "@thi.ng/compare": "^2.1.2",
43
+ "@thi.ng/compose": "^2.1.2",
44
+ "@thi.ng/defmulti": "^2.1.2",
45
+ "@thi.ng/errors": "^2.1.2",
46
+ "@thi.ng/math": "^5.1.2",
47
+ "@thi.ng/random": "^3.2.2",
48
+ "@thi.ng/strings": "^3.2.2",
49
+ "@thi.ng/transducers": "^8.1.2",
50
+ "@thi.ng/vectors": "^7.2.2"
51
+ },
52
+ "devDependencies": {
53
+ "@microsoft/api-extractor": "^7.18.19",
54
+ "@thi.ng/testament": "^0.2.2",
55
+ "rimraf": "^3.0.2",
56
+ "tools": "^0.0.1",
57
+ "typedoc": "^0.22.9",
58
+ "typescript": "^4.5.2"
59
+ },
60
+ "keywords": [
61
+ "color",
62
+ "conversion",
63
+ "cosine",
64
+ "css",
65
+ "D50",
66
+ "D65",
67
+ "distance",
68
+ "filter",
69
+ "gamma",
70
+ "generator",
71
+ "gradient",
72
+ "hcy",
73
+ "hsi",
74
+ "hsl",
75
+ "hsv",
76
+ "interpolation",
77
+ "iterator",
78
+ "lab",
79
+ "lch",
80
+ "matrix",
81
+ "oklab",
82
+ "random",
83
+ "rgb",
84
+ "sort",
85
+ "srgb",
86
+ "swatches",
87
+ "theme",
88
+ "typescript",
89
+ "xyy",
90
+ "xyz",
91
+ "ycbcr",
92
+ "ycc"
93
+ ],
94
+ "publishConfig": {
95
+ "access": "public"
96
+ },
97
+ "browser": {
98
+ "process": false,
99
+ "setTimeout": false
100
+ },
101
+ "engines": {
102
+ "node": ">=12.7"
103
+ },
104
+ "files": [
105
+ "*.js",
106
+ "*.d.ts",
107
+ "api",
108
+ "css",
109
+ "hcy",
110
+ "hsi",
111
+ "hsl",
112
+ "hsv",
113
+ "int",
114
+ "internal",
115
+ "lab",
116
+ "lch",
117
+ "oklab",
118
+ "rgb",
119
+ "srgb",
120
+ "xyy",
121
+ "xyz",
122
+ "ycc"
123
+ ],
124
+ "exports": {
125
+ ".": {
126
+ "import": "./index.js"
127
+ },
128
+ "./alpha": {
129
+ "import": "./alpha.js"
130
+ },
131
+ "./analog": {
132
+ "import": "./analog.js"
133
+ },
134
+ "./api/constants": {
135
+ "import": "./api/constants.js"
136
+ },
137
+ "./api/gradients": {
138
+ "import": "./api/gradients.js"
139
+ },
140
+ "./api/names": {
141
+ "import": "./api/names.js"
142
+ },
143
+ "./api/ranges": {
144
+ "import": "./api/ranges.js"
145
+ },
146
+ "./api/system": {
147
+ "import": "./api/system.js"
148
+ },
149
+ "./api": {
150
+ "import": "./api.js"
151
+ },
152
+ "./clamp": {
153
+ "import": "./clamp.js"
154
+ },
155
+ "./closest-hue": {
156
+ "import": "./closest-hue.js"
157
+ },
158
+ "./color-range": {
159
+ "import": "./color-range.js"
160
+ },
161
+ "./color": {
162
+ "import": "./color.js"
163
+ },
164
+ "./convert": {
165
+ "import": "./convert.js"
166
+ },
167
+ "./cosine-gradients": {
168
+ "import": "./cosine-gradients.js"
169
+ },
170
+ "./css/css": {
171
+ "import": "./css/css.js"
172
+ },
173
+ "./css/parse-css": {
174
+ "import": "./css/parse-css.js"
175
+ },
176
+ "./defcolor": {
177
+ "import": "./defcolor.js"
178
+ },
179
+ "./distance": {
180
+ "import": "./distance.js"
181
+ },
182
+ "./gradients": {
183
+ "import": "./gradients.js"
184
+ },
185
+ "./hcy/hcy-rgb": {
186
+ "import": "./hcy/hcy-rgb.js"
187
+ },
188
+ "./hcy/hcy": {
189
+ "import": "./hcy/hcy.js"
190
+ },
191
+ "./hsi/hsi-rgb": {
192
+ "import": "./hsi/hsi-rgb.js"
193
+ },
194
+ "./hsi/hsi": {
195
+ "import": "./hsi/hsi.js"
196
+ },
197
+ "./hsl/hsl-css": {
198
+ "import": "./hsl/hsl-css.js"
199
+ },
200
+ "./hsl/hsl-hsv": {
201
+ "import": "./hsl/hsl-hsv.js"
202
+ },
203
+ "./hsl/hsl-rgb": {
204
+ "import": "./hsl/hsl-rgb.js"
205
+ },
206
+ "./hsl/hsl": {
207
+ "import": "./hsl/hsl.js"
208
+ },
209
+ "./hsv/hsv-css": {
210
+ "import": "./hsv/hsv-css.js"
211
+ },
212
+ "./hsv/hsv-hsl": {
213
+ "import": "./hsv/hsv-hsl.js"
214
+ },
215
+ "./hsv/hsv-rgb": {
216
+ "import": "./hsv/hsv-rgb.js"
217
+ },
218
+ "./hsv/hsv": {
219
+ "import": "./hsv/hsv.js"
220
+ },
221
+ "./int/int-css": {
222
+ "import": "./int/int-css.js"
223
+ },
224
+ "./int/int-int": {
225
+ "import": "./int/int-int.js"
226
+ },
227
+ "./int/int-rgb": {
228
+ "import": "./int/int-rgb.js"
229
+ },
230
+ "./int/int-srgb": {
231
+ "import": "./int/int-srgb.js"
232
+ },
233
+ "./int/int": {
234
+ "import": "./int/int.js"
235
+ },
236
+ "./invert": {
237
+ "import": "./invert.js"
238
+ },
239
+ "./is-black": {
240
+ "import": "./is-black.js"
241
+ },
242
+ "./is-gray": {
243
+ "import": "./is-gray.js"
244
+ },
245
+ "./is-white": {
246
+ "import": "./is-white.js"
247
+ },
248
+ "./lab/lab-css": {
249
+ "import": "./lab/lab-css.js"
250
+ },
251
+ "./lab/lab-lab": {
252
+ "import": "./lab/lab-lab.js"
253
+ },
254
+ "./lab/lab-lch": {
255
+ "import": "./lab/lab-lch.js"
256
+ },
257
+ "./lab/lab-rgb": {
258
+ "import": "./lab/lab-rgb.js"
259
+ },
260
+ "./lab/lab-xyz": {
261
+ "import": "./lab/lab-xyz.js"
262
+ },
263
+ "./lab/lab50": {
264
+ "import": "./lab/lab50.js"
265
+ },
266
+ "./lab/lab65": {
267
+ "import": "./lab/lab65.js"
268
+ },
269
+ "./lch/lch-css": {
270
+ "import": "./lch/lch-css.js"
271
+ },
272
+ "./lch/lch": {
273
+ "import": "./lch/lch.js"
274
+ },
275
+ "./linear": {
276
+ "import": "./linear.js"
277
+ },
278
+ "./luminance-rgb": {
279
+ "import": "./luminance-rgb.js"
280
+ },
281
+ "./luminance": {
282
+ "import": "./luminance.js"
283
+ },
284
+ "./mix": {
285
+ "import": "./mix.js"
286
+ },
287
+ "./oklab/oklab-rgb": {
288
+ "import": "./oklab/oklab-rgb.js"
289
+ },
290
+ "./oklab/oklab-xyz": {
291
+ "import": "./oklab/oklab-xyz.js"
292
+ },
293
+ "./oklab/oklab": {
294
+ "import": "./oklab/oklab.js"
295
+ },
296
+ "./rgb/hue-rgb": {
297
+ "import": "./rgb/hue-rgb.js"
298
+ },
299
+ "./rgb/kelvin-rgba": {
300
+ "import": "./rgb/kelvin-rgba.js"
301
+ },
302
+ "./rgb/rgb-css": {
303
+ "import": "./rgb/rgb-css.js"
304
+ },
305
+ "./rgb/rgb-hcv": {
306
+ "import": "./rgb/rgb-hcv.js"
307
+ },
308
+ "./rgb/rgb-hcy": {
309
+ "import": "./rgb/rgb-hcy.js"
310
+ },
311
+ "./rgb/rgb-hsi": {
312
+ "import": "./rgb/rgb-hsi.js"
313
+ },
314
+ "./rgb/rgb-hsl": {
315
+ "import": "./rgb/rgb-hsl.js"
316
+ },
317
+ "./rgb/rgb-hsv": {
318
+ "import": "./rgb/rgb-hsv.js"
319
+ },
320
+ "./rgb/rgb-lab": {
321
+ "import": "./rgb/rgb-lab.js"
322
+ },
323
+ "./rgb/rgb-oklab": {
324
+ "import": "./rgb/rgb-oklab.js"
325
+ },
326
+ "./rgb/rgb-srgb": {
327
+ "import": "./rgb/rgb-srgb.js"
328
+ },
329
+ "./rgb/rgb-xyz": {
330
+ "import": "./rgb/rgb-xyz.js"
331
+ },
332
+ "./rgb/rgb-ycc": {
333
+ "import": "./rgb/rgb-ycc.js"
334
+ },
335
+ "./rgb/rgb": {
336
+ "import": "./rgb/rgb.js"
337
+ },
338
+ "./sort": {
339
+ "import": "./sort.js"
340
+ },
341
+ "./srgb/srgb-css": {
342
+ "import": "./srgb/srgb-css.js"
343
+ },
344
+ "./srgb/srgb-int": {
345
+ "import": "./srgb/srgb-int.js"
346
+ },
347
+ "./srgb/srgb-rgb": {
348
+ "import": "./srgb/srgb-rgb.js"
349
+ },
350
+ "./srgb/srgb": {
351
+ "import": "./srgb/srgb.js"
352
+ },
353
+ "./swatches": {
354
+ "import": "./swatches.js"
355
+ },
356
+ "./transform": {
357
+ "import": "./transform.js"
358
+ },
359
+ "./xyy/xyy-xyz": {
360
+ "import": "./xyy/xyy-xyz.js"
361
+ },
362
+ "./xyy/xyy": {
363
+ "import": "./xyy/xyy.js"
364
+ },
365
+ "./xyz/wavelength-xyz": {
366
+ "import": "./xyz/wavelength-xyz.js"
367
+ },
368
+ "./xyz/xyz-lab": {
369
+ "import": "./xyz/xyz-lab.js"
370
+ },
371
+ "./xyz/xyz-oklab": {
372
+ "import": "./xyz/xyz-oklab.js"
373
+ },
374
+ "./xyz/xyz-rgb": {
375
+ "import": "./xyz/xyz-rgb.js"
376
+ },
377
+ "./xyz/xyz-xyy": {
378
+ "import": "./xyz/xyz-xyy.js"
379
+ },
380
+ "./xyz/xyz-xyz": {
381
+ "import": "./xyz/xyz-xyz.js"
382
+ },
383
+ "./xyz/xyz50": {
384
+ "import": "./xyz/xyz50.js"
385
+ },
386
+ "./xyz/xyz65": {
387
+ "import": "./xyz/xyz65.js"
388
+ },
389
+ "./ycc/ycc-rgb": {
390
+ "import": "./ycc/ycc-rgb.js"
391
+ },
392
+ "./ycc/ycc": {
393
+ "import": "./ycc/ycc.js"
394
+ }
395
+ },
396
+ "thi.ng": {
397
+ "related": [
398
+ "pixel",
399
+ "vectors"
400
+ ]
401
+ },
402
+ "gitHead": "e8a7c2a40191b391cef182c2978e5a6c85987a87\n"
403
+ }