-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "multiple-themes-webpack-plugin",
"version": "1.0.4",
"scripts": {
"prepare": "npm run build",
"build": "tsc"
},
"dependencies": {
"@ianwalter/exclude-assets-plugin": "^1.0.0",
"html-webpack-plugin": "^4.3.0",
"lodash": "^4.17.15",
"webpack-css-themes-plugin": "^0.11.1"
},
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.3",
"@types/lodash": "^4.14.149",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^7.7.0",
"typescript": "^4.0.2",
"webpack": "^4.42.1"
},
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"optionalDependencies": {
"less-loader": "^6.1.0",
"sass-loader": "^8.0.2"
},
"peerDependencies": {
"webpack": "^4.4.0 || ^5.0.0"
},
"description": "Build multiple themes for your frontend project and switch between them on the fly",
"keywords": ["less", "theme", "webpack", "css-modules"],
"homepage": "https://github.com/itayganor/multiple-themes-webpack-plugin",
"author": {
"name": "itayganor",
"url": "https://itayganor.com"
},
"repository": {
"type": "git",
"url": "https://github.com/itayganor/multiple-themes-webpack-plugin"
}
}