-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.73 KB
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
68
69
70
71
72
73
74
75
76
77
{
"name": "next-theme-toggle",
"version": "1.4.19",
"description": "A CLI tool that instantly sets up dark/light theme toggling in your Next.js projects + Tailwind CSS v4 with zero configuration hassle.",
"type": "module",
"main": "index.js",
"bin": {
"next-theme-toggle": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "node test.js",
"dev": "node index.js",
"lint": "echo \"No linting configured yet\"",
"prepublishOnly": "echo \"Running pre-publish checks...\" && node -c index.js"
},
"keywords": [
"nextjs",
"next.js",
"tailwind",
"tailwindcss",
"theme",
"dark-mode",
"light-mode",
"theme-toggle",
"cli",
"tool",
"typescript",
"javascript",
"ui",
"components",
"next-themes",
"setup",
"boilerplate",
"generator",
"scaffold"
],
"author": {
"name": "Megh Bari",
"email": "meghbari01@gmail.com",
"url": "https://github.com/megh-bari"
},
"license": "MIT",
"files": [
"index.js",
"templates/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/megh-bari/next-theme-toggle.git"
},
"bugs": {
"url": "https://github.com/megh-bari/next-theme-toggle/issues",
"email": "meghbari01@gmail.com"
},
"homepage": "https://github.com/megh-bari/next-theme-toggle#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/megh-bari"
},
"dependencies": {
"chalk": "^5.4.1",
"execa": "^9.6.0",
"ora": "^8.2.0"
},
"preferGlobal": true,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}