-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "is-dark-theme",
"version": "1.0.3",
"description": "Detect if the user has requested the system use a light or dark color theme",
"main": "./dist/index.js",
"jsnext:main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"prepublish": "yarn build",
"build": "rimraf -rf dist/* && tsc"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.{js,json,md,yml}\""
}
},
"keywords": [
"dark",
"light",
"ui",
"css",
"media",
"query",
"prefers",
"scheme",
"color"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/justjavac/is-dark-theme/issues"
},
"homepage": "https://github.com/justjavac/is-dark-theme#readme",
"repository": {
"type": "git",
"url": "https://github.com/justjavac/is-dark-theme"
},
"devDependencies": {
"@types/node": "^14.6.4",
"husky": "^4.2.5",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
}
}