-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.5 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
62
63
64
65
66
67
{
"name": "themesx",
"version": "1.1.6",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"format": "prettier --write .",
"lint": "eslint .",
"test": "vitest run"
},
"author": "Kingshuk Mondal",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/ImKKingshuk/ThemesX.git"
},
"bugs": {
"url": "https://github.com/ImKKingshuk/ThemesX/issues"
},
"homepage": "https://github.com/ImKKingshuk/ThemesX#readme",
"keywords": [
"react themes",
"next-themes",
"nextjs-themes",
"next theme",
"nextjs dark mode",
"react-themes",
"astro-themes",
"remix-themes",
"gatsby-themes",
"react dark mode",
"dark mode utility",
"dark mode"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rsbuild/plugin-react": "^1.1.0",
"@rslib/core": "^0.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"react": "^19.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}