-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "next-webpack-multi-tailwind-layout-plugin",
"version": "0.0.2",
"description": "A plugin for loading SCSS with multiple Tailwind CSS configurations in Next.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/necm1/next-webpack-multi-tailwind-layout-plugin.git"
},
"author": "necm1 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.12",
"@types/postcss-import": "^14.0.3",
"rollup": "^4.19.0",
"typescript": "^5.5.4"
},
"dependencies": {
"autoprefixer": "^10.4.19",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.39",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"sass-loader": "^15.0.0",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.6",
"tslib": "^2.6.3"
},
"peerDependencies": {
"next": "14.2.3",
"tailwindcss": "^3.4.6"
}
}