-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "@exhuma/readable-color",
"type": "module",
"files": [
"dist"
],
"version": "1.0.0",
"description": "Determine readable text-colors for a given backgrund",
"main": "dist/readable-color.js",
"types": "dist/readable-color.d.ts",
"module": "dist/readable-color.js",
"exports": {
".": {
"import": "./dist/readable-color.js"
}
},
"scripts": {
"build": "vite build",
"dev": "vite serve ./demo",
"test": "vitest --coverage"
},
"keywords": [
"color",
"accessibility"
],
"repository": {
"type": "git",
"url": "https://github.com/exhuma/readable-color"
},
"bugs": {
"url": "https://github.com/exhuma/readable-color/issues"
},
"homepage": "https://github.com/exhuma/readable-color",
"author": "Michel Albert",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@vitest/coverage-v8": "^0.34.6",
"prettier": "^3.1.1",
"typescript": "^5.3.2",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.2",
"vite": "^5.0.2",
"vitest": "^0.34.6"
}
}