-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "@texel/color",
"version": "1.1.4",
"description": "a minimal and modern color library",
"type": "module",
"main": "./src/index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"url": "https://github.com/mattdesl"
},
"devDependencies": {
"canvas-sketch": "^0.7.7",
"canvas-sketch-cli": "^1.11.21",
"colorjs.io": "^0.5.2",
"culori": "^4.0.1",
"esbuild": "^0.23.0",
"faucet": "^0.0.4",
"pako": "^2.1.0",
"png-tools": "^1.0.4",
"prettier": "^3.3.3",
"tape": "^5.8.1",
"terser": "^5.31.3"
},
"scripts": {
"visualize": "canvas-sketch-cli test/canvas-graph.js --open",
"test": "faucet test/test*.js",
"bench": "node test/bench-colorjs.js",
"bench:node": "NODE_ENV=production node --prof --no-logfile-per-isolate test/bench-node.js && node --prof-process v8.log",
"bench:size": "esbuild test/bench-size.js --format=esm --bundle --minify --tree-shaking=true | wc -c",
"matrices": "python3 tools/print_matrices.py > src/conversion_matrices.js && prettier src/conversion_matrices.js --write"
},
"keywords": [
"oklch",
"oklab",
"okhsl",
"okhsv",
"display-p3",
"p3",
"displayp3",
"prophoto",
"a98rgb",
"adobe1998",
"prophotorgb",
"color",
"colour",
"picker",
"tool",
"rgb",
"srgb",
"convert",
"saturation",
"chroma",
"perceptual",
"uniform",
"perceptually"
],
"repository": {
"type": "git",
"url": "git://github.com/texel-org/color.git"
},
"homepage": "https://github.com/texel-org/color",
"bugs": {
"url": "https://github.com/texel-org/color/issues"
}
}