-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "nextjs-color-mode",
"version": "1.0.5",
"description": "A helper for creating non-flickering and accessible themed applications",
"source": "src/index.ts",
"main": "./lib/next-color-mode.cjs",
"module": "./lib/next-color-mode.module.js",
"unpkg": "./lib/next-color-mode.umd.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"dev": "cd preview && npm run dev",
"prepublishOnly": "npm run build",
"prebuild": "rimraf lib",
"build": "microbundle --jsx React.createElement",
"build:watch": "microbundle watch --jsx React.createElement"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmstefanski/next-color-mode.git"
},
"keywords": [
"nextjs",
"nextjs-plugin"
],
"author": "bmstefanski",
"license": "MIT",
"bugs": {
"url": "https://github.com/bmstefanski/next-color-mode/issues"
},
"homepage": "https://github.com/bmstefanski/next-color-mode#readme",
"peerDependencies": {
"next": ">=9.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@types/next": "^9.0.0",
"@types/node": "^18.0.0",
"@types/react": "^17.0.18",
"microbundle": "^0.15.0",
"prettier": "^2.3.2",
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"typescript": "^5.0.0"
}
}