-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"author": "Aayush Kapoor",
"bugs": {
"url": "https://github.com/xeoneux/next-dark-mode/issues"
},
"dependencies": {
"@assortment/darkmodejs": "^1.2.1",
"nookies": "^2.5.2"
},
"description": "Enable dark mode for Next.js",
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"concurrently": "^7.4.0",
"eslint": "^8.25.0",
"eslint-config-alloy": "^4.7.0",
"eslint-plugin-react": "^7.31.10",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "3.0.2",
"typescript": "^4.8.4"
},
"homepage": "https://github.com/xeoneux/next-dark-mode",
"jsnext:main": "src/index.tsx",
"license": "MIT",
"main": "lib/index.js",
"main:src": "src/index.tsx",
"module": "es6/index.js",
"name": "next-dark-mode",
"peerDependencies": {
"next": ">=9.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/xeoneux/next-dark-mode.git"
},
"scripts": {
"build": "yarn clean && concurrently yarn:build:tsc:*",
"build:tsc:es5": "tsc",
"build:tsc:es6": "tsc --project tsconfig.es6.json",
"clean": "rimraf lib es6",
"start": "concurrently yarn:start:tsc:*",
"start:tsc:es5": "yarn build:tsc:es5 --watch --preserveWatchOutput",
"start:tsc:es6": "yarn build:tsc:es6 --watch --preserveWatchOutput"
},
"source": "src/index.tsx",
"types": "es6/index.d.ts",
"version": "4.0.0-beta.1"
}