-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "color-scheme-switcher",
"version": "0.0.3",
"description": "A library to select color scheme either manually or automatically.",
"main": "dist/index.js",
"scripts": {
"build": "tsup --dts --onSuccess 'npm test'",
"build:watch": "tsup --watch --onSuccess 'tsup --dts-only'",
"test": "jest",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Californian/color-scheme-switcher.git"
},
"keywords": [
"color-scheme",
"dark",
"mode",
"light",
"mode",
"react",
"hook",
"hooks",
"context",
"provider",
"color",
"media-query"
],
"author": "Californian",
"license": "MIT",
"bugs": {
"url": "https://github.com/Californian/color-scheme-switcher/issues"
},
"homepage": "https://github.com/Californian/color-scheme-switcher#readme",
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/suncalc": "^1.9.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"dist"
]
}