-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.81 KB
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
{
"name": "@nextcss/color-tools",
"version": "2.0.0",
"description": "Performance optimized useful tools for working with colors.",
"keywords": [
"color",
"colors",
"color-tool",
"color-palette",
"color-palette-generator",
"hex",
"rgb",
"hsl",
"hwb",
"oklab",
"cmyk",
"tool",
"tools",
"convert",
"converter",
"front-end",
"backend"
],
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/*"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"author": {
"name": "Zsolt Tovis",
"email": "tovis.zsolt@gmail.com",
"url": "https://toviszsolt.stacklegend.com/"
},
"funding": "https://github.com/sponsors/toviszsolt",
"repository": {
"type": "git",
"url": "https://github.com/nextcss/color-tools"
},
"bugs": {
"url": "https://github.com/nextcss/color-tools/issues"
},
"homepage": "https://nextcss.com",
"scripts": {
"watch": "node build.js --watch",
"test": "jest --verbose",
"build": "jest --verbose && node build.js",
"coverage": "jest --collect-coverage",
"coverage:open": "(start ./coverage/lcov-report/index.html || open ./coverage/lcov-report/index.html || xdg-open ./coverage/lcov-report/index.html)"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^30.0.0",
"benny": "^3.7.1",
"esbuild": "^0.28.1",
"jest": "^30.4.2",
"jest-esbuild": "^0.4.0"
},
"overrides": {
"picomatch": "^4.0.4",
"minimatch": "^10.2.5"
},
"resolutions": {
"picomatch": "^4.0.4",
"minimatch": "^10.2.5"
}
}