-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 861 Bytes
/
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
{
"name": "@theodorejb/color-detect",
"version": "2.0.0",
"description": "Convert CSS color strings to RGBA and check whether they are light or dark",
"type": "module",
"files": [
"src/*.js",
"src/*.d.ts"
],
"main": "src/color-detect.js",
"types": "./src/color-detect.d.ts",
"scripts": {
"prepare": "tsc",
"start": "http-server"
},
"keywords": [
"color",
"detect",
"contrast",
"css",
"typescript"
],
"author": {
"name": "Theodore Brown",
"url": "https://theodorejb.me/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theodorejb/color-detect.git"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"chai": "^4.3.10",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
}
}