-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
36 lines (36 loc) · 874 Bytes
/
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
{
"name": "next-with-less",
"version": "3.0.1",
"description": "Next.js + Less CSS Support",
"main": "index.js",
"repository": "https://github.com/elado/next-with-less.git",
"homepage": "https://github.com/elado/next-with-less#readme",
"author": "Elad Ossadon <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf dist && babel src -d dist",
"prepare": "yarn build",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"next": "^11.0.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"clone-deep": "^4.0.1"
},
"peerDependencies": {
"less": "*",
"less-loader": ">= 7.0.0",
"next": ">= 11.0.1"
},
"files": [
"/index.js",
"/dist"
],
"packageManager": "[email protected]"
}