-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "gui-for-lcp",
"version": "2.0.2",
"description": "WP plugin that adds a graphical shortcode creator for List Category Posts, accessible via the 'LCP' button in WordPress editor.",
"scripts": {
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch --config webpack.dev.js"
},
"sideEffects": [
"formdata-polyfill",
"**/*.css",
"**/*.scss"
],
"browserslist": [
"extends @wordpress/browserslist-config"
],
"repository": {
"type": "git",
"url": "git+https://github.com/klemens-st/gui-for-lcp.git"
},
"author": "Klemens Starybrat",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/klemens-st/gui-for-lcp/issues"
},
"homepage": "https://github.com/klemens-st/gui-for-lcp#readme",
"devDependencies": {
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@wordpress/browserslist-config": "^3.0.3",
"autoprefixer": "^10.3.4",
"babel-loader": "^8.2.2",
"browserslist": "^4.16.8",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"eslint-webpack-plugin": "^2.5.4",
"mini-css-extract-plugin": "^1.6.2",
"postcss": "^8.3.6",
"postcss-loader": "^5.3.0",
"sass": "^1.39.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.51.2",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"formdata-polyfill": "^3.0.20"
}
}