-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
26 lines (26 loc) · 1.09 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
{
"name": "blockify-dev",
"description": "Blockify Cloud plugin.",
"author": "Blockify",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"pot": "wp i18n make-pot ./ languages/blockify-dev.pot --exclude='wp,wp-content,vendor,tests,node_modules,build,assets,src'",
"zip": "rm -Rf ../../blockify-dev.zip && zip -r ../../blockify-dev.zip assets/ build/ includes/ languages/ patterns/ screenshots/ templates/ blockify-dev.php",
"css": "npm run build:css",
"js": "npm run build:js",
"build:js": "wp-scripts build",
"build:css": "node-sass --output-style compressed --recursive -o assets/css src/scss && rm -Rf assets/css/abstracts",
"start": "wp-scripts start",
"img:install": "npm i -g capture-website-cli && chmod +x bin/screenshots",
"img": "sh bin/screenshots false false",
"img:dark": "sh bin/screenshots true",
"img:mobile": "sh bin/screenshots false true",
"img:theme": "sh bin/screenshots true false"
},
"devDependencies": {
"@wordpress/icons": "^9.37.0",
"@wordpress/scripts": "^26.10.0",
"node-sass": "^8.0.0"
}
}