-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "@wpsyntex/fse-classic",
"version": "1.0.0",
"description": "Adds legacy WordPress features for Full Site Editor(FSE)",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npm run clean && webpack --mode production",
"build:dev": "npm run clean && webpack --mode development",
"dev": "npm run clean && webpack --mode development --watch",
"clean": "rimraf public/css public/js public/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polylang/fse-classic.git"
},
"keywords": [
"site editor",
"fse"
],
"author": "WP Syntex",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/polylang/fse-classic/issues"
},
"homepage": "https://github.com/polylang/fse-classic#readme",
"devDependencies": {
"@wpsyntex/polylang-build-scripts": "^2.0.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^4.0.0",
"mini-css-extract-plugin": "^2.3.0",
"postcss": "^8.3.6",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}