Updates DFs

This commit is contained in:
erwanlr
2022-12-21 21:15:18 +01:00
parent 6a309a9624
commit 0905ad98c1
66 changed files with 23643 additions and 5 deletions

View File

@@ -0,0 +1,61 @@
{
"name": "simplifiedplugin",
"version": "1.0.0",
"description": "",
"author": "Jacek Dobrowolski <jack@simplified.co>",
"files": [
"ajax\/*",
"backend\/*",
"assets\/build\/*",
"cli\/*",
"engine\/*",
"functions\/*",
"internals\/*",
"rest\/*",
"vendor\/*",
"templates\/*",
"simplifiedplugin.php",
"uninstall.php"
],
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style ./assets/src/styles",
"lint:js": "wp-scripts lint-js ./assets/src",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"postinstall": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@wordpress/babel-preset-default": "^6.12.0",
"@wordpress/block-editor": "^9.3.0",
"@wordpress/blocks": "^11.10.0",
"@wordpress/browserslist-config": "^4.1.2",
"@wordpress/eslint-plugin": "^12.5.0",
"@wordpress/scripts": "^23.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.9.0 <7"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
],
"globals": {
"jQuery": true,
"$": true
}
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}