-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "color-sorter",
"version": "6.1.0",
"description": "Sort colors in a visually pleasing way.",
"homepage": "https://github.com/projectwallace/color-sorter",
"repository": "projectwallace/color-sorter",
"type": "module",
"source": "index.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/color-sorter.umd.cjs",
"default": "./dist/color-sorter.js"
},
"types": "./dist/index.d.ts",
"main": "./dist/color-sorter.umd.cjs",
"module": "./dist/color-sorter.js",
"unpkg": "./dist/color-sorter.umd.cjs",
"scripts": {
"test": "uvu",
"build": "vite build",
"check": "tsc --noEmit"
},
"files": [
"dist"
],
"keywords": [
"css",
"color-sorting",
"color-sort",
"colors",
"statistics",
"stats",
"analytics",
"sort",
"order"
],
"author": "Bart Veneman",
"license": "MIT",
"bugs": {
"url": "https://github.com/projectwallace/color-sorter/issues"
},
"dependencies": {
"colorjs.io": "^0.5.2"
},
"devDependencies": {
"@codecov/vite-plugin": "^0.0.1-beta.9",
"@codspeed/tinybench-plugin": "^3.1.0",
"c8": "^10.1.2",
"tinybench": "^2.8.0",
"uvu": "^0.5.6",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1"
}
}