-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.26 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.26 KB
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
{
"name": "@dotburo/wp-plugin-petition",
"version": "1.2.0",
"description": "Create and manage petitions in WordPress.",
"author": "dotburo <code@dotburo.org> (https://dotburo.org)",
"license": "GPL-3.0-or-later",
"main": "../build/index.js",
"scripts": {
"build": "wp-scripts build src/js/admin/index.js --output-path=build",
"build:public": "webpack --config webpack.public.config.js --mode development",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start src/js/admin/index.js --output-path=build",
"start:public": "webpack --config webpack.public.config.js -w --mode development",
"packages-update": "wp-scripts packages-update",
"translate": "cd languages/ && wp i18n make-json . --no-purge",
"translate:convert": "msgfmt -o swi-petition-fr_FR.mo swi-petition-fr_FR.po"
},
"dependencies": {
"@wordpress/block-editor": "^5.2.8",
"@wordpress/blocks": "^7.0.4",
"@wordpress/i18n": "^3.18.0",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@wordpress/scripts": "^13.0.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.24.4"
}
}