-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 803 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 803 Bytes
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
{
"name": "hsluv",
"description": "Human-friendly HSL",
"keywords": [
"color",
"color space",
"CIE",
"RGB",
"HSL",
"HSLuv",
"HPLuv"
],
"version": "1.0.1",
"author": "Alexei Boronine <alexei@boronine.com>",
"license": "MIT",
"files": [
"dist/hsluv.d.ts",
"dist/hsluv.mjs",
"dist/hsluv.cjs",
"LICENSE",
"README.md"
],
"types": "dist/hsluv.d.ts",
"exports": {
"types": "./dist/hsluv.d.ts",
"import": "./dist/hsluv.mjs",
"require": "./dist/hsluv.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/hsluv/hsluv-javascript.git"
},
"homepage": "https://www.hsluv.org",
"devDependencies": {
"typescript": "^5.8.2",
"esbuild": "^0.25.1"
},
"scripts": {
"build": "sh build.sh"
}
}