-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.6 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
60
61
{
"name": "kontrasto",
"version": "0.1.0",
"main": "./dist/kontrasto.umd.js",
"module": "./dist/kontrasto.es.js",
"exports": {
".": {
"import": "./dist/kontrasto.es.js",
"require": "./dist/kontrasto.umd.js"
}
},
"files": [
"dist/*.js"
],
"description": "🎨 Automated color contrast for text over images",
"author": "Thibaud Colas",
"license": "MIT",
"homepage": "https://github.com/thibaudcolas/kontrasto",
"repository": {
"type": "git",
"url": "git+https://github.com/thibaudcolas/kontrasto.git"
},
"bugs": {
"url": "https://github.com/thibaudcolas/kontrasto/issues"
},
"keywords": [
"kontrasto",
"color",
"colour",
"contrast",
"contrast-ratio",
"dominant colors",
"accessibility",
"a11y",
"wcag2",
"wcag3",
"apca",
"django",
"wagtail",
"numpy"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.26.0",
"prettier": "2.3.2",
"tailwindcss": "^2.1.2",
"tailwindcss-rtl": "^0.7.3",
"typescript": "^4.2.3",
"vite": "^2.2.3"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build && vite build --mode lib",
"prepare": "./.githooks/deploy.sh",
"lint": "prettier --check '**/?(.)*.{md,mdx,css,scss,js,json,json5,yaml,yml}' && eslint . --ext .js,.ts",
"format": "prettier --write '**/?(.)*.{md,mdx,css,scss,js,json,json5,yaml,yml}'",
"report:package": "npm pack --loglevel notice 2>&1 >/dev/null | sed -e 's/^npm notice //' && rm *.tgz"
}
}