chenyc
2025-12-09 65e034683b28d799e73c7d7e5e4769fab5b9bc9c
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
{
  "name": "color-convert",
  "description": "Plain color conversion functions",
  "version": "3.1.3",
  "author": "Josh Junon <josh@junon.me>",
  "contributors": [
    "Heather Arthur <fayearthur@gmail.com>"
  ],
  "license": "MIT",
  "repository": "Qix-/color-convert",
  "type": "module",
  "exports": "./index.js",
  "types": "./index.d.ts",
  "engines": {
    "node": ">=14.6"
  },
  "scripts": {
    "test": "xo && tsd && node test/basic.js"
  },
  "files": [
    "index.js",
    "index.d.ts",
    "conversions.js",
    "route.js"
  ],
  "keywords": [
    "color",
    "colour",
    "convert",
    "converter",
    "conversion",
    "rgb",
    "hsl",
    "hsv",
    "hwb",
    "cmyk",
    "ansi",
    "ansi16"
  ],
  "xo": {
    "rules": {
      "default-case": 0,
      "no-inline-comments": 0,
      "operator-linebreak": 0,
      "unicorn/prefer-exponentiation-operator": 0,
      "@typescript-eslint/naming-convention": 0
    }
  },
  "devDependencies": {
    "chalk": "^5.2.0",
    "jimp": "^0.22.8",
    "tsd": "^0.28.1",
    "xo": "^0.54.2"
  },
  "dependencies": {
    "color-name": "^2.0.0"
  }
}