-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·72 lines (72 loc) · 1.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "pex-color",
"version": "2.2.0",
"description": "Color utilities (css, p3, hex, hsl, hsv, hwb, lab, lch, xyz, okhsl, okhsv, oklab, oklch, hpluv, hsluv, lchuv, bytes) for PEX.",
"keywords": [
"pex",
"color",
"webgl",
"3d",
"rgb",
"rgba",
"p3",
"rgbbytes",
"hsv",
"hsl",
"hwb",
"hex",
"xyz",
"lab",
"lch",
"cielab",
"oklab",
"oklch",
"okhsl",
"okhsv",
"hsluv",
"hpluv",
"cieluv",
"lchuv",
"cielchuv"
],
"homepage": "https://github.com/pex-gl/pex-color",
"bugs": "https://github.com/pex-gl/pex-color/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pex-gl/pex-color.git"
},
"license": "MIT",
"author": "Marcin Ignac <[email protected]> (http://marcinignac.com)",
"contributors": [
"Damien Seguin (https://github.com/dmnsgn)",
"Szymon Kaliski <[email protected]> (https://szymonkaliski.com)"
],
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "snowdev build",
"dev": "snowdev dev",
"release": "snowdev release",
"test": "node --test --experimental-test-coverage test",
"test:watch": "node --test --watch test"
},
"devDependencies": {
"colorjs.io": "github:color-js/color.js"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.2.x"
},
"snowdev": {
"dependencies": []
}
}