-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
73
74
75
76
{
"name": "@texel/color",
"version": "1.1.9",
"description": "a minimal and modern color library",
"type": "module",
"main": "./src/index.js",
"types": "./types.d.ts",
"exports": {
"import": "./src/index.js",
"types": "./types.d.ts"
},
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"url": "https://github.com/mattdesl"
},
"devDependencies": {
"better-docs": "^2.7.3",
"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",
"jsdoc": "^4.0.4",
"pako": "^2.1.0",
"png-tools": "^1.0.4",
"prettier": "^3.3.3",
"tape": "^5.8.1",
"terser": "^5.31.3",
"tsd-jsdoc": "^2.5.0"
},
"scripts": {
"visualize": "canvas-sketch-cli test/canvas-graph.js --open",
"docs": "jsdoc src -r -t node_modules/better-docs -c tools/.jsdoc.json -d docs -R DOC.md",
"types": "jsdoc src -r -t node_modules/tsd-jsdoc/dist -c tools/.jsdoc.types.json -d .",
"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"
}
}