-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.38 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
{
"name": "apcach",
"version": "0.6.4",
"description": "JS color calculator for composing colors with consistent APCA contrast ratio",
"keywords": [
"A11y",
"Accessibility",
"APCA",
"Colors",
"Composer",
"Contrast",
"OKLCH"
],
"repository": "antiflasher/apcach",
"type": "module",
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@logux/eslint-config": "^51.0.1",
"@size-limit/preset-small-lib": "^8.2.6",
"benchmark": "^2.1.4",
"clean-publish": "^4.2.0",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-perfectionist": "^1.5.1",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"size-limit": "^8.2.6",
"uvu": "^0.5.6",
"vite": "^4.4.9"
},
"eslintConfig": {
"extends": "@logux/eslint-config"
},
"scripts": {
"test:lint": "eslint .",
"test:size": "size-limit",
"test:unit": "uvu . '\\.test\\.(ts|js)$'",
"test:contrast": "uvu . 'contrast.test.js'",
"test": "pnpm run /^test:/",
"start": "vite ./demo/"
},
"size-limit": [
{
"limit": "25 kB"
}
],
"dependencies": {
"apca-w3": "^0.1.9",
"culori": "^3.2.0",
"wcag-contrast": "^3.0.0"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
}
}