-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.2 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@dynamize/color-utilities",
"version": "1.0.12",
"description": "Library to format, convert and work with colors.",
"types": "./lib/types/public_api.d.ts",
"main": "./lib/esm/public_api.js",
"module": "./lib/esm/public_api.js",
"exports": {
".": {
"import": "./lib/esm/public_api.js",
"types": "./lib/types/index.d.ts"
}
},
"files": [
"/lib"
],
"scripts": {
"test": "jest",
"test-watch": "npx jest --watch",
"build:win": "del lib && tsc --project tsconfig.esm.json",
"build:linux": "rm -rf ./lib* && tsc --project tsconfig.esm.json",
"build:win:esm": "del lib && tsc --project tsconfig.esm.json",
"build:win:linux": "rm -rf ./lib* && tsc --project tsconfig.esm.json",
"publish": "npm publish && npx jsr publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dynimorius/color-utilities.git"
},
"keywords": [
"Color",
"color",
"colour",
"convert",
"converter",
"conversion",
"harmony",
"blend",
"blender",
"chromatic adaptation",
"color difference",
"delta e",
"delta-e",
"RGB",
"RGBA",
"sRBG",
"RYB",
"TSL",
"HSL",
"HSLA",
"HSV",
"HSVA",
"HWB",
"HCL",
"HEX",
"LAB",
"LUV",
"UVW",
"LCH",
"LCH(ab)",
"LCH(uv)",
"CMYK",
"XYZ",
"XYY",
"xyY",
"xvYCC",
"YCbCr",
"YcCbcCrc",
"YCgCo",
"YDbDr",
"YIQ",
"YPbPr",
"YUV",
"Ansi16",
"Ansi256",
"Adobe 98 RGB",
"Apple RGB",
"Best RGB",
"Beta RGB",
"Bruce RGB",
"CIE RGB",
"ColorMatch RGB",
"Don RGB 4",
"ECI RGB v2",
"Etka Space PS5",
"NTSC RGB",
"PAL/SECAM RGB",
"ProPhoto RGB",
"SMPTE-C RGB",
"Wide Gamut RGB",
"Web Safe",
"Out of Gamut"
],
"author": "Slavko Mihajlovic - dynimorius",
"license": "ISC",
"bugs": {
"url": "https://github.com/dynimorius/color-utilities/issues"
},
"homepage": "https://github.com/dynimorius/color-utilities#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jsr": "^0.12.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}