-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.4 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.4 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
36
37
38
39
40
41
42
43
44
{
"name": "cimo",
"version": "1.2.2",
"description": "Convert images to WebP on upload",
"private": true,
"license": "GPL-2.0-or-later",
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "npm run lint",
"build": "node scripts/update-build-type.js free && npm run sync-version ${npm_config_suffix} && wp-scripts build && npm run package ${npm_config_suffix}",
"start": "node scripts/update-build-type.js free && wp-scripts start",
"build:premium": "cd pro__premium_only && npm run build",
"start:premium": "cd pro__premium_only && npm run start",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "wp-scripts lint-style --fix",
"lint": "npm run lint:js && npm run lint:css",
"format": "wp-scripts format",
"package": "node scripts/package.js ${npm_config_suffix}",
"sync-version": "node scripts/sync-version.js"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"devDependencies": {
"@wordpress/eslint-plugin": "^22.15.0",
"@wordpress/prettier-config": "^4.29.0",
"@wordpress/scripts": "^30.0.0",
"@wordpress/stylelint-config": "^23.21.0",
"archiver": "^6.0.1",
"eslint": "^8.57.0",
"eslint-plugin-compat": "^6.0.2",
"prettier": "^3.3.3"
},
"dependencies": {
"@mediabunny/mp3-encoder": "^1.25.0",
"mediabunny": "^1.25.0",
"svgo": "^4.0.0",
"heic2any": "^0.0.4"
}
}